├── .gitignore ├── README.md ├── accurate ├── 6.png ├── 7.png ├── LCNN_lr_iter.png ├── LCNN_lr_time.png ├── LCNN_testaccu_iter.png ├── LCNN_testaccu_time.png ├── lfw-roc.jpg ├── lfw-roc.py ├── lfw.py ├── roc.txt ├── showROConLFW.m ├── show_veri_err_pair.py └── showerr.png ├── demo ├── .idea │ ├── demo.iml │ ├── misc.xml │ ├── modules.xml │ └── workspace.xml ├── 75-1.jpg ├── 75-2.jpg ├── 76-1.jpg ├── conv1.jpg ├── conv1w.jpg ├── conv2.jpg ├── conv2a.jpg ├── conv3.jpg ├── conv3a.jpg ├── conv4.jpg ├── conv4a.jpg ├── conv5.jpg ├── conv5a.jpg ├── demo.ipynb ├── demo.py ├── f.jpg ├── f1.jpg ├── feature_in_net1.jpg ├── feature_in_net2.jpg └── visualising.py ├── models └── _iter_3560000.caffemodel ├── prototxt ├── LCNN_deploy.prototxt ├── LCNN_solver.prototxt └── LCNN_train_test.prototxt └── tools ├── CASIAgetTrainValtxt.py ├── CASIAinonedir2Ndir.py ├── CASIAintolabels2TrainandVal.py ├── addLabeltopic.py ├── code_point ├── Input │ ├── Connect_20_40_0.6.txt │ ├── Connect_20_40_1.0.txt │ ├── Connect_40_60_0.8.txt │ ├── Net_EN0.txt │ ├── Net_F0.txt │ ├── Net_LE1.txt │ ├── Net_LM1.txt │ ├── Net_N1.txt │ ├── Net_NM0.txt │ ├── Net_RE1.txt │ ├── Net_RM1.txt │ ├── Patch_EN0.txt │ ├── Patch_F0.txt │ ├── Patch_LE1_13.txt │ ├── Patch_LE1_15.txt │ ├── Patch_LE2_10.txt │ ├── Patch_LE2_9.txt │ ├── Patch_LM1_13.txt │ ├── Patch_LM1_15.txt │ ├── Patch_LM2_10.txt │ ├── Patch_LM2_9.txt │ ├── Patch_N1_13.txt │ ├── Patch_N1_15.txt │ ├── Patch_N2_10.txt │ ├── Patch_N2_9.txt │ ├── Patch_NM0.txt │ ├── Patch_RE1_13.txt │ ├── Patch_RE1_15.txt │ ├── Patch_RE2_10.txt │ ├── Patch_RE2_9.txt │ ├── Patch_RM1_13.txt │ ├── Patch_RM1_15.txt │ ├── Patch_RM2_10.txt │ ├── Patch_RM2_9.txt │ ├── Weight_EN0.bin │ ├── Weight_F0.bin │ ├── Weight_LE1_13.bin │ ├── Weight_LE1_15.bin │ ├── Weight_LE2_10.bin │ ├── Weight_LE2_9.bin │ ├── Weight_LM1_13.bin │ ├── Weight_LM1_15.bin │ ├── Weight_LM2_10.bin │ ├── Weight_LM2_9.bin │ ├── Weight_N1_13.bin │ ├── Weight_N1_15.bin │ ├── Weight_N2_10.bin │ ├── Weight_N2_9.bin │ ├── Weight_NM0.bin │ ├── Weight_RE1_13.bin │ ├── Weight_RE1_15.bin │ ├── Weight_RE2_10.bin │ ├── Weight_RE2_9.bin │ ├── Weight_RM1_13.bin │ ├── Weight_RM1_15.bin │ ├── Weight_RM2_10.bin │ └── Weight_RM2_9.bin ├── TestNet.exe ├── bbox.txt ├── image │ └── 1_001.jpg ├── opencv_core231.dll ├── opencv_highgui231.dll ├── opencv_imgproc231.dll ├── readme.txt ├── result.bin ├── show_result.m └── tbb.dll ├── getallfilesInOnedir.py └── pipetrain.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/README.md -------------------------------------------------------------------------------- /accurate/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/accurate/6.png -------------------------------------------------------------------------------- /accurate/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/accurate/7.png -------------------------------------------------------------------------------- /accurate/LCNN_lr_iter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/accurate/LCNN_lr_iter.png -------------------------------------------------------------------------------- /accurate/LCNN_lr_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/accurate/LCNN_lr_time.png -------------------------------------------------------------------------------- /accurate/LCNN_testaccu_iter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/accurate/LCNN_testaccu_iter.png -------------------------------------------------------------------------------- /accurate/LCNN_testaccu_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/accurate/LCNN_testaccu_time.png -------------------------------------------------------------------------------- /accurate/lfw-roc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/accurate/lfw-roc.jpg -------------------------------------------------------------------------------- /accurate/lfw-roc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/accurate/lfw-roc.py -------------------------------------------------------------------------------- /accurate/lfw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/accurate/lfw.py -------------------------------------------------------------------------------- /accurate/roc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/accurate/roc.txt -------------------------------------------------------------------------------- /accurate/showROConLFW.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/accurate/showROConLFW.m -------------------------------------------------------------------------------- /accurate/show_veri_err_pair.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/accurate/show_veri_err_pair.py -------------------------------------------------------------------------------- /accurate/showerr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/accurate/showerr.png -------------------------------------------------------------------------------- /demo/.idea/demo.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/demo/.idea/demo.iml -------------------------------------------------------------------------------- /demo/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/demo/.idea/misc.xml -------------------------------------------------------------------------------- /demo/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/demo/.idea/modules.xml -------------------------------------------------------------------------------- /demo/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/demo/.idea/workspace.xml -------------------------------------------------------------------------------- /demo/75-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/demo/75-1.jpg -------------------------------------------------------------------------------- /demo/75-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/demo/75-2.jpg -------------------------------------------------------------------------------- /demo/76-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/demo/76-1.jpg -------------------------------------------------------------------------------- /demo/conv1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/demo/conv1.jpg -------------------------------------------------------------------------------- /demo/conv1w.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/demo/conv1w.jpg -------------------------------------------------------------------------------- /demo/conv2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/demo/conv2.jpg -------------------------------------------------------------------------------- /demo/conv2a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/demo/conv2a.jpg -------------------------------------------------------------------------------- /demo/conv3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/demo/conv3.jpg -------------------------------------------------------------------------------- /demo/conv3a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/demo/conv3a.jpg -------------------------------------------------------------------------------- /demo/conv4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/demo/conv4.jpg -------------------------------------------------------------------------------- /demo/conv4a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/demo/conv4a.jpg -------------------------------------------------------------------------------- /demo/conv5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/demo/conv5.jpg -------------------------------------------------------------------------------- /demo/conv5a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/demo/conv5a.jpg -------------------------------------------------------------------------------- /demo/demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/demo/demo.ipynb -------------------------------------------------------------------------------- /demo/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/demo/demo.py -------------------------------------------------------------------------------- /demo/f.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/demo/f.jpg -------------------------------------------------------------------------------- /demo/f1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/demo/f1.jpg -------------------------------------------------------------------------------- /demo/feature_in_net1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/demo/feature_in_net1.jpg -------------------------------------------------------------------------------- /demo/feature_in_net2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/demo/feature_in_net2.jpg -------------------------------------------------------------------------------- /demo/visualising.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/demo/visualising.py -------------------------------------------------------------------------------- /models/_iter_3560000.caffemodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/models/_iter_3560000.caffemodel -------------------------------------------------------------------------------- /prototxt/LCNN_deploy.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/prototxt/LCNN_deploy.prototxt -------------------------------------------------------------------------------- /prototxt/LCNN_solver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/prototxt/LCNN_solver.prototxt -------------------------------------------------------------------------------- /prototxt/LCNN_train_test.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/prototxt/LCNN_train_test.prototxt -------------------------------------------------------------------------------- /tools/CASIAgetTrainValtxt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/CASIAgetTrainValtxt.py -------------------------------------------------------------------------------- /tools/CASIAinonedir2Ndir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/CASIAinonedir2Ndir.py -------------------------------------------------------------------------------- /tools/CASIAintolabels2TrainandVal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/CASIAintolabels2TrainandVal.py -------------------------------------------------------------------------------- /tools/addLabeltopic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/addLabeltopic.py -------------------------------------------------------------------------------- /tools/code_point/Input/Connect_20_40_0.6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/code_point/Input/Connect_20_40_0.6.txt -------------------------------------------------------------------------------- /tools/code_point/Input/Connect_20_40_1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/code_point/Input/Connect_20_40_1.0.txt -------------------------------------------------------------------------------- /tools/code_point/Input/Connect_40_60_0.8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/code_point/Input/Connect_40_60_0.8.txt -------------------------------------------------------------------------------- /tools/code_point/Input/Net_EN0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/code_point/Input/Net_EN0.txt -------------------------------------------------------------------------------- /tools/code_point/Input/Net_F0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/code_point/Input/Net_F0.txt -------------------------------------------------------------------------------- /tools/code_point/Input/Net_LE1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/code_point/Input/Net_LE1.txt -------------------------------------------------------------------------------- /tools/code_point/Input/Net_LM1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/code_point/Input/Net_LM1.txt -------------------------------------------------------------------------------- /tools/code_point/Input/Net_N1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/code_point/Input/Net_N1.txt -------------------------------------------------------------------------------- /tools/code_point/Input/Net_NM0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/code_point/Input/Net_NM0.txt -------------------------------------------------------------------------------- /tools/code_point/Input/Net_RE1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/code_point/Input/Net_RE1.txt -------------------------------------------------------------------------------- /tools/code_point/Input/Net_RM1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/code_point/Input/Net_RM1.txt -------------------------------------------------------------------------------- /tools/code_point/Input/Patch_EN0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/code_point/Input/Patch_EN0.txt -------------------------------------------------------------------------------- /tools/code_point/Input/Patch_F0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/code_point/Input/Patch_F0.txt -------------------------------------------------------------------------------- /tools/code_point/Input/Patch_LE1_13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/code_point/Input/Patch_LE1_13.txt -------------------------------------------------------------------------------- /tools/code_point/Input/Patch_LE1_15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/code_point/Input/Patch_LE1_15.txt -------------------------------------------------------------------------------- /tools/code_point/Input/Patch_LE2_10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/code_point/Input/Patch_LE2_10.txt -------------------------------------------------------------------------------- /tools/code_point/Input/Patch_LE2_9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/code_point/Input/Patch_LE2_9.txt -------------------------------------------------------------------------------- /tools/code_point/Input/Patch_LM1_13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/code_point/Input/Patch_LM1_13.txt -------------------------------------------------------------------------------- /tools/code_point/Input/Patch_LM1_15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/code_point/Input/Patch_LM1_15.txt -------------------------------------------------------------------------------- /tools/code_point/Input/Patch_LM2_10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/code_point/Input/Patch_LM2_10.txt -------------------------------------------------------------------------------- /tools/code_point/Input/Patch_LM2_9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/code_point/Input/Patch_LM2_9.txt -------------------------------------------------------------------------------- /tools/code_point/Input/Patch_N1_13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/code_point/Input/Patch_N1_13.txt -------------------------------------------------------------------------------- /tools/code_point/Input/Patch_N1_15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/code_point/Input/Patch_N1_15.txt -------------------------------------------------------------------------------- /tools/code_point/Input/Patch_N2_10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/code_point/Input/Patch_N2_10.txt -------------------------------------------------------------------------------- /tools/code_point/Input/Patch_N2_9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/code_point/Input/Patch_N2_9.txt -------------------------------------------------------------------------------- /tools/code_point/Input/Patch_NM0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/code_point/Input/Patch_NM0.txt -------------------------------------------------------------------------------- /tools/code_point/Input/Patch_RE1_13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/code_point/Input/Patch_RE1_13.txt -------------------------------------------------------------------------------- /tools/code_point/Input/Patch_RE1_15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/code_point/Input/Patch_RE1_15.txt -------------------------------------------------------------------------------- /tools/code_point/Input/Patch_RE2_10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/code_point/Input/Patch_RE2_10.txt -------------------------------------------------------------------------------- /tools/code_point/Input/Patch_RE2_9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/code_point/Input/Patch_RE2_9.txt -------------------------------------------------------------------------------- /tools/code_point/Input/Patch_RM1_13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/code_point/Input/Patch_RM1_13.txt -------------------------------------------------------------------------------- /tools/code_point/Input/Patch_RM1_15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/code_point/Input/Patch_RM1_15.txt -------------------------------------------------------------------------------- /tools/code_point/Input/Patch_RM2_10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/code_point/Input/Patch_RM2_10.txt -------------------------------------------------------------------------------- /tools/code_point/Input/Patch_RM2_9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/code_point/Input/Patch_RM2_9.txt -------------------------------------------------------------------------------- /tools/code_point/Input/Weight_EN0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/code_point/Input/Weight_EN0.bin -------------------------------------------------------------------------------- /tools/code_point/Input/Weight_F0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/code_point/Input/Weight_F0.bin -------------------------------------------------------------------------------- /tools/code_point/Input/Weight_LE1_13.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/code_point/Input/Weight_LE1_13.bin -------------------------------------------------------------------------------- /tools/code_point/Input/Weight_LE1_15.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/code_point/Input/Weight_LE1_15.bin -------------------------------------------------------------------------------- /tools/code_point/Input/Weight_LE2_10.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/code_point/Input/Weight_LE2_10.bin -------------------------------------------------------------------------------- /tools/code_point/Input/Weight_LE2_9.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/code_point/Input/Weight_LE2_9.bin -------------------------------------------------------------------------------- /tools/code_point/Input/Weight_LM1_13.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/code_point/Input/Weight_LM1_13.bin -------------------------------------------------------------------------------- /tools/code_point/Input/Weight_LM1_15.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/code_point/Input/Weight_LM1_15.bin -------------------------------------------------------------------------------- /tools/code_point/Input/Weight_LM2_10.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/code_point/Input/Weight_LM2_10.bin -------------------------------------------------------------------------------- /tools/code_point/Input/Weight_LM2_9.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/code_point/Input/Weight_LM2_9.bin -------------------------------------------------------------------------------- /tools/code_point/Input/Weight_N1_13.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/code_point/Input/Weight_N1_13.bin -------------------------------------------------------------------------------- /tools/code_point/Input/Weight_N1_15.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/code_point/Input/Weight_N1_15.bin -------------------------------------------------------------------------------- /tools/code_point/Input/Weight_N2_10.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/code_point/Input/Weight_N2_10.bin -------------------------------------------------------------------------------- /tools/code_point/Input/Weight_N2_9.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/code_point/Input/Weight_N2_9.bin -------------------------------------------------------------------------------- /tools/code_point/Input/Weight_NM0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/code_point/Input/Weight_NM0.bin -------------------------------------------------------------------------------- /tools/code_point/Input/Weight_RE1_13.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/code_point/Input/Weight_RE1_13.bin -------------------------------------------------------------------------------- /tools/code_point/Input/Weight_RE1_15.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/code_point/Input/Weight_RE1_15.bin -------------------------------------------------------------------------------- /tools/code_point/Input/Weight_RE2_10.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/code_point/Input/Weight_RE2_10.bin -------------------------------------------------------------------------------- /tools/code_point/Input/Weight_RE2_9.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/code_point/Input/Weight_RE2_9.bin -------------------------------------------------------------------------------- /tools/code_point/Input/Weight_RM1_13.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/code_point/Input/Weight_RM1_13.bin -------------------------------------------------------------------------------- /tools/code_point/Input/Weight_RM1_15.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/code_point/Input/Weight_RM1_15.bin -------------------------------------------------------------------------------- /tools/code_point/Input/Weight_RM2_10.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/code_point/Input/Weight_RM2_10.bin -------------------------------------------------------------------------------- /tools/code_point/Input/Weight_RM2_9.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/code_point/Input/Weight_RM2_9.bin -------------------------------------------------------------------------------- /tools/code_point/TestNet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/code_point/TestNet.exe -------------------------------------------------------------------------------- /tools/code_point/bbox.txt: -------------------------------------------------------------------------------- 1 | 1_001.jpg 65 178 78 191 2 | -------------------------------------------------------------------------------- /tools/code_point/image/1_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/code_point/image/1_001.jpg -------------------------------------------------------------------------------- /tools/code_point/opencv_core231.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/code_point/opencv_core231.dll -------------------------------------------------------------------------------- /tools/code_point/opencv_highgui231.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/code_point/opencv_highgui231.dll -------------------------------------------------------------------------------- /tools/code_point/opencv_imgproc231.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/code_point/opencv_imgproc231.dll -------------------------------------------------------------------------------- /tools/code_point/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/code_point/readme.txt -------------------------------------------------------------------------------- /tools/code_point/result.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/code_point/result.bin -------------------------------------------------------------------------------- /tools/code_point/show_result.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/code_point/show_result.m -------------------------------------------------------------------------------- /tools/code_point/tbb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/code_point/tbb.dll -------------------------------------------------------------------------------- /tools/getallfilesInOnedir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/getallfilesInOnedir.py -------------------------------------------------------------------------------- /tools/pipetrain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tonyfy/LCNN_TRAIN/HEAD/tools/pipetrain.sh --------------------------------------------------------------------------------