├── HELP.py ├── README.md ├── circles.jpg ├── detect_shade.py ├── divesh.py ├── find_spot.py ├── findroi.py ├── findroi2.py ├── findroi3.py ├── hsv_color_detect.py ├── images ├── 20180630_154039.jpg ├── 20180630_154139.jpg ├── 20180630_154201.jpg ├── 20180630_154239.jpg ├── 20180630_154245.jpg ├── 20180630_154305.jpg ├── 20180630_154327.jpg ├── 20180630_154451.jpg ├── 20180630_154509.jpg ├── 20180630_154513.jpg ├── 20180630_154519.jpg ├── 20180630_154523.jpg ├── 20180630_154531.jpg ├── 20180630_154541.jpg ├── 20180630_154549.jpg ├── 20180630_154609.jpg ├── 20180630_154617.jpg ├── searchfour.jpg └── templates │ ├── template3.jpg │ ├── template4.jpg │ └── template5.jpg ├── requirements.txt ├── searchimage1.py ├── searchimage_copy.py └── test.py /HELP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodivesh/imagesearch/HEAD/HELP.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # imagesearch 2 | -------------------------------------------------------------------------------- /circles.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodivesh/imagesearch/HEAD/circles.jpg -------------------------------------------------------------------------------- /detect_shade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodivesh/imagesearch/HEAD/detect_shade.py -------------------------------------------------------------------------------- /divesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodivesh/imagesearch/HEAD/divesh.py -------------------------------------------------------------------------------- /find_spot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodivesh/imagesearch/HEAD/find_spot.py -------------------------------------------------------------------------------- /findroi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodivesh/imagesearch/HEAD/findroi.py -------------------------------------------------------------------------------- /findroi2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodivesh/imagesearch/HEAD/findroi2.py -------------------------------------------------------------------------------- /findroi3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodivesh/imagesearch/HEAD/findroi3.py -------------------------------------------------------------------------------- /hsv_color_detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodivesh/imagesearch/HEAD/hsv_color_detect.py -------------------------------------------------------------------------------- /images/20180630_154039.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodivesh/imagesearch/HEAD/images/20180630_154039.jpg -------------------------------------------------------------------------------- /images/20180630_154139.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodivesh/imagesearch/HEAD/images/20180630_154139.jpg -------------------------------------------------------------------------------- /images/20180630_154201.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodivesh/imagesearch/HEAD/images/20180630_154201.jpg -------------------------------------------------------------------------------- /images/20180630_154239.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodivesh/imagesearch/HEAD/images/20180630_154239.jpg -------------------------------------------------------------------------------- /images/20180630_154245.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodivesh/imagesearch/HEAD/images/20180630_154245.jpg -------------------------------------------------------------------------------- /images/20180630_154305.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodivesh/imagesearch/HEAD/images/20180630_154305.jpg -------------------------------------------------------------------------------- /images/20180630_154327.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodivesh/imagesearch/HEAD/images/20180630_154327.jpg -------------------------------------------------------------------------------- /images/20180630_154451.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodivesh/imagesearch/HEAD/images/20180630_154451.jpg -------------------------------------------------------------------------------- /images/20180630_154509.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodivesh/imagesearch/HEAD/images/20180630_154509.jpg -------------------------------------------------------------------------------- /images/20180630_154513.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodivesh/imagesearch/HEAD/images/20180630_154513.jpg -------------------------------------------------------------------------------- /images/20180630_154519.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodivesh/imagesearch/HEAD/images/20180630_154519.jpg -------------------------------------------------------------------------------- /images/20180630_154523.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodivesh/imagesearch/HEAD/images/20180630_154523.jpg -------------------------------------------------------------------------------- /images/20180630_154531.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodivesh/imagesearch/HEAD/images/20180630_154531.jpg -------------------------------------------------------------------------------- /images/20180630_154541.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodivesh/imagesearch/HEAD/images/20180630_154541.jpg -------------------------------------------------------------------------------- /images/20180630_154549.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodivesh/imagesearch/HEAD/images/20180630_154549.jpg -------------------------------------------------------------------------------- /images/20180630_154609.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodivesh/imagesearch/HEAD/images/20180630_154609.jpg -------------------------------------------------------------------------------- /images/20180630_154617.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodivesh/imagesearch/HEAD/images/20180630_154617.jpg -------------------------------------------------------------------------------- /images/searchfour.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodivesh/imagesearch/HEAD/images/searchfour.jpg -------------------------------------------------------------------------------- /images/templates/template3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodivesh/imagesearch/HEAD/images/templates/template3.jpg -------------------------------------------------------------------------------- /images/templates/template4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodivesh/imagesearch/HEAD/images/templates/template4.jpg -------------------------------------------------------------------------------- /images/templates/template5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodivesh/imagesearch/HEAD/images/templates/template5.jpg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodivesh/imagesearch/HEAD/requirements.txt -------------------------------------------------------------------------------- /searchimage1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodivesh/imagesearch/HEAD/searchimage1.py -------------------------------------------------------------------------------- /searchimage_copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodivesh/imagesearch/HEAD/searchimage_copy.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/technodivesh/imagesearch/HEAD/test.py --------------------------------------------------------------------------------