├── .gitattributes ├── .gitignore ├── docs ├── tutorials │ ├── cv2py.odp │ ├── final doc.odt │ ├── serial commn.docx │ └── tutorials.docx ├── user mnls │ ├── 10.1.1.46.5663.pdf │ ├── CS676Report.pdf │ ├── Paper_11-Gesture_Controlled_Robot_using_Image_Processing.pdf │ ├── Report.pdf │ ├── books.pdf │ └── image processing - How to define the markers for Watershed in OpenCV - Stack Overflow.htm └── work log │ └── log.docx └── software ├── firmware ├── backprojection.py ├── backsub.py ├── backsub2.py ├── cam.py ├── cntrs.py ├── ex1.PY ├── ex3.py ├── ex4.py ├── exe file │ └── cam.exe ├── haar.py ├── hand_gesture_with_serial.py ├── img.py ├── ip1.py ├── ip2.py └── yellowtrack.py ├── pyserial-2.6.tar.gz └── used sw ├── matplotlib-1.2.1.win32-py2.7.exe ├── numpy-1.6.1-win32-superpack-python2.7.exe └── python-2.7.3.msi /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iftheqhar/opencv2_python/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iftheqhar/opencv2_python/HEAD/.gitignore -------------------------------------------------------------------------------- /docs/tutorials/cv2py.odp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iftheqhar/opencv2_python/HEAD/docs/tutorials/cv2py.odp -------------------------------------------------------------------------------- /docs/tutorials/final doc.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iftheqhar/opencv2_python/HEAD/docs/tutorials/final doc.odt -------------------------------------------------------------------------------- /docs/tutorials/serial commn.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iftheqhar/opencv2_python/HEAD/docs/tutorials/serial commn.docx -------------------------------------------------------------------------------- /docs/tutorials/tutorials.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iftheqhar/opencv2_python/HEAD/docs/tutorials/tutorials.docx -------------------------------------------------------------------------------- /docs/user mnls/10.1.1.46.5663.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iftheqhar/opencv2_python/HEAD/docs/user mnls/10.1.1.46.5663.pdf -------------------------------------------------------------------------------- /docs/user mnls/CS676Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iftheqhar/opencv2_python/HEAD/docs/user mnls/CS676Report.pdf -------------------------------------------------------------------------------- /docs/user mnls/Paper_11-Gesture_Controlled_Robot_using_Image_Processing.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iftheqhar/opencv2_python/HEAD/docs/user mnls/Paper_11-Gesture_Controlled_Robot_using_Image_Processing.pdf -------------------------------------------------------------------------------- /docs/user mnls/Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iftheqhar/opencv2_python/HEAD/docs/user mnls/Report.pdf -------------------------------------------------------------------------------- /docs/user mnls/books.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iftheqhar/opencv2_python/HEAD/docs/user mnls/books.pdf -------------------------------------------------------------------------------- /docs/user mnls/image processing - How to define the markers for Watershed in OpenCV - Stack Overflow.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iftheqhar/opencv2_python/HEAD/docs/user mnls/image processing - How to define the markers for Watershed in OpenCV - Stack Overflow.htm -------------------------------------------------------------------------------- /docs/work log/log.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iftheqhar/opencv2_python/HEAD/docs/work log/log.docx -------------------------------------------------------------------------------- /software/firmware/backprojection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iftheqhar/opencv2_python/HEAD/software/firmware/backprojection.py -------------------------------------------------------------------------------- /software/firmware/backsub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iftheqhar/opencv2_python/HEAD/software/firmware/backsub.py -------------------------------------------------------------------------------- /software/firmware/backsub2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iftheqhar/opencv2_python/HEAD/software/firmware/backsub2.py -------------------------------------------------------------------------------- /software/firmware/cam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iftheqhar/opencv2_python/HEAD/software/firmware/cam.py -------------------------------------------------------------------------------- /software/firmware/cntrs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iftheqhar/opencv2_python/HEAD/software/firmware/cntrs.py -------------------------------------------------------------------------------- /software/firmware/ex1.PY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iftheqhar/opencv2_python/HEAD/software/firmware/ex1.PY -------------------------------------------------------------------------------- /software/firmware/ex3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iftheqhar/opencv2_python/HEAD/software/firmware/ex3.py -------------------------------------------------------------------------------- /software/firmware/ex4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iftheqhar/opencv2_python/HEAD/software/firmware/ex4.py -------------------------------------------------------------------------------- /software/firmware/exe file/cam.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iftheqhar/opencv2_python/HEAD/software/firmware/exe file/cam.exe -------------------------------------------------------------------------------- /software/firmware/haar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iftheqhar/opencv2_python/HEAD/software/firmware/haar.py -------------------------------------------------------------------------------- /software/firmware/hand_gesture_with_serial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iftheqhar/opencv2_python/HEAD/software/firmware/hand_gesture_with_serial.py -------------------------------------------------------------------------------- /software/firmware/img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iftheqhar/opencv2_python/HEAD/software/firmware/img.py -------------------------------------------------------------------------------- /software/firmware/ip1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iftheqhar/opencv2_python/HEAD/software/firmware/ip1.py -------------------------------------------------------------------------------- /software/firmware/ip2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iftheqhar/opencv2_python/HEAD/software/firmware/ip2.py -------------------------------------------------------------------------------- /software/firmware/yellowtrack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iftheqhar/opencv2_python/HEAD/software/firmware/yellowtrack.py -------------------------------------------------------------------------------- /software/pyserial-2.6.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iftheqhar/opencv2_python/HEAD/software/pyserial-2.6.tar.gz -------------------------------------------------------------------------------- /software/used sw/matplotlib-1.2.1.win32-py2.7.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iftheqhar/opencv2_python/HEAD/software/used sw/matplotlib-1.2.1.win32-py2.7.exe -------------------------------------------------------------------------------- /software/used sw/numpy-1.6.1-win32-superpack-python2.7.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iftheqhar/opencv2_python/HEAD/software/used sw/numpy-1.6.1-win32-superpack-python2.7.exe -------------------------------------------------------------------------------- /software/used sw/python-2.7.3.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iftheqhar/opencv2_python/HEAD/software/used sw/python-2.7.3.msi --------------------------------------------------------------------------------