├── .idea ├── .gitignore ├── SIFT-and-LSD-for-multi-type-pointer-meter-reading.iml ├── dictionaries │ └── Administrator.xml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── DegreeToNum ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── templateclass1.cpython-36.pyc │ └── templateclass2.cpython-36.pyc ├── templateclass1.py └── templateclass2.py ├── README.md ├── __pycache__ └── img_match.cpython-36.pyc ├── img_match.py ├── img_test ├── test1.png ├── test2.png └── test3.jpg ├── img_test_corrected ├── test1.png └── test2.png ├── picture ├── example.jpg ├── flow-chart.jpg └── result2.jpg ├── read_num.py └── template ├── class1.png ├── class2.png └── class3.png /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/SIFT-and-LSD-for-multi-type-pointer-meter-reading.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhenjie/SIFT-and-Hough-for-multi-type-pointer-meter-reading/HEAD/.idea/SIFT-and-LSD-for-multi-type-pointer-meter-reading.iml -------------------------------------------------------------------------------- /.idea/dictionaries/Administrator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhenjie/SIFT-and-Hough-for-multi-type-pointer-meter-reading/HEAD/.idea/dictionaries/Administrator.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhenjie/SIFT-and-Hough-for-multi-type-pointer-meter-reading/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhenjie/SIFT-and-Hough-for-multi-type-pointer-meter-reading/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhenjie/SIFT-and-Hough-for-multi-type-pointer-meter-reading/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhenjie/SIFT-and-Hough-for-multi-type-pointer-meter-reading/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /DegreeToNum/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhenjie/SIFT-and-Hough-for-multi-type-pointer-meter-reading/HEAD/DegreeToNum/__init__.py -------------------------------------------------------------------------------- /DegreeToNum/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhenjie/SIFT-and-Hough-for-multi-type-pointer-meter-reading/HEAD/DegreeToNum/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /DegreeToNum/__pycache__/templateclass1.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhenjie/SIFT-and-Hough-for-multi-type-pointer-meter-reading/HEAD/DegreeToNum/__pycache__/templateclass1.cpython-36.pyc -------------------------------------------------------------------------------- /DegreeToNum/__pycache__/templateclass2.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhenjie/SIFT-and-Hough-for-multi-type-pointer-meter-reading/HEAD/DegreeToNum/__pycache__/templateclass2.cpython-36.pyc -------------------------------------------------------------------------------- /DegreeToNum/templateclass1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhenjie/SIFT-and-Hough-for-multi-type-pointer-meter-reading/HEAD/DegreeToNum/templateclass1.py -------------------------------------------------------------------------------- /DegreeToNum/templateclass2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhenjie/SIFT-and-Hough-for-multi-type-pointer-meter-reading/HEAD/DegreeToNum/templateclass2.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhenjie/SIFT-and-Hough-for-multi-type-pointer-meter-reading/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/img_match.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhenjie/SIFT-and-Hough-for-multi-type-pointer-meter-reading/HEAD/__pycache__/img_match.cpython-36.pyc -------------------------------------------------------------------------------- /img_match.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhenjie/SIFT-and-Hough-for-multi-type-pointer-meter-reading/HEAD/img_match.py -------------------------------------------------------------------------------- /img_test/test1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhenjie/SIFT-and-Hough-for-multi-type-pointer-meter-reading/HEAD/img_test/test1.png -------------------------------------------------------------------------------- /img_test/test2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhenjie/SIFT-and-Hough-for-multi-type-pointer-meter-reading/HEAD/img_test/test2.png -------------------------------------------------------------------------------- /img_test/test3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhenjie/SIFT-and-Hough-for-multi-type-pointer-meter-reading/HEAD/img_test/test3.jpg -------------------------------------------------------------------------------- /img_test_corrected/test1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhenjie/SIFT-and-Hough-for-multi-type-pointer-meter-reading/HEAD/img_test_corrected/test1.png -------------------------------------------------------------------------------- /img_test_corrected/test2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhenjie/SIFT-and-Hough-for-multi-type-pointer-meter-reading/HEAD/img_test_corrected/test2.png -------------------------------------------------------------------------------- /picture/example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhenjie/SIFT-and-Hough-for-multi-type-pointer-meter-reading/HEAD/picture/example.jpg -------------------------------------------------------------------------------- /picture/flow-chart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhenjie/SIFT-and-Hough-for-multi-type-pointer-meter-reading/HEAD/picture/flow-chart.jpg -------------------------------------------------------------------------------- /picture/result2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhenjie/SIFT-and-Hough-for-multi-type-pointer-meter-reading/HEAD/picture/result2.jpg -------------------------------------------------------------------------------- /read_num.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhenjie/SIFT-and-Hough-for-multi-type-pointer-meter-reading/HEAD/read_num.py -------------------------------------------------------------------------------- /template/class1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhenjie/SIFT-and-Hough-for-multi-type-pointer-meter-reading/HEAD/template/class1.png -------------------------------------------------------------------------------- /template/class2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhenjie/SIFT-and-Hough-for-multi-type-pointer-meter-reading/HEAD/template/class2.png -------------------------------------------------------------------------------- /template/class3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangzhenjie/SIFT-and-Hough-for-multi-type-pointer-meter-reading/HEAD/template/class3.png --------------------------------------------------------------------------------