piaobuliao
piaobuliao
@andrewwyl 不同数字对应不同汉字类别,具体应该 https://github.com/JarveeLee/SynthText_Chinese_version 这里有介绍吧
class U2NET_DIY_26MB(nn.Module): def __init__(self,in_ch=3,out_ch=1): super(U2NET_DIY_26MB,self).__init__() #stage-n的输出要是下一个stage的输入的尺度 self.stage1 = RSU7(in_ch,16,64) self.pool12 = nn.MaxPool2d(2,stride=2,ceil_mode=True) self.stage2 = RSU6(64,16,64) self.pool23 = nn.MaxPool2d(2,stride=2,ceil_mode=True) self.stage3 = RSU5(64,32,96) self.pool34 = nn.MaxPool2d(2,stride=2,ceil_mode=True) self.stage4 = RSU4(96,48,128) self.pool45 = nn.MaxPool2d(2,stride=2,ceil_mode=True)...
it works on windows 8_64bit
@zhongtao93 感觉训练集里还是要多用现实中的车牌照
@zhongtao93 https://github.com/liuruoze/EasyPR