├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── docs ├── Makefile ├── about.rst ├── conf.py ├── index.rst ├── make.bat └── quick_start.rst ├── environment.yml ├── readthedocs.yml ├── resippy ├── __init__.py ├── image_objects │ ├── __init__.py │ ├── abstract_image.py │ ├── abstract_image_metadata.py │ ├── earth_overhead │ │ ├── __init__.py │ │ ├── abstract_earth_overhead_image.py │ │ ├── digital_globe │ │ │ ├── DigitalGlobeImageFactory.py │ │ │ ├── __init__.py │ │ │ └── view_ready_stereo │ │ │ │ ├── __init__.py │ │ │ │ ├── view_ready_stereo_image.py │ │ │ │ ├── view_ready_stereo_image_factory.py │ │ │ │ ├── view_ready_stereo_metadata.py │ │ │ │ └── view_ready_stereo_point_calc.py │ │ ├── earth_overhead_point_calculators │ │ │ ├── __init__.py │ │ │ ├── abstract_earth_overhead_point_calc.py │ │ │ ├── earth_overhead_sensor_model.py │ │ │ ├── fixtured_camera.py │ │ │ ├── geotiff_point_calc.py │ │ │ ├── ideal_pinhole_fpa_local_utm_point_calc.py │ │ │ ├── igm_point_calc.py │ │ │ ├── opencv_point_calc.py │ │ │ ├── pinhole_camera.py │ │ │ ├── pix4d_point_calc.py │ │ │ └── rpc_point_calc.py │ │ ├── geotiff │ │ │ ├── __init__.py │ │ │ ├── geotiff_image.py │ │ │ ├── geotiff_image_factory.py │ │ │ ├── geotiff_metadata.py │ │ │ └── geotiff_point_calc.py │ │ ├── igm │ │ │ ├── __init__.py │ │ │ ├── igm_image.py │ │ │ └── igm_metadata.py │ │ ├── micasense │ │ │ ├── __init__.py │ │ │ ├── micasense_image.py │ │ │ ├── micasense_image_factory.py │ │ │ └── micasense_metadata.py │ │ └── physical_camera │ │ │ ├── __init__.py │ │ │ ├── physical_camera_image.py │ │ │ ├── physical_camera_image_factory.py │ │ │ └── physical_camera_metadata.py │ ├── envi │ │ ├── __init__.py │ │ ├── envi_image.py │ │ ├── envi_image_factory.py │ │ └── envi_metadata.py │ └── image_factory.py ├── image_recognition │ ├── __init__.py │ ├── neural_net_model_scoring │ │ ├── __init__.py │ │ └── keras_image_scoring.py │ └── neural_net_model_training │ │ ├── __init__.py │ │ └── keras_model_training.py ├── photogrammetry │ ├── __init__.py │ ├── crs_defs.py │ ├── dem │ │ ├── __init__.py │ │ ├── abstract_dem.py │ │ ├── constant_elevation_dem.py │ │ ├── dem_factory.py │ │ └── geotiff_dem.py │ ├── nav │ │ ├── __init__.py │ │ ├── abstract_nav.py │ │ ├── applanix_eo_nav.py │ │ ├── applanix_sbet_nav.py │ │ └── nav_factory.py │ └── ortho_tools.py ├── spectral │ ├── __init__.py │ ├── spectral_image_processing_1d.py │ ├── spectral_image_processing_2d.py │ ├── spectrum.py │ └── spectrum_factories │ │ ├── SVC │ │ ├── __init__.py │ │ └── ascii │ │ │ ├── __init__.py │ │ │ └── svc_spectral_factory.py │ │ ├── __init__.py │ │ ├── csv │ │ ├── __init__.py │ │ └── ascii │ │ │ ├── __init__.py │ │ │ └── csv_spectral_factory.py │ │ ├── envi │ │ ├── __init__.py │ │ └── ascii │ │ │ ├── __init__.py │ │ │ └── envi_ascii_plot_file_factory.py │ │ ├── spectrum_factory.py │ │ └── usgs │ │ ├── __init__.py │ │ └── ascii │ │ ├── __init__.py │ │ └── usgs_ascii_spectral_factory.py └── utils │ ├── __init__.py │ ├── csv_utils.py │ ├── envi_utils.py │ ├── file_utils.py │ ├── geom_utils.py │ ├── image_utils │ ├── __init__.py │ ├── image_chipper.py │ ├── image_mask_utils.py │ ├── image_registration.py │ └── image_utils.py │ ├── numpy_and_array_utils.py │ ├── photogrammetry_utils.py │ ├── physical_camera_simulator.py │ ├── pix4d_utils.py │ ├── plot_utils │ └── __init__.py │ ├── proj_utils.py │ ├── spectral_utils.py │ ├── string_utils.py │ ├── time_utils.py │ └── units │ ├── __init__.py │ ├── unit_constants.py │ └── unit_defs.txt ├── rtd_environment.yml ├── setup.py └── tests ├── __init__.py ├── demo_tests ├── __init__.py ├── pixel_to_world_demo_tests.py ├── test_chipper.py └── test_spectral_factories.py ├── demos ├── __init__.py ├── camera_simulator_demo.py ├── chipout_overhead_vehicles_train.py ├── chipout_overhead_vehicles_val.py ├── colormap_image_demo.py ├── digital_globe_demos.py ├── envi_image_demos.py ├── gtiff_demos.py ├── micasense_ortho_demo.py ├── mutual_information_demo.py ├── pass_0_correct_boresights.tif ├── pass_1_correct_boresights.tif ├── physical_camera_to_igm_demo.py ├── pixels_obstructed_by_dem_demo.py └── spectral_target_detection_demo.py ├── run_all_demo_tests.py ├── run_all_demos.py ├── run_all_tests.py ├── run_all_timings.py ├── run_everything.py ├── tests ├── __init__.py ├── test_defined_units.py ├── test_fixtured_camera.py ├── test_geometry.py ├── test_geotiff_images.py ├── test_photogram_utils.py ├── test_point_calcs.py └── test_spectral.py └── timings ├── __init__.py └── test_point_calc_timings.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | recursive-include resippy *.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/about.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/docs/about.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/quick_start.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/docs/quick_start.rst -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/environment.yml -------------------------------------------------------------------------------- /readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/readthedocs.yml -------------------------------------------------------------------------------- /resippy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resippy/image_objects/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resippy/image_objects/abstract_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/image_objects/abstract_image.py -------------------------------------------------------------------------------- /resippy/image_objects/abstract_image_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/image_objects/abstract_image_metadata.py -------------------------------------------------------------------------------- /resippy/image_objects/earth_overhead/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resippy/image_objects/earth_overhead/abstract_earth_overhead_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/image_objects/earth_overhead/abstract_earth_overhead_image.py -------------------------------------------------------------------------------- /resippy/image_objects/earth_overhead/digital_globe/DigitalGlobeImageFactory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/image_objects/earth_overhead/digital_globe/DigitalGlobeImageFactory.py -------------------------------------------------------------------------------- /resippy/image_objects/earth_overhead/digital_globe/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resippy/image_objects/earth_overhead/digital_globe/view_ready_stereo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resippy/image_objects/earth_overhead/digital_globe/view_ready_stereo/view_ready_stereo_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/image_objects/earth_overhead/digital_globe/view_ready_stereo/view_ready_stereo_image.py -------------------------------------------------------------------------------- /resippy/image_objects/earth_overhead/digital_globe/view_ready_stereo/view_ready_stereo_image_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/image_objects/earth_overhead/digital_globe/view_ready_stereo/view_ready_stereo_image_factory.py -------------------------------------------------------------------------------- /resippy/image_objects/earth_overhead/digital_globe/view_ready_stereo/view_ready_stereo_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/image_objects/earth_overhead/digital_globe/view_ready_stereo/view_ready_stereo_metadata.py -------------------------------------------------------------------------------- /resippy/image_objects/earth_overhead/digital_globe/view_ready_stereo/view_ready_stereo_point_calc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/image_objects/earth_overhead/digital_globe/view_ready_stereo/view_ready_stereo_point_calc.py -------------------------------------------------------------------------------- /resippy/image_objects/earth_overhead/earth_overhead_point_calculators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resippy/image_objects/earth_overhead/earth_overhead_point_calculators/abstract_earth_overhead_point_calc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/image_objects/earth_overhead/earth_overhead_point_calculators/abstract_earth_overhead_point_calc.py -------------------------------------------------------------------------------- /resippy/image_objects/earth_overhead/earth_overhead_point_calculators/earth_overhead_sensor_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/image_objects/earth_overhead/earth_overhead_point_calculators/earth_overhead_sensor_model.py -------------------------------------------------------------------------------- /resippy/image_objects/earth_overhead/earth_overhead_point_calculators/fixtured_camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/image_objects/earth_overhead/earth_overhead_point_calculators/fixtured_camera.py -------------------------------------------------------------------------------- /resippy/image_objects/earth_overhead/earth_overhead_point_calculators/geotiff_point_calc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/image_objects/earth_overhead/earth_overhead_point_calculators/geotiff_point_calc.py -------------------------------------------------------------------------------- /resippy/image_objects/earth_overhead/earth_overhead_point_calculators/ideal_pinhole_fpa_local_utm_point_calc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/image_objects/earth_overhead/earth_overhead_point_calculators/ideal_pinhole_fpa_local_utm_point_calc.py -------------------------------------------------------------------------------- /resippy/image_objects/earth_overhead/earth_overhead_point_calculators/igm_point_calc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/image_objects/earth_overhead/earth_overhead_point_calculators/igm_point_calc.py -------------------------------------------------------------------------------- /resippy/image_objects/earth_overhead/earth_overhead_point_calculators/opencv_point_calc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/image_objects/earth_overhead/earth_overhead_point_calculators/opencv_point_calc.py -------------------------------------------------------------------------------- /resippy/image_objects/earth_overhead/earth_overhead_point_calculators/pinhole_camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/image_objects/earth_overhead/earth_overhead_point_calculators/pinhole_camera.py -------------------------------------------------------------------------------- /resippy/image_objects/earth_overhead/earth_overhead_point_calculators/pix4d_point_calc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/image_objects/earth_overhead/earth_overhead_point_calculators/pix4d_point_calc.py -------------------------------------------------------------------------------- /resippy/image_objects/earth_overhead/earth_overhead_point_calculators/rpc_point_calc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/image_objects/earth_overhead/earth_overhead_point_calculators/rpc_point_calc.py -------------------------------------------------------------------------------- /resippy/image_objects/earth_overhead/geotiff/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resippy/image_objects/earth_overhead/geotiff/geotiff_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/image_objects/earth_overhead/geotiff/geotiff_image.py -------------------------------------------------------------------------------- /resippy/image_objects/earth_overhead/geotiff/geotiff_image_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/image_objects/earth_overhead/geotiff/geotiff_image_factory.py -------------------------------------------------------------------------------- /resippy/image_objects/earth_overhead/geotiff/geotiff_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/image_objects/earth_overhead/geotiff/geotiff_metadata.py -------------------------------------------------------------------------------- /resippy/image_objects/earth_overhead/geotiff/geotiff_point_calc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/image_objects/earth_overhead/geotiff/geotiff_point_calc.py -------------------------------------------------------------------------------- /resippy/image_objects/earth_overhead/igm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resippy/image_objects/earth_overhead/igm/igm_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/image_objects/earth_overhead/igm/igm_image.py -------------------------------------------------------------------------------- /resippy/image_objects/earth_overhead/igm/igm_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/image_objects/earth_overhead/igm/igm_metadata.py -------------------------------------------------------------------------------- /resippy/image_objects/earth_overhead/micasense/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resippy/image_objects/earth_overhead/micasense/micasense_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/image_objects/earth_overhead/micasense/micasense_image.py -------------------------------------------------------------------------------- /resippy/image_objects/earth_overhead/micasense/micasense_image_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/image_objects/earth_overhead/micasense/micasense_image_factory.py -------------------------------------------------------------------------------- /resippy/image_objects/earth_overhead/micasense/micasense_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/image_objects/earth_overhead/micasense/micasense_metadata.py -------------------------------------------------------------------------------- /resippy/image_objects/earth_overhead/physical_camera/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resippy/image_objects/earth_overhead/physical_camera/physical_camera_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/image_objects/earth_overhead/physical_camera/physical_camera_image.py -------------------------------------------------------------------------------- /resippy/image_objects/earth_overhead/physical_camera/physical_camera_image_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/image_objects/earth_overhead/physical_camera/physical_camera_image_factory.py -------------------------------------------------------------------------------- /resippy/image_objects/earth_overhead/physical_camera/physical_camera_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/image_objects/earth_overhead/physical_camera/physical_camera_metadata.py -------------------------------------------------------------------------------- /resippy/image_objects/envi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resippy/image_objects/envi/envi_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/image_objects/envi/envi_image.py -------------------------------------------------------------------------------- /resippy/image_objects/envi/envi_image_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/image_objects/envi/envi_image_factory.py -------------------------------------------------------------------------------- /resippy/image_objects/envi/envi_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/image_objects/envi/envi_metadata.py -------------------------------------------------------------------------------- /resippy/image_objects/image_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/image_objects/image_factory.py -------------------------------------------------------------------------------- /resippy/image_recognition/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resippy/image_recognition/neural_net_model_scoring/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resippy/image_recognition/neural_net_model_scoring/keras_image_scoring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/image_recognition/neural_net_model_scoring/keras_image_scoring.py -------------------------------------------------------------------------------- /resippy/image_recognition/neural_net_model_training/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resippy/image_recognition/neural_net_model_training/keras_model_training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/image_recognition/neural_net_model_training/keras_model_training.py -------------------------------------------------------------------------------- /resippy/photogrammetry/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /resippy/photogrammetry/crs_defs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/photogrammetry/crs_defs.py -------------------------------------------------------------------------------- /resippy/photogrammetry/dem/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resippy/photogrammetry/dem/abstract_dem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/photogrammetry/dem/abstract_dem.py -------------------------------------------------------------------------------- /resippy/photogrammetry/dem/constant_elevation_dem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/photogrammetry/dem/constant_elevation_dem.py -------------------------------------------------------------------------------- /resippy/photogrammetry/dem/dem_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/photogrammetry/dem/dem_factory.py -------------------------------------------------------------------------------- /resippy/photogrammetry/dem/geotiff_dem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/photogrammetry/dem/geotiff_dem.py -------------------------------------------------------------------------------- /resippy/photogrammetry/nav/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resippy/photogrammetry/nav/abstract_nav.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/photogrammetry/nav/abstract_nav.py -------------------------------------------------------------------------------- /resippy/photogrammetry/nav/applanix_eo_nav.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/photogrammetry/nav/applanix_eo_nav.py -------------------------------------------------------------------------------- /resippy/photogrammetry/nav/applanix_sbet_nav.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/photogrammetry/nav/applanix_sbet_nav.py -------------------------------------------------------------------------------- /resippy/photogrammetry/nav/nav_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/photogrammetry/nav/nav_factory.py -------------------------------------------------------------------------------- /resippy/photogrammetry/ortho_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/photogrammetry/ortho_tools.py -------------------------------------------------------------------------------- /resippy/spectral/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resippy/spectral/spectral_image_processing_1d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/spectral/spectral_image_processing_1d.py -------------------------------------------------------------------------------- /resippy/spectral/spectral_image_processing_2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/spectral/spectral_image_processing_2d.py -------------------------------------------------------------------------------- /resippy/spectral/spectrum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/spectral/spectrum.py -------------------------------------------------------------------------------- /resippy/spectral/spectrum_factories/SVC/__init__.py: -------------------------------------------------------------------------------- 1 | from . import ascii -------------------------------------------------------------------------------- /resippy/spectral/spectrum_factories/SVC/ascii/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/spectral/spectrum_factories/SVC/ascii/__init__.py -------------------------------------------------------------------------------- /resippy/spectral/spectrum_factories/SVC/ascii/svc_spectral_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/spectral/spectrum_factories/SVC/ascii/svc_spectral_factory.py -------------------------------------------------------------------------------- /resippy/spectral/spectrum_factories/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resippy/spectral/spectrum_factories/csv/__init__.py: -------------------------------------------------------------------------------- 1 | from . import ascii -------------------------------------------------------------------------------- /resippy/spectral/spectrum_factories/csv/ascii/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/spectral/spectrum_factories/csv/ascii/__init__.py -------------------------------------------------------------------------------- /resippy/spectral/spectrum_factories/csv/ascii/csv_spectral_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/spectral/spectrum_factories/csv/ascii/csv_spectral_factory.py -------------------------------------------------------------------------------- /resippy/spectral/spectrum_factories/envi/__init__.py: -------------------------------------------------------------------------------- 1 | from . import ascii -------------------------------------------------------------------------------- /resippy/spectral/spectrum_factories/envi/ascii/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/spectral/spectrum_factories/envi/ascii/__init__.py -------------------------------------------------------------------------------- /resippy/spectral/spectrum_factories/envi/ascii/envi_ascii_plot_file_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/spectral/spectrum_factories/envi/ascii/envi_ascii_plot_file_factory.py -------------------------------------------------------------------------------- /resippy/spectral/spectrum_factories/spectrum_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/spectral/spectrum_factories/spectrum_factory.py -------------------------------------------------------------------------------- /resippy/spectral/spectrum_factories/usgs/__init__.py: -------------------------------------------------------------------------------- 1 | from . import ascii 2 | -------------------------------------------------------------------------------- /resippy/spectral/spectrum_factories/usgs/ascii/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/spectral/spectrum_factories/usgs/ascii/__init__.py -------------------------------------------------------------------------------- /resippy/spectral/spectrum_factories/usgs/ascii/usgs_ascii_spectral_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/spectral/spectrum_factories/usgs/ascii/usgs_ascii_spectral_factory.py -------------------------------------------------------------------------------- /resippy/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resippy/utils/csv_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/utils/csv_utils.py -------------------------------------------------------------------------------- /resippy/utils/envi_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/utils/envi_utils.py -------------------------------------------------------------------------------- /resippy/utils/file_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/utils/file_utils.py -------------------------------------------------------------------------------- /resippy/utils/geom_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/utils/geom_utils.py -------------------------------------------------------------------------------- /resippy/utils/image_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resippy/utils/image_utils/image_chipper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/utils/image_utils/image_chipper.py -------------------------------------------------------------------------------- /resippy/utils/image_utils/image_mask_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/utils/image_utils/image_mask_utils.py -------------------------------------------------------------------------------- /resippy/utils/image_utils/image_registration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/utils/image_utils/image_registration.py -------------------------------------------------------------------------------- /resippy/utils/image_utils/image_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/utils/image_utils/image_utils.py -------------------------------------------------------------------------------- /resippy/utils/numpy_and_array_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/utils/numpy_and_array_utils.py -------------------------------------------------------------------------------- /resippy/utils/photogrammetry_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/utils/photogrammetry_utils.py -------------------------------------------------------------------------------- /resippy/utils/physical_camera_simulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/utils/physical_camera_simulator.py -------------------------------------------------------------------------------- /resippy/utils/pix4d_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/utils/pix4d_utils.py -------------------------------------------------------------------------------- /resippy/utils/plot_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resippy/utils/proj_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/utils/proj_utils.py -------------------------------------------------------------------------------- /resippy/utils/spectral_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/utils/spectral_utils.py -------------------------------------------------------------------------------- /resippy/utils/string_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/utils/string_utils.py -------------------------------------------------------------------------------- /resippy/utils/time_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/utils/time_utils.py -------------------------------------------------------------------------------- /resippy/utils/units/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/utils/units/__init__.py -------------------------------------------------------------------------------- /resippy/utils/units/unit_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/utils/units/unit_constants.py -------------------------------------------------------------------------------- /resippy/utils/units/unit_defs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/resippy/utils/units/unit_defs.txt -------------------------------------------------------------------------------- /rtd_environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/rtd_environment.yml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/demo_tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/tests/demo_tests/__init__.py -------------------------------------------------------------------------------- /tests/demo_tests/pixel_to_world_demo_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/tests/demo_tests/pixel_to_world_demo_tests.py -------------------------------------------------------------------------------- /tests/demo_tests/test_chipper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/tests/demo_tests/test_chipper.py -------------------------------------------------------------------------------- /tests/demo_tests/test_spectral_factories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/tests/demo_tests/test_spectral_factories.py -------------------------------------------------------------------------------- /tests/demos/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/demos/camera_simulator_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/tests/demos/camera_simulator_demo.py -------------------------------------------------------------------------------- /tests/demos/chipout_overhead_vehicles_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/tests/demos/chipout_overhead_vehicles_train.py -------------------------------------------------------------------------------- /tests/demos/chipout_overhead_vehicles_val.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/tests/demos/chipout_overhead_vehicles_val.py -------------------------------------------------------------------------------- /tests/demos/colormap_image_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/tests/demos/colormap_image_demo.py -------------------------------------------------------------------------------- /tests/demos/digital_globe_demos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/tests/demos/digital_globe_demos.py -------------------------------------------------------------------------------- /tests/demos/envi_image_demos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/tests/demos/envi_image_demos.py -------------------------------------------------------------------------------- /tests/demos/gtiff_demos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/tests/demos/gtiff_demos.py -------------------------------------------------------------------------------- /tests/demos/micasense_ortho_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/tests/demos/micasense_ortho_demo.py -------------------------------------------------------------------------------- /tests/demos/mutual_information_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/tests/demos/mutual_information_demo.py -------------------------------------------------------------------------------- /tests/demos/pass_0_correct_boresights.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/tests/demos/pass_0_correct_boresights.tif -------------------------------------------------------------------------------- /tests/demos/pass_1_correct_boresights.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/tests/demos/pass_1_correct_boresights.tif -------------------------------------------------------------------------------- /tests/demos/physical_camera_to_igm_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/tests/demos/physical_camera_to_igm_demo.py -------------------------------------------------------------------------------- /tests/demos/pixels_obstructed_by_dem_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/tests/demos/pixels_obstructed_by_dem_demo.py -------------------------------------------------------------------------------- /tests/demos/spectral_target_detection_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/tests/demos/spectral_target_detection_demo.py -------------------------------------------------------------------------------- /tests/run_all_demo_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/tests/run_all_demo_tests.py -------------------------------------------------------------------------------- /tests/run_all_demos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/tests/run_all_demos.py -------------------------------------------------------------------------------- /tests/run_all_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/tests/run_all_tests.py -------------------------------------------------------------------------------- /tests/run_all_timings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/tests/run_all_timings.py -------------------------------------------------------------------------------- /tests/run_everything.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/tests/run_everything.py -------------------------------------------------------------------------------- /tests/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/test_defined_units.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/tests/tests/test_defined_units.py -------------------------------------------------------------------------------- /tests/tests/test_fixtured_camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/tests/tests/test_fixtured_camera.py -------------------------------------------------------------------------------- /tests/tests/test_geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/tests/tests/test_geometry.py -------------------------------------------------------------------------------- /tests/tests/test_geotiff_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/tests/tests/test_geotiff_images.py -------------------------------------------------------------------------------- /tests/tests/test_photogram_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/tests/tests/test_photogram_utils.py -------------------------------------------------------------------------------- /tests/tests/test_point_calcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/tests/tests/test_point_calcs.py -------------------------------------------------------------------------------- /tests/tests/test_spectral.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/tests/tests/test_spectral.py -------------------------------------------------------------------------------- /tests/timings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/timings/test_point_calc_timings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeamIO-Inc/resippy/HEAD/tests/timings/test_point_calc_timings.py --------------------------------------------------------------------------------