├── .flake8 ├── .gitignore ├── .pre-commit-config.yaml ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE.md ├── README.md ├── SUPPORT.md ├── aces ├── __init__.py └── idt │ ├── __init__.py │ ├── application.py │ ├── core │ ├── __init__.py │ ├── common.py │ ├── constants.py │ ├── structures.py │ └── transform_id.py │ ├── framework │ ├── __init__.py │ └── project_settings.py │ └── generators │ ├── __init__.py │ ├── base_generator.py │ ├── log_camera.py │ ├── prelinearized_idt.py │ └── tonemapped_idt.py ├── app.py ├── apps ├── __init__.py ├── common.py ├── idt_calculator_camera.py └── idt_calculator_p_2013_001.py ├── assets ├── aces-logo.png └── custom.css ├── docker-compose.yml ├── docs └── _static │ ├── idt_archive_explicit_json_file.png │ ├── idt_archive_explicit_json_file_floating_point_ev.png │ ├── idt_archive_explicit_structure.png │ ├── idt_archive_implicit_structure.png │ ├── idt_archive_implicit_structure_fractional_ev.png │ ├── idt_calculator_p_2013_001.png │ └── idt_calculator_prosumer_camera.png ├── index.py ├── pyproject.toml ├── requirements.txt ├── tasks.py └── tests ├── __init__.py ├── resources ├── download_manifest.json ├── example_from_folder.json ├── project_settings.json ├── samples_analysis.json ├── samples_camera.json ├── samples_decoded_clipped.json ├── samples_reference.json ├── synthetic_001.zip ├── synthetic_001 │ ├── data │ │ ├── colour_checker │ │ │ ├── 0 │ │ │ │ ├── colour_checker_0001.tif │ │ │ │ ├── colour_checker_0002.tif │ │ │ │ └── colour_checker_0003.tif │ │ │ ├── 1 │ │ │ │ ├── colour_checker_0001.tif │ │ │ │ ├── colour_checker_0002.tif │ │ │ │ └── colour_checker_0003.tif │ │ │ ├── 2 │ │ │ │ ├── colour_checker_0001.tif │ │ │ │ ├── colour_checker_0002.tif │ │ │ │ └── colour_checker_0003.tif │ │ │ ├── 3 │ │ │ │ ├── colour_checker_0001.tif │ │ │ │ ├── colour_checker_0002.tif │ │ │ │ └── colour_checker_0003.tif │ │ │ ├── -1 │ │ │ │ ├── colour_checker_0001.tif │ │ │ │ ├── colour_checker_0002.tif │ │ │ │ └── colour_checker_0003.tif │ │ │ ├── -2 │ │ │ │ ├── colour_checker_0001.tif │ │ │ │ ├── colour_checker_0002.tif │ │ │ │ └── colour_checker_0003.tif │ │ │ └── -3 │ │ │ │ ├── colour_checker_0001.tif │ │ │ │ ├── colour_checker_0002.tif │ │ │ │ └── colour_checker_0003.tif │ │ └── grey_card │ │ │ ├── grey_card_0001.tif │ │ │ ├── grey_card_0002.tif │ │ │ └── grey_card_0003.tif │ ├── synthetic_001.json │ └── test_project.json ├── synthetic_002.zip ├── synthetic_002 │ ├── data │ │ └── colour_checker │ │ │ ├── -0.75 │ │ │ └── colour_checker_0001.tif │ │ │ ├── -2.125 │ │ │ └── colour_checker_0001.tif │ │ │ ├── -3.25 │ │ │ └── colour_checker_0001.tif │ │ │ ├── 0.333 │ │ │ └── colour_checker_0001.tif │ │ │ ├── 1.75 │ │ │ └── colour_checker_0001.tif │ │ │ ├── 2.25 │ │ │ └── colour_checker_0001.tif │ │ │ └── 3.4 │ │ │ └── colour_checker_0001.tif │ └── synthetic_002.json ├── synthetic_003.zip ├── synthetic_003 │ ├── data │ │ ├── colour_checker │ │ │ ├── 0 │ │ │ │ └── colour_checker_0001.tif │ │ │ ├── 1 │ │ │ │ └── colour_checker_0001.tif │ │ │ ├── 2 │ │ │ │ └── colour_checker_0001.tif │ │ │ ├── 3 │ │ │ │ └── colour_checker_0001.tif │ │ │ ├── -1 │ │ │ │ └── colour_checker_0001.tif │ │ │ ├── -2 │ │ │ │ └── colour_checker_0001.tif │ │ │ └── -3 │ │ │ │ └── colour_checker_0001.tif │ │ └── grey_card │ │ │ └── grey_card_0001.tif │ └── synthetic_003.json ├── synthetic_004.zip └── synthetic_004 │ └── data │ ├── colour_checker │ ├── 0 │ │ └── colour_checker_0001.tif │ ├── 1 │ │ └── colour_checker_0001.tif │ ├── 2 │ │ └── colour_checker_0001.tif │ ├── 3 │ │ └── colour_checker_0001.tif │ ├── -1 │ │ └── colour_checker_0001.tif │ ├── -2 │ │ └── colour_checker_0001.tif │ └── -3 │ │ └── colour_checker_0001.tif │ └── grey_card │ └── grey_card_0001.tif ├── test_application.py ├── test_common.py ├── test_constants.py ├── test_project_settings.py └── test_utils.py /.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length = 88 3 | extend-ignore = E203 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/README.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /aces/__init__.py: -------------------------------------------------------------------------------- 1 | import matplotlib as mpl 2 | 3 | mpl.use("Agg") 4 | -------------------------------------------------------------------------------- /aces/idt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/aces/idt/__init__.py -------------------------------------------------------------------------------- /aces/idt/application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/aces/idt/application.py -------------------------------------------------------------------------------- /aces/idt/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/aces/idt/core/__init__.py -------------------------------------------------------------------------------- /aces/idt/core/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/aces/idt/core/common.py -------------------------------------------------------------------------------- /aces/idt/core/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/aces/idt/core/constants.py -------------------------------------------------------------------------------- /aces/idt/core/structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/aces/idt/core/structures.py -------------------------------------------------------------------------------- /aces/idt/core/transform_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/aces/idt/core/transform_id.py -------------------------------------------------------------------------------- /aces/idt/framework/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/aces/idt/framework/__init__.py -------------------------------------------------------------------------------- /aces/idt/framework/project_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/aces/idt/framework/project_settings.py -------------------------------------------------------------------------------- /aces/idt/generators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/aces/idt/generators/__init__.py -------------------------------------------------------------------------------- /aces/idt/generators/base_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/aces/idt/generators/base_generator.py -------------------------------------------------------------------------------- /aces/idt/generators/log_camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/aces/idt/generators/log_camera.py -------------------------------------------------------------------------------- /aces/idt/generators/prelinearized_idt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/aces/idt/generators/prelinearized_idt.py -------------------------------------------------------------------------------- /aces/idt/generators/tonemapped_idt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/aces/idt/generators/tonemapped_idt.py -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/app.py -------------------------------------------------------------------------------- /apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/apps/common.py -------------------------------------------------------------------------------- /apps/idt_calculator_camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/apps/idt_calculator_camera.py -------------------------------------------------------------------------------- /apps/idt_calculator_p_2013_001.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/apps/idt_calculator_p_2013_001.py -------------------------------------------------------------------------------- /assets/aces-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/assets/aces-logo.png -------------------------------------------------------------------------------- /assets/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/assets/custom.css -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/_static/idt_archive_explicit_json_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/docs/_static/idt_archive_explicit_json_file.png -------------------------------------------------------------------------------- /docs/_static/idt_archive_explicit_json_file_floating_point_ev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/docs/_static/idt_archive_explicit_json_file_floating_point_ev.png -------------------------------------------------------------------------------- /docs/_static/idt_archive_explicit_structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/docs/_static/idt_archive_explicit_structure.png -------------------------------------------------------------------------------- /docs/_static/idt_archive_implicit_structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/docs/_static/idt_archive_implicit_structure.png -------------------------------------------------------------------------------- /docs/_static/idt_archive_implicit_structure_fractional_ev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/docs/_static/idt_archive_implicit_structure_fractional_ev.png -------------------------------------------------------------------------------- /docs/_static/idt_calculator_p_2013_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/docs/_static/idt_calculator_p_2013_001.png -------------------------------------------------------------------------------- /docs/_static/idt_calculator_prosumer_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/docs/_static/idt_calculator_prosumer_camera.png -------------------------------------------------------------------------------- /index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/index.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/requirements.txt -------------------------------------------------------------------------------- /tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/tasks.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/resources/download_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/tests/resources/download_manifest.json -------------------------------------------------------------------------------- /tests/resources/example_from_folder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/tests/resources/example_from_folder.json -------------------------------------------------------------------------------- /tests/resources/project_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/tests/resources/project_settings.json -------------------------------------------------------------------------------- /tests/resources/samples_analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/tests/resources/samples_analysis.json -------------------------------------------------------------------------------- /tests/resources/samples_camera.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/tests/resources/samples_camera.json -------------------------------------------------------------------------------- /tests/resources/samples_decoded_clipped.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/tests/resources/samples_decoded_clipped.json -------------------------------------------------------------------------------- /tests/resources/samples_reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/tests/resources/samples_reference.json -------------------------------------------------------------------------------- /tests/resources/synthetic_001.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/tests/resources/synthetic_001.zip -------------------------------------------------------------------------------- /tests/resources/synthetic_001/data/colour_checker/-1/colour_checker_0001.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/tests/resources/synthetic_001/data/colour_checker/-1/colour_checker_0001.tif -------------------------------------------------------------------------------- /tests/resources/synthetic_001/data/colour_checker/-1/colour_checker_0002.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/tests/resources/synthetic_001/data/colour_checker/-1/colour_checker_0002.tif -------------------------------------------------------------------------------- /tests/resources/synthetic_001/data/colour_checker/-1/colour_checker_0003.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/tests/resources/synthetic_001/data/colour_checker/-1/colour_checker_0003.tif -------------------------------------------------------------------------------- /tests/resources/synthetic_001/data/colour_checker/-2/colour_checker_0001.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/tests/resources/synthetic_001/data/colour_checker/-2/colour_checker_0001.tif -------------------------------------------------------------------------------- /tests/resources/synthetic_001/data/colour_checker/-2/colour_checker_0002.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/tests/resources/synthetic_001/data/colour_checker/-2/colour_checker_0002.tif -------------------------------------------------------------------------------- /tests/resources/synthetic_001/data/colour_checker/-2/colour_checker_0003.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/tests/resources/synthetic_001/data/colour_checker/-2/colour_checker_0003.tif -------------------------------------------------------------------------------- /tests/resources/synthetic_001/data/colour_checker/-3/colour_checker_0001.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/tests/resources/synthetic_001/data/colour_checker/-3/colour_checker_0001.tif -------------------------------------------------------------------------------- /tests/resources/synthetic_001/data/colour_checker/-3/colour_checker_0002.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/tests/resources/synthetic_001/data/colour_checker/-3/colour_checker_0002.tif -------------------------------------------------------------------------------- /tests/resources/synthetic_001/data/colour_checker/-3/colour_checker_0003.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/tests/resources/synthetic_001/data/colour_checker/-3/colour_checker_0003.tif -------------------------------------------------------------------------------- /tests/resources/synthetic_001/data/colour_checker/0/colour_checker_0001.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/tests/resources/synthetic_001/data/colour_checker/0/colour_checker_0001.tif -------------------------------------------------------------------------------- /tests/resources/synthetic_001/data/colour_checker/0/colour_checker_0002.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/tests/resources/synthetic_001/data/colour_checker/0/colour_checker_0002.tif -------------------------------------------------------------------------------- /tests/resources/synthetic_001/data/colour_checker/0/colour_checker_0003.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/tests/resources/synthetic_001/data/colour_checker/0/colour_checker_0003.tif -------------------------------------------------------------------------------- /tests/resources/synthetic_001/data/colour_checker/1/colour_checker_0001.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/tests/resources/synthetic_001/data/colour_checker/1/colour_checker_0001.tif -------------------------------------------------------------------------------- /tests/resources/synthetic_001/data/colour_checker/1/colour_checker_0002.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/tests/resources/synthetic_001/data/colour_checker/1/colour_checker_0002.tif -------------------------------------------------------------------------------- /tests/resources/synthetic_001/data/colour_checker/1/colour_checker_0003.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/tests/resources/synthetic_001/data/colour_checker/1/colour_checker_0003.tif -------------------------------------------------------------------------------- /tests/resources/synthetic_001/data/colour_checker/2/colour_checker_0001.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/tests/resources/synthetic_001/data/colour_checker/2/colour_checker_0001.tif -------------------------------------------------------------------------------- /tests/resources/synthetic_001/data/colour_checker/2/colour_checker_0002.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/tests/resources/synthetic_001/data/colour_checker/2/colour_checker_0002.tif -------------------------------------------------------------------------------- /tests/resources/synthetic_001/data/colour_checker/2/colour_checker_0003.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/tests/resources/synthetic_001/data/colour_checker/2/colour_checker_0003.tif -------------------------------------------------------------------------------- /tests/resources/synthetic_001/data/colour_checker/3/colour_checker_0001.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/tests/resources/synthetic_001/data/colour_checker/3/colour_checker_0001.tif -------------------------------------------------------------------------------- /tests/resources/synthetic_001/data/colour_checker/3/colour_checker_0002.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/tests/resources/synthetic_001/data/colour_checker/3/colour_checker_0002.tif -------------------------------------------------------------------------------- /tests/resources/synthetic_001/data/colour_checker/3/colour_checker_0003.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/tests/resources/synthetic_001/data/colour_checker/3/colour_checker_0003.tif -------------------------------------------------------------------------------- /tests/resources/synthetic_001/data/grey_card/grey_card_0001.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/tests/resources/synthetic_001/data/grey_card/grey_card_0001.tif -------------------------------------------------------------------------------- /tests/resources/synthetic_001/data/grey_card/grey_card_0002.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/tests/resources/synthetic_001/data/grey_card/grey_card_0002.tif -------------------------------------------------------------------------------- /tests/resources/synthetic_001/data/grey_card/grey_card_0003.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/tests/resources/synthetic_001/data/grey_card/grey_card_0003.tif -------------------------------------------------------------------------------- /tests/resources/synthetic_001/synthetic_001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/tests/resources/synthetic_001/synthetic_001.json -------------------------------------------------------------------------------- /tests/resources/synthetic_001/test_project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/tests/resources/synthetic_001/test_project.json -------------------------------------------------------------------------------- /tests/resources/synthetic_002.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/tests/resources/synthetic_002.zip -------------------------------------------------------------------------------- /tests/resources/synthetic_002/data/colour_checker/-0.75/colour_checker_0001.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/tests/resources/synthetic_002/data/colour_checker/-0.75/colour_checker_0001.tif -------------------------------------------------------------------------------- /tests/resources/synthetic_002/data/colour_checker/-2.125/colour_checker_0001.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/tests/resources/synthetic_002/data/colour_checker/-2.125/colour_checker_0001.tif -------------------------------------------------------------------------------- /tests/resources/synthetic_002/data/colour_checker/-3.25/colour_checker_0001.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/tests/resources/synthetic_002/data/colour_checker/-3.25/colour_checker_0001.tif -------------------------------------------------------------------------------- /tests/resources/synthetic_002/data/colour_checker/0.333/colour_checker_0001.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/tests/resources/synthetic_002/data/colour_checker/0.333/colour_checker_0001.tif -------------------------------------------------------------------------------- /tests/resources/synthetic_002/data/colour_checker/1.75/colour_checker_0001.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/tests/resources/synthetic_002/data/colour_checker/1.75/colour_checker_0001.tif -------------------------------------------------------------------------------- /tests/resources/synthetic_002/data/colour_checker/2.25/colour_checker_0001.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/tests/resources/synthetic_002/data/colour_checker/2.25/colour_checker_0001.tif -------------------------------------------------------------------------------- /tests/resources/synthetic_002/data/colour_checker/3.4/colour_checker_0001.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/tests/resources/synthetic_002/data/colour_checker/3.4/colour_checker_0001.tif -------------------------------------------------------------------------------- /tests/resources/synthetic_002/synthetic_002.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/tests/resources/synthetic_002/synthetic_002.json -------------------------------------------------------------------------------- /tests/resources/synthetic_003.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/tests/resources/synthetic_003.zip -------------------------------------------------------------------------------- /tests/resources/synthetic_003/data/colour_checker/-1/colour_checker_0001.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/tests/resources/synthetic_003/data/colour_checker/-1/colour_checker_0001.tif -------------------------------------------------------------------------------- /tests/resources/synthetic_003/data/colour_checker/-2/colour_checker_0001.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/tests/resources/synthetic_003/data/colour_checker/-2/colour_checker_0001.tif -------------------------------------------------------------------------------- /tests/resources/synthetic_003/data/colour_checker/-3/colour_checker_0001.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/tests/resources/synthetic_003/data/colour_checker/-3/colour_checker_0001.tif -------------------------------------------------------------------------------- /tests/resources/synthetic_003/data/colour_checker/0/colour_checker_0001.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/tests/resources/synthetic_003/data/colour_checker/0/colour_checker_0001.tif -------------------------------------------------------------------------------- /tests/resources/synthetic_003/data/colour_checker/1/colour_checker_0001.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/tests/resources/synthetic_003/data/colour_checker/1/colour_checker_0001.tif -------------------------------------------------------------------------------- /tests/resources/synthetic_003/data/colour_checker/2/colour_checker_0001.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/tests/resources/synthetic_003/data/colour_checker/2/colour_checker_0001.tif -------------------------------------------------------------------------------- /tests/resources/synthetic_003/data/colour_checker/3/colour_checker_0001.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/tests/resources/synthetic_003/data/colour_checker/3/colour_checker_0001.tif -------------------------------------------------------------------------------- /tests/resources/synthetic_003/data/grey_card/grey_card_0001.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/tests/resources/synthetic_003/data/grey_card/grey_card_0001.tif -------------------------------------------------------------------------------- /tests/resources/synthetic_003/synthetic_003.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/tests/resources/synthetic_003/synthetic_003.json -------------------------------------------------------------------------------- /tests/resources/synthetic_004.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/tests/resources/synthetic_004.zip -------------------------------------------------------------------------------- /tests/resources/synthetic_004/data/colour_checker/-1/colour_checker_0001.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/tests/resources/synthetic_004/data/colour_checker/-1/colour_checker_0001.tif -------------------------------------------------------------------------------- /tests/resources/synthetic_004/data/colour_checker/-2/colour_checker_0001.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/tests/resources/synthetic_004/data/colour_checker/-2/colour_checker_0001.tif -------------------------------------------------------------------------------- /tests/resources/synthetic_004/data/colour_checker/-3/colour_checker_0001.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/tests/resources/synthetic_004/data/colour_checker/-3/colour_checker_0001.tif -------------------------------------------------------------------------------- /tests/resources/synthetic_004/data/colour_checker/0/colour_checker_0001.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/tests/resources/synthetic_004/data/colour_checker/0/colour_checker_0001.tif -------------------------------------------------------------------------------- /tests/resources/synthetic_004/data/colour_checker/1/colour_checker_0001.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/tests/resources/synthetic_004/data/colour_checker/1/colour_checker_0001.tif -------------------------------------------------------------------------------- /tests/resources/synthetic_004/data/colour_checker/2/colour_checker_0001.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/tests/resources/synthetic_004/data/colour_checker/2/colour_checker_0001.tif -------------------------------------------------------------------------------- /tests/resources/synthetic_004/data/colour_checker/3/colour_checker_0001.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/tests/resources/synthetic_004/data/colour_checker/3/colour_checker_0001.tif -------------------------------------------------------------------------------- /tests/resources/synthetic_004/data/grey_card/grey_card_0001.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/tests/resources/synthetic_004/data/grey_card/grey_card_0001.tif -------------------------------------------------------------------------------- /tests/test_application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/tests/test_application.py -------------------------------------------------------------------------------- /tests/test_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/tests/test_common.py -------------------------------------------------------------------------------- /tests/test_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/tests/test_constants.py -------------------------------------------------------------------------------- /tests/test_project_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/tests/test_project_settings.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ampas/idt-calculator/HEAD/tests/test_utils.py --------------------------------------------------------------------------------