├── .gitignore ├── LICENSE ├── MANIFEST.in ├── Overview.png ├── README.md ├── dist ├── pythonic-cv-1.2.2.tar.gz └── pythonic_cv-1.2.2-py3-none-any.whl ├── pyproject.toml ├── setup.cfg └── src └── pcv ├── __init__.py ├── examples ├── __init__.py ├── cam_video_switch.py ├── hand_write.py ├── names.txt └── something_fishy.py ├── interact.py ├── process.py ├── screen.py ├── source.py └── vidIO.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ES-Alexander/pythonic-cv/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ES-Alexander/pythonic-cv/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include src/pcv/examples/names.txt -------------------------------------------------------------------------------- /Overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ES-Alexander/pythonic-cv/HEAD/Overview.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ES-Alexander/pythonic-cv/HEAD/README.md -------------------------------------------------------------------------------- /dist/pythonic-cv-1.2.2.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ES-Alexander/pythonic-cv/HEAD/dist/pythonic-cv-1.2.2.tar.gz -------------------------------------------------------------------------------- /dist/pythonic_cv-1.2.2-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ES-Alexander/pythonic-cv/HEAD/dist/pythonic_cv-1.2.2-py3-none-any.whl -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ES-Alexander/pythonic-cv/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ES-Alexander/pythonic-cv/HEAD/setup.cfg -------------------------------------------------------------------------------- /src/pcv/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pcv/examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pcv/examples/cam_video_switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ES-Alexander/pythonic-cv/HEAD/src/pcv/examples/cam_video_switch.py -------------------------------------------------------------------------------- /src/pcv/examples/hand_write.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ES-Alexander/pythonic-cv/HEAD/src/pcv/examples/hand_write.py -------------------------------------------------------------------------------- /src/pcv/examples/names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ES-Alexander/pythonic-cv/HEAD/src/pcv/examples/names.txt -------------------------------------------------------------------------------- /src/pcv/examples/something_fishy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ES-Alexander/pythonic-cv/HEAD/src/pcv/examples/something_fishy.py -------------------------------------------------------------------------------- /src/pcv/interact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ES-Alexander/pythonic-cv/HEAD/src/pcv/interact.py -------------------------------------------------------------------------------- /src/pcv/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ES-Alexander/pythonic-cv/HEAD/src/pcv/process.py -------------------------------------------------------------------------------- /src/pcv/screen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ES-Alexander/pythonic-cv/HEAD/src/pcv/screen.py -------------------------------------------------------------------------------- /src/pcv/source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ES-Alexander/pythonic-cv/HEAD/src/pcv/source.py -------------------------------------------------------------------------------- /src/pcv/vidIO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ES-Alexander/pythonic-cv/HEAD/src/pcv/vidIO.py --------------------------------------------------------------------------------