├── .DS_Store ├── .gitignore ├── LICENSE ├── MobileNetSSD_deploy.caffemodel ├── MobileNetSSD_deploy.prototxt.txt ├── README.md ├── real_time_object_detection.py ├── real_time_output_gif └── real_time_output.gif └── venv ├── bin ├── activate ├── activate.csh ├── activate.fish ├── easy_install ├── easy_install-3.6 ├── f2py ├── f2py3 ├── f2py3.6 ├── pip ├── pip3 ├── pip3.6 ├── python ├── python3 ├── python3.6 └── range-detector ├── lib └── python3.6 │ └── site-packages │ ├── cv2 │ ├── LICENSE-3RD-PARTY.txt │ ├── __init__.py │ ├── __pycache__ │ │ └── __init__.cpython-36.pyc │ └── qt │ │ └── plugins │ │ └── platforms │ │ └── libqcocoa.dylib │ ├── imutils-0.5.3-py3.6.egg-info │ ├── PKG-INFO │ ├── SOURCES.txt │ ├── dependency_links.txt │ ├── installed-files.txt │ └── top_level.txt │ ├── imutils │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── contours.cpython-36.pyc │ │ ├── convenience.cpython-36.pyc │ │ ├── encodings.cpython-36.pyc │ │ ├── meta.cpython-36.pyc │ │ ├── object_detection.cpython-36.pyc │ │ ├── paths.cpython-36.pyc │ │ ├── perspective.cpython-36.pyc │ │ └── text.cpython-36.pyc │ ├── contours.py │ ├── convenience.py │ ├── encodings.py │ ├── face_utils │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── facealigner.cpython-36.pyc │ │ │ └── helpers.cpython-36.pyc │ │ ├── facealigner.py │ │ └── helpers.py │ ├── feature │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── dense.cpython-36.pyc │ │ │ ├── factories.cpython-36.pyc │ │ │ ├── gftt.cpython-36.pyc │ │ │ ├── harris.cpython-36.pyc │ │ │ ├── helpers.cpython-36.pyc │ │ │ └── rootsift.cpython-36.pyc │ │ ├── dense.py │ │ ├── factories.py │ │ ├── gftt.py │ │ ├── harris.py │ │ ├── helpers.py │ │ └── rootsift.py │ ├── io │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ └── tempfile.cpython-36.pyc │ │ └── tempfile.py │ ├── meta.py │ ├── object_detection.py │ ├── paths.py │ ├── perspective.py │ ├── text.py │ └── video │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── count_frames.cpython-36.pyc │ │ ├── filevideostream.cpython-36.pyc │ │ ├── fps.cpython-36.pyc │ │ ├── pivideostream.cpython-36.pyc │ │ ├── videostream.cpython-36.pyc │ │ └── webcamvideostream.cpython-36.pyc │ │ ├── count_frames.py │ │ ├── filevideostream.py │ │ ├── fps.py │ │ ├── pivideostream.py │ │ ├── videostream.py │ │ └── webcamvideostream.py │ ├── opencv_contrib_python-4.3.0.36.dist-info │ ├── INSTALLER │ ├── LICENSE-3RD-PARTY.txt │ ├── LICENSE.txt │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── top_level.txt │ └── opencv_python-4.3.0.36.dist-info │ ├── INSTALLER │ ├── LICENSE-3RD-PARTY.txt │ ├── LICENSE.txt │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── top_level.txt ├── pip-selfcheck.json └── pyvenv.cfg /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/LICENSE -------------------------------------------------------------------------------- /MobileNetSSD_deploy.caffemodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/MobileNetSSD_deploy.caffemodel -------------------------------------------------------------------------------- /MobileNetSSD_deploy.prototxt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/MobileNetSSD_deploy.prototxt.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/README.md -------------------------------------------------------------------------------- /real_time_object_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/real_time_object_detection.py -------------------------------------------------------------------------------- /real_time_output_gif/real_time_output.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/real_time_output_gif/real_time_output.gif -------------------------------------------------------------------------------- /venv/bin/activate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/bin/activate -------------------------------------------------------------------------------- /venv/bin/activate.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/bin/activate.csh -------------------------------------------------------------------------------- /venv/bin/activate.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/bin/activate.fish -------------------------------------------------------------------------------- /venv/bin/easy_install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/bin/easy_install -------------------------------------------------------------------------------- /venv/bin/easy_install-3.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/bin/easy_install-3.6 -------------------------------------------------------------------------------- /venv/bin/f2py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/bin/f2py -------------------------------------------------------------------------------- /venv/bin/f2py3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/bin/f2py3 -------------------------------------------------------------------------------- /venv/bin/f2py3.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/bin/f2py3.6 -------------------------------------------------------------------------------- /venv/bin/pip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/bin/pip -------------------------------------------------------------------------------- /venv/bin/pip3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/bin/pip3 -------------------------------------------------------------------------------- /venv/bin/pip3.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/bin/pip3.6 -------------------------------------------------------------------------------- /venv/bin/python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/bin/python -------------------------------------------------------------------------------- /venv/bin/python3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/bin/python3 -------------------------------------------------------------------------------- /venv/bin/python3.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/bin/python3.6 -------------------------------------------------------------------------------- /venv/bin/range-detector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/bin/range-detector -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/cv2/LICENSE-3RD-PARTY.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/cv2/LICENSE-3RD-PARTY.txt -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/cv2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/cv2/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/cv2/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/cv2/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/cv2/qt/plugins/platforms/libqcocoa.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/cv2/qt/plugins/platforms/libqcocoa.dylib -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/imutils-0.5.3-py3.6.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/imutils-0.5.3-py3.6.egg-info/PKG-INFO -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/imutils-0.5.3-py3.6.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/imutils-0.5.3-py3.6.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/imutils-0.5.3-py3.6.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/imutils-0.5.3-py3.6.egg-info/installed-files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/imutils-0.5.3-py3.6.egg-info/installed-files.txt -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/imutils-0.5.3-py3.6.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | imutils 2 | -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/imutils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/imutils/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/imutils/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/imutils/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/imutils/__pycache__/contours.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/imutils/__pycache__/contours.cpython-36.pyc -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/imutils/__pycache__/convenience.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/imutils/__pycache__/convenience.cpython-36.pyc -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/imutils/__pycache__/encodings.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/imutils/__pycache__/encodings.cpython-36.pyc -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/imutils/__pycache__/meta.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/imutils/__pycache__/meta.cpython-36.pyc -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/imutils/__pycache__/object_detection.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/imutils/__pycache__/object_detection.cpython-36.pyc -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/imutils/__pycache__/paths.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/imutils/__pycache__/paths.cpython-36.pyc -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/imutils/__pycache__/perspective.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/imutils/__pycache__/perspective.cpython-36.pyc -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/imutils/__pycache__/text.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/imutils/__pycache__/text.cpython-36.pyc -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/imutils/contours.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/imutils/contours.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/imutils/convenience.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/imutils/convenience.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/imutils/encodings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/imutils/encodings.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/imutils/face_utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/imutils/face_utils/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/imutils/face_utils/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/imutils/face_utils/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/imutils/face_utils/__pycache__/facealigner.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/imutils/face_utils/__pycache__/facealigner.cpython-36.pyc -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/imutils/face_utils/__pycache__/helpers.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/imutils/face_utils/__pycache__/helpers.cpython-36.pyc -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/imutils/face_utils/facealigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/imutils/face_utils/facealigner.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/imutils/face_utils/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/imutils/face_utils/helpers.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/imutils/feature/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/imutils/feature/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/imutils/feature/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/imutils/feature/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/imutils/feature/__pycache__/dense.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/imutils/feature/__pycache__/dense.cpython-36.pyc -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/imutils/feature/__pycache__/factories.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/imutils/feature/__pycache__/factories.cpython-36.pyc -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/imutils/feature/__pycache__/gftt.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/imutils/feature/__pycache__/gftt.cpython-36.pyc -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/imutils/feature/__pycache__/harris.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/imutils/feature/__pycache__/harris.cpython-36.pyc -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/imutils/feature/__pycache__/helpers.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/imutils/feature/__pycache__/helpers.cpython-36.pyc -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/imutils/feature/__pycache__/rootsift.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/imutils/feature/__pycache__/rootsift.cpython-36.pyc -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/imutils/feature/dense.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/imutils/feature/dense.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/imutils/feature/factories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/imutils/feature/factories.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/imutils/feature/gftt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/imutils/feature/gftt.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/imutils/feature/harris.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/imutils/feature/harris.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/imutils/feature/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/imutils/feature/helpers.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/imutils/feature/rootsift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/imutils/feature/rootsift.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/imutils/io/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/imutils/io/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/imutils/io/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/imutils/io/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/imutils/io/__pycache__/tempfile.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/imutils/io/__pycache__/tempfile.cpython-36.pyc -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/imutils/io/tempfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/imutils/io/tempfile.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/imutils/meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/imutils/meta.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/imutils/object_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/imutils/object_detection.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/imutils/paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/imutils/paths.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/imutils/perspective.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/imutils/perspective.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/imutils/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/imutils/text.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/imutils/video/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/imutils/video/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/imutils/video/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/imutils/video/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/imutils/video/__pycache__/count_frames.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/imutils/video/__pycache__/count_frames.cpython-36.pyc -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/imutils/video/__pycache__/filevideostream.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/imutils/video/__pycache__/filevideostream.cpython-36.pyc -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/imutils/video/__pycache__/fps.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/imutils/video/__pycache__/fps.cpython-36.pyc -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/imutils/video/__pycache__/pivideostream.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/imutils/video/__pycache__/pivideostream.cpython-36.pyc -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/imutils/video/__pycache__/videostream.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/imutils/video/__pycache__/videostream.cpython-36.pyc -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/imutils/video/__pycache__/webcamvideostream.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/imutils/video/__pycache__/webcamvideostream.cpython-36.pyc -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/imutils/video/count_frames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/imutils/video/count_frames.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/imutils/video/filevideostream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/imutils/video/filevideostream.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/imutils/video/fps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/imutils/video/fps.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/imutils/video/pivideostream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/imutils/video/pivideostream.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/imutils/video/videostream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/imutils/video/videostream.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/imutils/video/webcamvideostream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/imutils/video/webcamvideostream.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/opencv_contrib_python-4.3.0.36.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/opencv_contrib_python-4.3.0.36.dist-info/LICENSE-3RD-PARTY.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/opencv_contrib_python-4.3.0.36.dist-info/LICENSE-3RD-PARTY.txt -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/opencv_contrib_python-4.3.0.36.dist-info/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/opencv_contrib_python-4.3.0.36.dist-info/LICENSE.txt -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/opencv_contrib_python-4.3.0.36.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/opencv_contrib_python-4.3.0.36.dist-info/METADATA -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/opencv_contrib_python-4.3.0.36.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/opencv_contrib_python-4.3.0.36.dist-info/RECORD -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/opencv_contrib_python-4.3.0.36.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/opencv_contrib_python-4.3.0.36.dist-info/WHEEL -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/opencv_contrib_python-4.3.0.36.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | cv2 2 | -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/opencv_python-4.3.0.36.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/opencv_python-4.3.0.36.dist-info/LICENSE-3RD-PARTY.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/opencv_python-4.3.0.36.dist-info/LICENSE-3RD-PARTY.txt -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/opencv_python-4.3.0.36.dist-info/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/opencv_python-4.3.0.36.dist-info/LICENSE.txt -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/opencv_python-4.3.0.36.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/opencv_python-4.3.0.36.dist-info/METADATA -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/opencv_python-4.3.0.36.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/opencv_python-4.3.0.36.dist-info/RECORD -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/opencv_python-4.3.0.36.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/lib/python3.6/site-packages/opencv_python-4.3.0.36.dist-info/WHEEL -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/opencv_python-4.3.0.36.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | cv2 2 | -------------------------------------------------------------------------------- /venv/pip-selfcheck.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/pip-selfcheck.json -------------------------------------------------------------------------------- /venv/pyvenv.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Surya-Murali/Real-Time-Object-Detection-With-OpenCV/HEAD/venv/pyvenv.cfg --------------------------------------------------------------------------------