├── .github └── workflows │ ├── publish-to-test-pypi.yml │ └── pytest.yml ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── dscamera ├── __init__.py └── camera.py ├── example ├── calibration.json ├── equirect.jpg ├── image_rectification.py ├── image_rectification_pytorch.py ├── perspective.jpg └── sample.jpg ├── pyproject.toml ├── requirements.txt ├── setup.cfg ├── setup.py └── tests ├── test_basic.py └── test_projection.py /.github/workflows/publish-to-test-pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsuren/dscamera/HEAD/.github/workflows/publish-to-test-pypi.yml -------------------------------------------------------------------------------- /.github/workflows/pytest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsuren/dscamera/HEAD/.github/workflows/pytest.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsuren/dscamera/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsuren/dscamera/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsuren/dscamera/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsuren/dscamera/HEAD/README.md -------------------------------------------------------------------------------- /dscamera/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsuren/dscamera/HEAD/dscamera/__init__.py -------------------------------------------------------------------------------- /dscamera/camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsuren/dscamera/HEAD/dscamera/camera.py -------------------------------------------------------------------------------- /example/calibration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsuren/dscamera/HEAD/example/calibration.json -------------------------------------------------------------------------------- /example/equirect.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsuren/dscamera/HEAD/example/equirect.jpg -------------------------------------------------------------------------------- /example/image_rectification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsuren/dscamera/HEAD/example/image_rectification.py -------------------------------------------------------------------------------- /example/image_rectification_pytorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsuren/dscamera/HEAD/example/image_rectification_pytorch.py -------------------------------------------------------------------------------- /example/perspective.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsuren/dscamera/HEAD/example/perspective.jpg -------------------------------------------------------------------------------- /example/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsuren/dscamera/HEAD/example/sample.jpg -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsuren/dscamera/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy>=1.16.1 2 | opencv-python>=3.3.0 3 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsuren/dscamera/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsuren/dscamera/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsuren/dscamera/HEAD/tests/test_basic.py -------------------------------------------------------------------------------- /tests/test_projection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matsuren/dscamera/HEAD/tests/test_projection.py --------------------------------------------------------------------------------