├── DegreeToNum ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── templateclass1.cpython-36.pyc │ └── templateclass2.cpython-36.pyc ├── templateclass1.py └── templateclass2.py ├── Identify_picture.py ├── LICENSE ├── MeterAutoReader.py ├── MeterReader.py ├── README.md ├── VOCdevkit └── VOC2007 │ ├── ImageSets │ └── Main │ │ ├── test.txt │ │ ├── train.txt │ │ ├── trainval.txt │ │ └── val.txt │ └── test.py ├── __init__.py ├── __pycache__ ├── MeterReader.cpython-36.pyc ├── ammeter.cpython-36.pyc ├── img_match.cpython-36.pyc └── yolo.cpython-36.pyc ├── ammeter.py ├── coco_annotation.py ├── contours.py ├── convert.py ├── darknet53.cfg ├── img_match.py ├── kmeans.py ├── kuangxuan.py ├── mAPgetpridict.py ├── mAPgettxt.py ├── mAPmain.py ├── model_data ├── coco_classes.txt ├── tiny_yolo_anchors.txt └── voc_classes.txt ├── origin.py ├── read_num.py ├── test.txt ├── testimages ├── 1.jpg ├── 2.jpg ├── 3.jpg ├── 4.jpg └── 5.jpg ├── train.py ├── train.txt ├── train_bottleneck.py ├── val.txt ├── voc_annotation.py ├── xyh.py ├── yolo.py ├── yolo3 ├── model.py ├── test_yolo.py └── utils.py ├── yolo_video.py └── yolov3.cfg /DegreeToNum/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonJerome/Pointer-meter-reading-algorithm-by-Python/HEAD/DegreeToNum/__init__.py -------------------------------------------------------------------------------- /DegreeToNum/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonJerome/Pointer-meter-reading-algorithm-by-Python/HEAD/DegreeToNum/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /DegreeToNum/__pycache__/templateclass1.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonJerome/Pointer-meter-reading-algorithm-by-Python/HEAD/DegreeToNum/__pycache__/templateclass1.cpython-36.pyc -------------------------------------------------------------------------------- /DegreeToNum/__pycache__/templateclass2.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonJerome/Pointer-meter-reading-algorithm-by-Python/HEAD/DegreeToNum/__pycache__/templateclass2.cpython-36.pyc -------------------------------------------------------------------------------- /DegreeToNum/templateclass1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonJerome/Pointer-meter-reading-algorithm-by-Python/HEAD/DegreeToNum/templateclass1.py -------------------------------------------------------------------------------- /DegreeToNum/templateclass2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonJerome/Pointer-meter-reading-algorithm-by-Python/HEAD/DegreeToNum/templateclass2.py -------------------------------------------------------------------------------- /Identify_picture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonJerome/Pointer-meter-reading-algorithm-by-Python/HEAD/Identify_picture.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonJerome/Pointer-meter-reading-algorithm-by-Python/HEAD/LICENSE -------------------------------------------------------------------------------- /MeterAutoReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonJerome/Pointer-meter-reading-algorithm-by-Python/HEAD/MeterAutoReader.py -------------------------------------------------------------------------------- /MeterReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonJerome/Pointer-meter-reading-algorithm-by-Python/HEAD/MeterReader.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonJerome/Pointer-meter-reading-algorithm-by-Python/HEAD/README.md -------------------------------------------------------------------------------- /VOCdevkit/VOC2007/ImageSets/Main/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonJerome/Pointer-meter-reading-algorithm-by-Python/HEAD/VOCdevkit/VOC2007/ImageSets/Main/test.txt -------------------------------------------------------------------------------- /VOCdevkit/VOC2007/ImageSets/Main/train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonJerome/Pointer-meter-reading-algorithm-by-Python/HEAD/VOCdevkit/VOC2007/ImageSets/Main/train.txt -------------------------------------------------------------------------------- /VOCdevkit/VOC2007/ImageSets/Main/trainval.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonJerome/Pointer-meter-reading-algorithm-by-Python/HEAD/VOCdevkit/VOC2007/ImageSets/Main/trainval.txt -------------------------------------------------------------------------------- /VOCdevkit/VOC2007/ImageSets/Main/val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonJerome/Pointer-meter-reading-algorithm-by-Python/HEAD/VOCdevkit/VOC2007/ImageSets/Main/val.txt -------------------------------------------------------------------------------- /VOCdevkit/VOC2007/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonJerome/Pointer-meter-reading-algorithm-by-Python/HEAD/VOCdevkit/VOC2007/test.py -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonJerome/Pointer-meter-reading-algorithm-by-Python/HEAD/__init__.py -------------------------------------------------------------------------------- /__pycache__/MeterReader.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonJerome/Pointer-meter-reading-algorithm-by-Python/HEAD/__pycache__/MeterReader.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/ammeter.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonJerome/Pointer-meter-reading-algorithm-by-Python/HEAD/__pycache__/ammeter.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/img_match.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonJerome/Pointer-meter-reading-algorithm-by-Python/HEAD/__pycache__/img_match.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/yolo.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonJerome/Pointer-meter-reading-algorithm-by-Python/HEAD/__pycache__/yolo.cpython-36.pyc -------------------------------------------------------------------------------- /ammeter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonJerome/Pointer-meter-reading-algorithm-by-Python/HEAD/ammeter.py -------------------------------------------------------------------------------- /coco_annotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonJerome/Pointer-meter-reading-algorithm-by-Python/HEAD/coco_annotation.py -------------------------------------------------------------------------------- /contours.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonJerome/Pointer-meter-reading-algorithm-by-Python/HEAD/contours.py -------------------------------------------------------------------------------- /convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonJerome/Pointer-meter-reading-algorithm-by-Python/HEAD/convert.py -------------------------------------------------------------------------------- /darknet53.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonJerome/Pointer-meter-reading-algorithm-by-Python/HEAD/darknet53.cfg -------------------------------------------------------------------------------- /img_match.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonJerome/Pointer-meter-reading-algorithm-by-Python/HEAD/img_match.py -------------------------------------------------------------------------------- /kmeans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonJerome/Pointer-meter-reading-algorithm-by-Python/HEAD/kmeans.py -------------------------------------------------------------------------------- /kuangxuan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonJerome/Pointer-meter-reading-algorithm-by-Python/HEAD/kuangxuan.py -------------------------------------------------------------------------------- /mAPgetpridict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonJerome/Pointer-meter-reading-algorithm-by-Python/HEAD/mAPgetpridict.py -------------------------------------------------------------------------------- /mAPgettxt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonJerome/Pointer-meter-reading-algorithm-by-Python/HEAD/mAPgettxt.py -------------------------------------------------------------------------------- /mAPmain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonJerome/Pointer-meter-reading-algorithm-by-Python/HEAD/mAPmain.py -------------------------------------------------------------------------------- /model_data/coco_classes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonJerome/Pointer-meter-reading-algorithm-by-Python/HEAD/model_data/coco_classes.txt -------------------------------------------------------------------------------- /model_data/tiny_yolo_anchors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonJerome/Pointer-meter-reading-algorithm-by-Python/HEAD/model_data/tiny_yolo_anchors.txt -------------------------------------------------------------------------------- /model_data/voc_classes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonJerome/Pointer-meter-reading-algorithm-by-Python/HEAD/model_data/voc_classes.txt -------------------------------------------------------------------------------- /origin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonJerome/Pointer-meter-reading-algorithm-by-Python/HEAD/origin.py -------------------------------------------------------------------------------- /read_num.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonJerome/Pointer-meter-reading-algorithm-by-Python/HEAD/read_num.py -------------------------------------------------------------------------------- /test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonJerome/Pointer-meter-reading-algorithm-by-Python/HEAD/test.txt -------------------------------------------------------------------------------- /testimages/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonJerome/Pointer-meter-reading-algorithm-by-Python/HEAD/testimages/1.jpg -------------------------------------------------------------------------------- /testimages/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonJerome/Pointer-meter-reading-algorithm-by-Python/HEAD/testimages/2.jpg -------------------------------------------------------------------------------- /testimages/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonJerome/Pointer-meter-reading-algorithm-by-Python/HEAD/testimages/3.jpg -------------------------------------------------------------------------------- /testimages/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonJerome/Pointer-meter-reading-algorithm-by-Python/HEAD/testimages/4.jpg -------------------------------------------------------------------------------- /testimages/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonJerome/Pointer-meter-reading-algorithm-by-Python/HEAD/testimages/5.jpg -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonJerome/Pointer-meter-reading-algorithm-by-Python/HEAD/train.py -------------------------------------------------------------------------------- /train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonJerome/Pointer-meter-reading-algorithm-by-Python/HEAD/train.txt -------------------------------------------------------------------------------- /train_bottleneck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonJerome/Pointer-meter-reading-algorithm-by-Python/HEAD/train_bottleneck.py -------------------------------------------------------------------------------- /val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonJerome/Pointer-meter-reading-algorithm-by-Python/HEAD/val.txt -------------------------------------------------------------------------------- /voc_annotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonJerome/Pointer-meter-reading-algorithm-by-Python/HEAD/voc_annotation.py -------------------------------------------------------------------------------- /xyh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonJerome/Pointer-meter-reading-algorithm-by-Python/HEAD/xyh.py -------------------------------------------------------------------------------- /yolo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonJerome/Pointer-meter-reading-algorithm-by-Python/HEAD/yolo.py -------------------------------------------------------------------------------- /yolo3/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonJerome/Pointer-meter-reading-algorithm-by-Python/HEAD/yolo3/model.py -------------------------------------------------------------------------------- /yolo3/test_yolo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonJerome/Pointer-meter-reading-algorithm-by-Python/HEAD/yolo3/test_yolo.py -------------------------------------------------------------------------------- /yolo3/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonJerome/Pointer-meter-reading-algorithm-by-Python/HEAD/yolo3/utils.py -------------------------------------------------------------------------------- /yolo_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonJerome/Pointer-meter-reading-algorithm-by-Python/HEAD/yolo_video.py -------------------------------------------------------------------------------- /yolov3.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JasonJerome/Pointer-meter-reading-algorithm-by-Python/HEAD/yolov3.cfg --------------------------------------------------------------------------------