├── .gitignore ├── README.md ├── audio ├── 100.mp3 ├── 20.mp3 └── 50.mp3 ├── detect.py ├── files ├── 100.jpg ├── 100_2.jpg ├── 100_3.jpg ├── 20.jpg ├── 50.jpg ├── 500.jpg ├── test_100_1.jpg ├── test_100_2.jpg ├── test_100_3.jpg ├── test_20_1.jpg ├── test_20_2.jpg ├── test_20_3.jpg ├── test_20_4.jpg ├── test_500_1.jpg ├── test_500_2.jpg ├── test_50_1.jpg └── test_50_2.jpg ├── try.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | alias 3 | reference 4 | key-notes -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashyap07/currency-detector-opencv/HEAD/README.md -------------------------------------------------------------------------------- /audio/100.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashyap07/currency-detector-opencv/HEAD/audio/100.mp3 -------------------------------------------------------------------------------- /audio/20.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashyap07/currency-detector-opencv/HEAD/audio/20.mp3 -------------------------------------------------------------------------------- /audio/50.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashyap07/currency-detector-opencv/HEAD/audio/50.mp3 -------------------------------------------------------------------------------- /detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashyap07/currency-detector-opencv/HEAD/detect.py -------------------------------------------------------------------------------- /files/100.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashyap07/currency-detector-opencv/HEAD/files/100.jpg -------------------------------------------------------------------------------- /files/100_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashyap07/currency-detector-opencv/HEAD/files/100_2.jpg -------------------------------------------------------------------------------- /files/100_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashyap07/currency-detector-opencv/HEAD/files/100_3.jpg -------------------------------------------------------------------------------- /files/20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashyap07/currency-detector-opencv/HEAD/files/20.jpg -------------------------------------------------------------------------------- /files/50.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashyap07/currency-detector-opencv/HEAD/files/50.jpg -------------------------------------------------------------------------------- /files/500.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashyap07/currency-detector-opencv/HEAD/files/500.jpg -------------------------------------------------------------------------------- /files/test_100_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashyap07/currency-detector-opencv/HEAD/files/test_100_1.jpg -------------------------------------------------------------------------------- /files/test_100_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashyap07/currency-detector-opencv/HEAD/files/test_100_2.jpg -------------------------------------------------------------------------------- /files/test_100_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashyap07/currency-detector-opencv/HEAD/files/test_100_3.jpg -------------------------------------------------------------------------------- /files/test_20_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashyap07/currency-detector-opencv/HEAD/files/test_20_1.jpg -------------------------------------------------------------------------------- /files/test_20_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashyap07/currency-detector-opencv/HEAD/files/test_20_2.jpg -------------------------------------------------------------------------------- /files/test_20_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashyap07/currency-detector-opencv/HEAD/files/test_20_3.jpg -------------------------------------------------------------------------------- /files/test_20_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashyap07/currency-detector-opencv/HEAD/files/test_20_4.jpg -------------------------------------------------------------------------------- /files/test_500_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashyap07/currency-detector-opencv/HEAD/files/test_500_1.jpg -------------------------------------------------------------------------------- /files/test_500_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashyap07/currency-detector-opencv/HEAD/files/test_500_2.jpg -------------------------------------------------------------------------------- /files/test_50_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashyap07/currency-detector-opencv/HEAD/files/test_50_1.jpg -------------------------------------------------------------------------------- /files/test_50_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashyap07/currency-detector-opencv/HEAD/files/test_50_2.jpg -------------------------------------------------------------------------------- /try.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashyap07/currency-detector-opencv/HEAD/try.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashyap07/currency-detector-opencv/HEAD/utils.py --------------------------------------------------------------------------------