├── 1_sample_loader.py ├── 2_train.py ├── 3_detect.py ├── 4_evaluate.py ├── README.md ├── annotation ├── svhn_json_generator.py ├── test │ └── digitStruct.json └── train │ └── digitStruct.json ├── conf └── svhn.json ├── detector_model.hdf5 ├── digit_detector.yml ├── digit_detector ├── __init__.py ├── _version.py ├── annotation.py ├── annotation.pyc ├── classify.py ├── crop.py ├── detect.py ├── evaluate.py ├── extractor.py ├── file_io.py ├── preprocess.py ├── region_proposal.py ├── show.py └── train.py ├── examples ├── classifier.png └── mser.png ├── license ├── recognize_model.hdf5 ├── setup.py └── tests ├── cifar_loader.py └── imgs ├── 1.png └── 2.png /1_sample_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penny4860/SVHN-deep-digit-detector/HEAD/1_sample_loader.py -------------------------------------------------------------------------------- /2_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penny4860/SVHN-deep-digit-detector/HEAD/2_train.py -------------------------------------------------------------------------------- /3_detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penny4860/SVHN-deep-digit-detector/HEAD/3_detect.py -------------------------------------------------------------------------------- /4_evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penny4860/SVHN-deep-digit-detector/HEAD/4_evaluate.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penny4860/SVHN-deep-digit-detector/HEAD/README.md -------------------------------------------------------------------------------- /annotation/svhn_json_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penny4860/SVHN-deep-digit-detector/HEAD/annotation/svhn_json_generator.py -------------------------------------------------------------------------------- /annotation/test/digitStruct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penny4860/SVHN-deep-digit-detector/HEAD/annotation/test/digitStruct.json -------------------------------------------------------------------------------- /annotation/train/digitStruct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penny4860/SVHN-deep-digit-detector/HEAD/annotation/train/digitStruct.json -------------------------------------------------------------------------------- /conf/svhn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penny4860/SVHN-deep-digit-detector/HEAD/conf/svhn.json -------------------------------------------------------------------------------- /detector_model.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penny4860/SVHN-deep-digit-detector/HEAD/detector_model.hdf5 -------------------------------------------------------------------------------- /digit_detector.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penny4860/SVHN-deep-digit-detector/HEAD/digit_detector.yml -------------------------------------------------------------------------------- /digit_detector/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /digit_detector/_version.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.1.0" -------------------------------------------------------------------------------- /digit_detector/annotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penny4860/SVHN-deep-digit-detector/HEAD/digit_detector/annotation.py -------------------------------------------------------------------------------- /digit_detector/annotation.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penny4860/SVHN-deep-digit-detector/HEAD/digit_detector/annotation.pyc -------------------------------------------------------------------------------- /digit_detector/classify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penny4860/SVHN-deep-digit-detector/HEAD/digit_detector/classify.py -------------------------------------------------------------------------------- /digit_detector/crop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penny4860/SVHN-deep-digit-detector/HEAD/digit_detector/crop.py -------------------------------------------------------------------------------- /digit_detector/detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penny4860/SVHN-deep-digit-detector/HEAD/digit_detector/detect.py -------------------------------------------------------------------------------- /digit_detector/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penny4860/SVHN-deep-digit-detector/HEAD/digit_detector/evaluate.py -------------------------------------------------------------------------------- /digit_detector/extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penny4860/SVHN-deep-digit-detector/HEAD/digit_detector/extractor.py -------------------------------------------------------------------------------- /digit_detector/file_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penny4860/SVHN-deep-digit-detector/HEAD/digit_detector/file_io.py -------------------------------------------------------------------------------- /digit_detector/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penny4860/SVHN-deep-digit-detector/HEAD/digit_detector/preprocess.py -------------------------------------------------------------------------------- /digit_detector/region_proposal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penny4860/SVHN-deep-digit-detector/HEAD/digit_detector/region_proposal.py -------------------------------------------------------------------------------- /digit_detector/show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penny4860/SVHN-deep-digit-detector/HEAD/digit_detector/show.py -------------------------------------------------------------------------------- /digit_detector/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penny4860/SVHN-deep-digit-detector/HEAD/digit_detector/train.py -------------------------------------------------------------------------------- /examples/classifier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penny4860/SVHN-deep-digit-detector/HEAD/examples/classifier.png -------------------------------------------------------------------------------- /examples/mser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penny4860/SVHN-deep-digit-detector/HEAD/examples/mser.png -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penny4860/SVHN-deep-digit-detector/HEAD/license -------------------------------------------------------------------------------- /recognize_model.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penny4860/SVHN-deep-digit-detector/HEAD/recognize_model.hdf5 -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penny4860/SVHN-deep-digit-detector/HEAD/setup.py -------------------------------------------------------------------------------- /tests/cifar_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penny4860/SVHN-deep-digit-detector/HEAD/tests/cifar_loader.py -------------------------------------------------------------------------------- /tests/imgs/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penny4860/SVHN-deep-digit-detector/HEAD/tests/imgs/1.png -------------------------------------------------------------------------------- /tests/imgs/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penny4860/SVHN-deep-digit-detector/HEAD/tests/imgs/2.png --------------------------------------------------------------------------------