├── .gitignore ├── .gitmodules ├── .travis.yml ├── LICENSE ├── README.md ├── doc ├── Makefile ├── conf.py ├── index.rst ├── install.rst ├── intro.rst ├── modules.rst ├── requirements.txt └── usage.rst ├── image.jpg ├── imago ├── imago-camera ├── imago-timer ├── makefile ├── pcf.c ├── process_go_video.py ├── requirements.txt ├── runtests ├── src ├── __init__.py ├── camera.py ├── capture.py ├── cs.py ├── filters.py ├── geometry.py ├── gridf_analyzer.py ├── gridf_new.py ├── gridf_old.py ├── hough.py ├── im_debug.py ├── imago.py ├── intrsc.py ├── k_means.py ├── lhs.py ├── linef.py ├── manual.py ├── manual_lines.py ├── new_geometry.py ├── output.py ├── params.py ├── pso.py ├── ransac.py └── timer.py └── unit-tests /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasmcz/imago/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasmcz/imago/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasmcz/imago/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasmcz/imago/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasmcz/imago/HEAD/README.md -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasmcz/imago/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasmcz/imago/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasmcz/imago/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasmcz/imago/HEAD/doc/install.rst -------------------------------------------------------------------------------- /doc/intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasmcz/imago/HEAD/doc/intro.rst -------------------------------------------------------------------------------- /doc/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasmcz/imago/HEAD/doc/modules.rst -------------------------------------------------------------------------------- /doc/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasmcz/imago/HEAD/doc/requirements.txt -------------------------------------------------------------------------------- /doc/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasmcz/imago/HEAD/doc/usage.rst -------------------------------------------------------------------------------- /image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasmcz/imago/HEAD/image.jpg -------------------------------------------------------------------------------- /imago: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasmcz/imago/HEAD/imago -------------------------------------------------------------------------------- /imago-camera: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasmcz/imago/HEAD/imago-camera -------------------------------------------------------------------------------- /imago-timer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasmcz/imago/HEAD/imago-timer -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasmcz/imago/HEAD/makefile -------------------------------------------------------------------------------- /pcf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasmcz/imago/HEAD/pcf.c -------------------------------------------------------------------------------- /process_go_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasmcz/imago/HEAD/process_go_video.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pillow>=3.0.0 2 | numpy 3 | -------------------------------------------------------------------------------- /runtests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasmcz/imago/HEAD/runtests -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasmcz/imago/HEAD/src/camera.py -------------------------------------------------------------------------------- /src/capture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasmcz/imago/HEAD/src/capture.py -------------------------------------------------------------------------------- /src/cs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasmcz/imago/HEAD/src/cs.py -------------------------------------------------------------------------------- /src/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasmcz/imago/HEAD/src/filters.py -------------------------------------------------------------------------------- /src/geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasmcz/imago/HEAD/src/geometry.py -------------------------------------------------------------------------------- /src/gridf_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasmcz/imago/HEAD/src/gridf_analyzer.py -------------------------------------------------------------------------------- /src/gridf_new.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasmcz/imago/HEAD/src/gridf_new.py -------------------------------------------------------------------------------- /src/gridf_old.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasmcz/imago/HEAD/src/gridf_old.py -------------------------------------------------------------------------------- /src/hough.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasmcz/imago/HEAD/src/hough.py -------------------------------------------------------------------------------- /src/im_debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasmcz/imago/HEAD/src/im_debug.py -------------------------------------------------------------------------------- /src/imago.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasmcz/imago/HEAD/src/imago.py -------------------------------------------------------------------------------- /src/intrsc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasmcz/imago/HEAD/src/intrsc.py -------------------------------------------------------------------------------- /src/k_means.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasmcz/imago/HEAD/src/k_means.py -------------------------------------------------------------------------------- /src/lhs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasmcz/imago/HEAD/src/lhs.py -------------------------------------------------------------------------------- /src/linef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasmcz/imago/HEAD/src/linef.py -------------------------------------------------------------------------------- /src/manual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasmcz/imago/HEAD/src/manual.py -------------------------------------------------------------------------------- /src/manual_lines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasmcz/imago/HEAD/src/manual_lines.py -------------------------------------------------------------------------------- /src/new_geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasmcz/imago/HEAD/src/new_geometry.py -------------------------------------------------------------------------------- /src/output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasmcz/imago/HEAD/src/output.py -------------------------------------------------------------------------------- /src/params.py: -------------------------------------------------------------------------------- 1 | ransac_diagonal_iter = 600 2 | -------------------------------------------------------------------------------- /src/pso.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasmcz/imago/HEAD/src/pso.py -------------------------------------------------------------------------------- /src/ransac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasmcz/imago/HEAD/src/ransac.py -------------------------------------------------------------------------------- /src/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasmcz/imago/HEAD/src/timer.py -------------------------------------------------------------------------------- /unit-tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasmcz/imago/HEAD/unit-tests --------------------------------------------------------------------------------