├── .gitattributes ├── .gitignore ├── Alignment-RigRelatives.ipynb ├── Alignment.ipynb ├── Batch Processing DroneMapper.ipynb ├── Batch Processing.ipynb ├── Captures.ipynb ├── ImageSets.ipynb ├── Images.ipynb ├── LICENSE ├── MicaSense Image Processing Setup.ipynb ├── MicaSense Image Processing Tutorial 1.ipynb ├── MicaSense Image Processing Tutorial 2.ipynb ├── MicaSense Image Processing Tutorial 3.ipynb ├── Panels.ipynb ├── README.md ├── data ├── 0000SET │ └── 000 │ │ ├── IMG_0000_1.tif │ │ ├── IMG_0000_2.tif │ │ ├── IMG_0000_3.tif │ │ ├── IMG_0000_4.tif │ │ ├── IMG_0000_5.tif │ │ ├── IMG_0001_1.tif │ │ ├── IMG_0001_2.tif │ │ ├── IMG_0001_3.tif │ │ ├── IMG_0001_4.tif │ │ └── IMG_0001_5.tif ├── 0001SET │ └── 000 │ │ ├── IMG_0002_4.tif │ │ └── IMG_0003_1.tif ├── ALTUM0SET │ └── 000 │ │ └── IMG_0000_1.tif └── ALTUM1SET │ └── 000 │ ├── IMG_0000_1.tif │ ├── IMG_0000_2.tif │ ├── IMG_0000_3.tif │ ├── IMG_0000_4.tif │ ├── IMG_0000_5.tif │ ├── IMG_0000_6.tif │ ├── IMG_0008_1.tif │ ├── IMG_0008_2.tif │ ├── IMG_0008_3.tif │ ├── IMG_0008_4.tif │ ├── IMG_0008_5.tif │ ├── IMG_0008_6.tif │ ├── IMG_0245_1.tif │ ├── IMG_0245_2.tif │ ├── IMG_0245_3.tif │ ├── IMG_0245_4.tif │ ├── IMG_0245_5.tif │ └── IMG_0245_6.tif ├── doc ├── MicaSense_DEM.PNG ├── MicaSense_NGB.PNG ├── MicaSense_RGB.PNG ├── MicaSense_RedEdgeGB.PNG └── MicaSense_Thermal.png ├── index.ipynb ├── micasense ├── __init__.py ├── capture.py ├── dls.py ├── image.py ├── imageset.py ├── imageutils.py ├── metadata.py ├── panel.py ├── plotutils.py └── utils.py ├── micasense_conda_env.yml ├── pytest.ini ├── setup.py └── tests ├── __init__.py ├── conftest.py ├── test_capture.py ├── test_dls.py ├── test_image.py ├── test_imageset.py ├── test_metadata.py └── test_panel.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/.gitignore -------------------------------------------------------------------------------- /Alignment-RigRelatives.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/Alignment-RigRelatives.ipynb -------------------------------------------------------------------------------- /Alignment.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/Alignment.ipynb -------------------------------------------------------------------------------- /Batch Processing DroneMapper.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/Batch Processing DroneMapper.ipynb -------------------------------------------------------------------------------- /Batch Processing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/Batch Processing.ipynb -------------------------------------------------------------------------------- /Captures.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/Captures.ipynb -------------------------------------------------------------------------------- /ImageSets.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/ImageSets.ipynb -------------------------------------------------------------------------------- /Images.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/Images.ipynb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/LICENSE -------------------------------------------------------------------------------- /MicaSense Image Processing Setup.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/MicaSense Image Processing Setup.ipynb -------------------------------------------------------------------------------- /MicaSense Image Processing Tutorial 1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/MicaSense Image Processing Tutorial 1.ipynb -------------------------------------------------------------------------------- /MicaSense Image Processing Tutorial 2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/MicaSense Image Processing Tutorial 2.ipynb -------------------------------------------------------------------------------- /MicaSense Image Processing Tutorial 3.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/MicaSense Image Processing Tutorial 3.ipynb -------------------------------------------------------------------------------- /Panels.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/Panels.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/README.md -------------------------------------------------------------------------------- /data/0000SET/000/IMG_0000_1.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/data/0000SET/000/IMG_0000_1.tif -------------------------------------------------------------------------------- /data/0000SET/000/IMG_0000_2.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/data/0000SET/000/IMG_0000_2.tif -------------------------------------------------------------------------------- /data/0000SET/000/IMG_0000_3.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/data/0000SET/000/IMG_0000_3.tif -------------------------------------------------------------------------------- /data/0000SET/000/IMG_0000_4.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/data/0000SET/000/IMG_0000_4.tif -------------------------------------------------------------------------------- /data/0000SET/000/IMG_0000_5.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/data/0000SET/000/IMG_0000_5.tif -------------------------------------------------------------------------------- /data/0000SET/000/IMG_0001_1.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/data/0000SET/000/IMG_0001_1.tif -------------------------------------------------------------------------------- /data/0000SET/000/IMG_0001_2.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/data/0000SET/000/IMG_0001_2.tif -------------------------------------------------------------------------------- /data/0000SET/000/IMG_0001_3.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/data/0000SET/000/IMG_0001_3.tif -------------------------------------------------------------------------------- /data/0000SET/000/IMG_0001_4.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/data/0000SET/000/IMG_0001_4.tif -------------------------------------------------------------------------------- /data/0000SET/000/IMG_0001_5.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/data/0000SET/000/IMG_0001_5.tif -------------------------------------------------------------------------------- /data/0001SET/000/IMG_0002_4.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/data/0001SET/000/IMG_0002_4.tif -------------------------------------------------------------------------------- /data/0001SET/000/IMG_0003_1.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/data/0001SET/000/IMG_0003_1.tif -------------------------------------------------------------------------------- /data/ALTUM0SET/000/IMG_0000_1.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/data/ALTUM0SET/000/IMG_0000_1.tif -------------------------------------------------------------------------------- /data/ALTUM1SET/000/IMG_0000_1.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/data/ALTUM1SET/000/IMG_0000_1.tif -------------------------------------------------------------------------------- /data/ALTUM1SET/000/IMG_0000_2.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/data/ALTUM1SET/000/IMG_0000_2.tif -------------------------------------------------------------------------------- /data/ALTUM1SET/000/IMG_0000_3.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/data/ALTUM1SET/000/IMG_0000_3.tif -------------------------------------------------------------------------------- /data/ALTUM1SET/000/IMG_0000_4.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/data/ALTUM1SET/000/IMG_0000_4.tif -------------------------------------------------------------------------------- /data/ALTUM1SET/000/IMG_0000_5.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/data/ALTUM1SET/000/IMG_0000_5.tif -------------------------------------------------------------------------------- /data/ALTUM1SET/000/IMG_0000_6.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/data/ALTUM1SET/000/IMG_0000_6.tif -------------------------------------------------------------------------------- /data/ALTUM1SET/000/IMG_0008_1.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/data/ALTUM1SET/000/IMG_0008_1.tif -------------------------------------------------------------------------------- /data/ALTUM1SET/000/IMG_0008_2.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/data/ALTUM1SET/000/IMG_0008_2.tif -------------------------------------------------------------------------------- /data/ALTUM1SET/000/IMG_0008_3.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/data/ALTUM1SET/000/IMG_0008_3.tif -------------------------------------------------------------------------------- /data/ALTUM1SET/000/IMG_0008_4.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/data/ALTUM1SET/000/IMG_0008_4.tif -------------------------------------------------------------------------------- /data/ALTUM1SET/000/IMG_0008_5.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/data/ALTUM1SET/000/IMG_0008_5.tif -------------------------------------------------------------------------------- /data/ALTUM1SET/000/IMG_0008_6.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/data/ALTUM1SET/000/IMG_0008_6.tif -------------------------------------------------------------------------------- /data/ALTUM1SET/000/IMG_0245_1.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/data/ALTUM1SET/000/IMG_0245_1.tif -------------------------------------------------------------------------------- /data/ALTUM1SET/000/IMG_0245_2.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/data/ALTUM1SET/000/IMG_0245_2.tif -------------------------------------------------------------------------------- /data/ALTUM1SET/000/IMG_0245_3.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/data/ALTUM1SET/000/IMG_0245_3.tif -------------------------------------------------------------------------------- /data/ALTUM1SET/000/IMG_0245_4.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/data/ALTUM1SET/000/IMG_0245_4.tif -------------------------------------------------------------------------------- /data/ALTUM1SET/000/IMG_0245_5.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/data/ALTUM1SET/000/IMG_0245_5.tif -------------------------------------------------------------------------------- /data/ALTUM1SET/000/IMG_0245_6.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/data/ALTUM1SET/000/IMG_0245_6.tif -------------------------------------------------------------------------------- /doc/MicaSense_DEM.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/doc/MicaSense_DEM.PNG -------------------------------------------------------------------------------- /doc/MicaSense_NGB.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/doc/MicaSense_NGB.PNG -------------------------------------------------------------------------------- /doc/MicaSense_RGB.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/doc/MicaSense_RGB.PNG -------------------------------------------------------------------------------- /doc/MicaSense_RedEdgeGB.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/doc/MicaSense_RedEdgeGB.PNG -------------------------------------------------------------------------------- /doc/MicaSense_Thermal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/doc/MicaSense_Thermal.png -------------------------------------------------------------------------------- /index.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/index.ipynb -------------------------------------------------------------------------------- /micasense/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/micasense/__init__.py -------------------------------------------------------------------------------- /micasense/capture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/micasense/capture.py -------------------------------------------------------------------------------- /micasense/dls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/micasense/dls.py -------------------------------------------------------------------------------- /micasense/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/micasense/image.py -------------------------------------------------------------------------------- /micasense/imageset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/micasense/imageset.py -------------------------------------------------------------------------------- /micasense/imageutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/micasense/imageutils.py -------------------------------------------------------------------------------- /micasense/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/micasense/metadata.py -------------------------------------------------------------------------------- /micasense/panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/micasense/panel.py -------------------------------------------------------------------------------- /micasense/plotutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/micasense/plotutils.py -------------------------------------------------------------------------------- /micasense/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/micasense/utils.py -------------------------------------------------------------------------------- /micasense_conda_env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/micasense_conda_env.yml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/pytest.ini -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_capture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/tests/test_capture.py -------------------------------------------------------------------------------- /tests/test_dls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/tests/test_dls.py -------------------------------------------------------------------------------- /tests/test_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/tests/test_image.py -------------------------------------------------------------------------------- /tests/test_imageset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/tests/test_imageset.py -------------------------------------------------------------------------------- /tests/test_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/tests/test_metadata.py -------------------------------------------------------------------------------- /tests/test_panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dronemapper-io/imageprocessing/HEAD/tests/test_panel.py --------------------------------------------------------------------------------