├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── OP_cam_bg_img_to_plane.py ├── OP_ref_to_image_plane.py ├── README.md ├── __init__.py ├── fn.py ├── prefs.py └── ui.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | *.py[cod] -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pullusb/reference_to_image_plane/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pullusb/reference_to_image_plane/HEAD/LICENSE -------------------------------------------------------------------------------- /OP_cam_bg_img_to_plane.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pullusb/reference_to_image_plane/HEAD/OP_cam_bg_img_to_plane.py -------------------------------------------------------------------------------- /OP_ref_to_image_plane.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pullusb/reference_to_image_plane/HEAD/OP_ref_to_image_plane.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pullusb/reference_to_image_plane/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pullusb/reference_to_image_plane/HEAD/__init__.py -------------------------------------------------------------------------------- /fn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pullusb/reference_to_image_plane/HEAD/fn.py -------------------------------------------------------------------------------- /prefs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pullusb/reference_to_image_plane/HEAD/prefs.py -------------------------------------------------------------------------------- /ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pullusb/reference_to_image_plane/HEAD/ui.py --------------------------------------------------------------------------------