├── 05.jpg ├── 11.jpg ├── 12.jpg ├── 13.jpg ├── main.cpp ├── 11-lines.jpg ├── canny_test.cpp ├── thinning_algorithm.cpp └── README.md /05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinxuy/OpenCV-Point-Meter-Detection/HEAD/05.jpg -------------------------------------------------------------------------------- /11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinxuy/OpenCV-Point-Meter-Detection/HEAD/11.jpg -------------------------------------------------------------------------------- /12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinxuy/OpenCV-Point-Meter-Detection/HEAD/12.jpg -------------------------------------------------------------------------------- /13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinxuy/OpenCV-Point-Meter-Detection/HEAD/13.jpg -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinxuy/OpenCV-Point-Meter-Detection/HEAD/main.cpp -------------------------------------------------------------------------------- /11-lines.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinxuy/OpenCV-Point-Meter-Detection/HEAD/11-lines.jpg -------------------------------------------------------------------------------- /canny_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinxuy/OpenCV-Point-Meter-Detection/HEAD/canny_test.cpp -------------------------------------------------------------------------------- /thinning_algorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinxuy/OpenCV-Point-Meter-Detection/HEAD/thinning_algorithm.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ### Environment: 2 | VS 2017 C++

3 | OpenCV 3.4.6

4 | ### File && Instruction: 5 | #### main.cpp

6 | There is the algorithm about how to dectect the Point Meter's parameter, just run it. 7 | #### canny_test.cpp

8 | There is a method to choose the best canny threshold. 9 | #### thinning_algorithm.cpp

10 | There are some algorithms which could thin the texture of image. 11 | --------------------------------------------------------------------------------