├── .gitignore ├── .python-version ├── LICENSE ├── Makefile ├── README.md ├── docs ├── api_example.ipynb ├── build_and_publish.md ├── masked_pca_demo.ipynb ├── model_comparison.ipynb ├── reading_outputs.ipynb ├── resources │ ├── combined_image.jpg │ ├── dinov2.jpg │ ├── masked_pca.png │ ├── model_comparison.png │ ├── siglip2.jpg │ └── sintel_out.mp4 ├── scripts │ └── combine_images.py ├── vis_combo.mp4 └── vis_demo.ipynb ├── pyproject.toml ├── pytest.ini ├── src └── dinotool │ ├── __init__.py │ ├── __main__.py │ ├── cli.py │ ├── data.py │ ├── model.py │ └── utils.py ├── test ├── __init__.py ├── data │ ├── bird1.jpg │ ├── bird2.jpg │ ├── bird3.jpg │ ├── cooking_droid_speed.mp4 │ ├── drone_images │ │ ├── Hiidenportti_133.png │ │ ├── Hiidenportti_159.png │ │ └── Hiidenportti_200.png │ ├── helsinki.png │ ├── helsinki2.png │ ├── helsinki3.png │ ├── helsinki4.png │ ├── helsinki5.png │ ├── helsinki6.png │ ├── imagefolder │ │ ├── Hiidenportti_200.png │ │ ├── bird1.jpg │ │ ├── magpie.png │ │ ├── suo.tif │ │ └── test.jpg │ ├── inconsistent_sizes_vid │ │ ├── 00000.jpg │ │ └── 00001.jpg │ ├── magpie.jpg │ ├── nasa.mp4 │ ├── nasa_frames │ │ ├── 00000.jpg │ │ ├── 00001.jpg │ │ ├── 00002.jpg │ │ ├── 00003.jpg │ │ ├── 00004.jpg │ │ ├── 00005.jpg │ │ ├── 00006.jpg │ │ ├── 00007.jpg │ │ ├── 00008.jpg │ │ ├── 00009.jpg │ │ ├── 00010.jpg │ │ ├── 00011.jpg │ │ ├── 00012.jpg │ │ ├── 00013.jpg │ │ ├── 00014.jpg │ │ ├── 00015.jpg │ │ ├── 00016.jpg │ │ ├── 00017.jpg │ │ ├── 00018.jpg │ │ ├── 00019.jpg │ │ ├── 00020.jpg │ │ ├── 00021.jpg │ │ ├── 00022.jpg │ │ ├── 00023.jpg │ │ ├── 00024.jpg │ │ ├── 00025.jpg │ │ ├── 00026.jpg │ │ ├── 00027.jpg │ │ ├── 00028.jpg │ │ ├── 00029.jpg │ │ ├── 00030.jpg │ │ ├── 00031.jpg │ │ ├── 00032.jpg │ │ ├── 00033.jpg │ │ ├── 00034.jpg │ │ ├── 00035.jpg │ │ ├── 00036.jpg │ │ ├── 00037.jpg │ │ ├── 00038.jpg │ │ ├── 00039.jpg │ │ ├── 00040.jpg │ │ ├── 00041.jpg │ │ ├── 00042.jpg │ │ ├── 00043.jpg │ │ ├── 00044.jpg │ │ ├── 00045.jpg │ │ ├── 00046.jpg │ │ ├── 00047.jpg │ │ ├── 00048.jpg │ │ ├── 00049.jpg │ │ ├── 00050.jpg │ │ ├── 00051.jpg │ │ ├── 00052.jpg │ │ ├── 00053.jpg │ │ ├── 00054.jpg │ │ ├── 00055.jpg │ │ ├── 00056.jpg │ │ ├── 00057.jpg │ │ ├── 00058.jpg │ │ ├── 00059.jpg │ │ ├── 00060.jpg │ │ ├── 00061.jpg │ │ ├── 00062.jpg │ │ ├── 00063.jpg │ │ ├── 00064.jpg │ │ ├── 00065.jpg │ │ ├── 00066.jpg │ │ ├── 00067.jpg │ │ ├── 00068.jpg │ │ ├── 00069.jpg │ │ ├── 00070.jpg │ │ ├── 00071.jpg │ │ ├── 00072.jpg │ │ ├── 00073.jpg │ │ ├── 00074.jpg │ │ ├── 00075.jpg │ │ ├── 00076.jpg │ │ ├── 00077.jpg │ │ ├── 00078.jpg │ │ ├── 00079.jpg │ │ ├── 00080.jpg │ │ ├── 00081.jpg │ │ ├── 00082.jpg │ │ ├── 00083.jpg │ │ ├── 00084.jpg │ │ ├── 00085.jpg │ │ ├── 00086.jpg │ │ ├── 00087.jpg │ │ ├── 00088.jpg │ │ └── 00089.jpg │ ├── nasa_frames_small │ │ ├── 00000.jpg │ │ ├── 00001.jpg │ │ ├── 00002.jpg │ │ ├── 00003.jpg │ │ ├── 00004.jpg │ │ ├── 00005.jpg │ │ ├── 00006.jpg │ │ ├── 00007.jpg │ │ └── 00008.jpg │ ├── pepper.png │ ├── sintel.avi │ ├── sintel.mov │ ├── sintel.mp4 │ ├── sintel2.mp4 │ ├── still_life.png │ └── still_life_big.jpg ├── test_all_python.sh ├── test_backbones_global.py ├── test_backbones_local.py ├── test_cases.md ├── test_data.py ├── test_end_to_end │ ├── test_image.py │ ├── test_imagedir.py │ ├── test_videodir.py │ └── test_videofile.py ├── test_model.py └── utils.py └── uv.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.12 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/README.md -------------------------------------------------------------------------------- /docs/api_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/docs/api_example.ipynb -------------------------------------------------------------------------------- /docs/build_and_publish.md: -------------------------------------------------------------------------------- 1 | uv build 2 | uvx twine upload --repository pypi dist/* -------------------------------------------------------------------------------- /docs/masked_pca_demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/docs/masked_pca_demo.ipynb -------------------------------------------------------------------------------- /docs/model_comparison.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/docs/model_comparison.ipynb -------------------------------------------------------------------------------- /docs/reading_outputs.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/docs/reading_outputs.ipynb -------------------------------------------------------------------------------- /docs/resources/combined_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/docs/resources/combined_image.jpg -------------------------------------------------------------------------------- /docs/resources/dinov2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/docs/resources/dinov2.jpg -------------------------------------------------------------------------------- /docs/resources/masked_pca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/docs/resources/masked_pca.png -------------------------------------------------------------------------------- /docs/resources/model_comparison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/docs/resources/model_comparison.png -------------------------------------------------------------------------------- /docs/resources/siglip2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/docs/resources/siglip2.jpg -------------------------------------------------------------------------------- /docs/resources/sintel_out.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/docs/resources/sintel_out.mp4 -------------------------------------------------------------------------------- /docs/scripts/combine_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/docs/scripts/combine_images.py -------------------------------------------------------------------------------- /docs/vis_combo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/docs/vis_combo.mp4 -------------------------------------------------------------------------------- /docs/vis_demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/docs/vis_demo.ipynb -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/pytest.ini -------------------------------------------------------------------------------- /src/dinotool/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/src/dinotool/__init__.py -------------------------------------------------------------------------------- /src/dinotool/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/src/dinotool/__main__.py -------------------------------------------------------------------------------- /src/dinotool/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/src/dinotool/cli.py -------------------------------------------------------------------------------- /src/dinotool/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/src/dinotool/data.py -------------------------------------------------------------------------------- /src/dinotool/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/src/dinotool/model.py -------------------------------------------------------------------------------- /src/dinotool/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/src/dinotool/utils.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/data/bird1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/bird1.jpg -------------------------------------------------------------------------------- /test/data/bird2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/bird2.jpg -------------------------------------------------------------------------------- /test/data/bird3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/bird3.jpg -------------------------------------------------------------------------------- /test/data/cooking_droid_speed.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/cooking_droid_speed.mp4 -------------------------------------------------------------------------------- /test/data/drone_images/Hiidenportti_133.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/drone_images/Hiidenportti_133.png -------------------------------------------------------------------------------- /test/data/drone_images/Hiidenportti_159.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/drone_images/Hiidenportti_159.png -------------------------------------------------------------------------------- /test/data/drone_images/Hiidenportti_200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/drone_images/Hiidenportti_200.png -------------------------------------------------------------------------------- /test/data/helsinki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/helsinki.png -------------------------------------------------------------------------------- /test/data/helsinki2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/helsinki2.png -------------------------------------------------------------------------------- /test/data/helsinki3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/helsinki3.png -------------------------------------------------------------------------------- /test/data/helsinki4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/helsinki4.png -------------------------------------------------------------------------------- /test/data/helsinki5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/helsinki5.png -------------------------------------------------------------------------------- /test/data/helsinki6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/helsinki6.png -------------------------------------------------------------------------------- /test/data/imagefolder/Hiidenportti_200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/imagefolder/Hiidenportti_200.png -------------------------------------------------------------------------------- /test/data/imagefolder/bird1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/imagefolder/bird1.jpg -------------------------------------------------------------------------------- /test/data/imagefolder/magpie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/imagefolder/magpie.png -------------------------------------------------------------------------------- /test/data/imagefolder/suo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/imagefolder/suo.tif -------------------------------------------------------------------------------- /test/data/imagefolder/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/imagefolder/test.jpg -------------------------------------------------------------------------------- /test/data/inconsistent_sizes_vid/00000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/inconsistent_sizes_vid/00000.jpg -------------------------------------------------------------------------------- /test/data/inconsistent_sizes_vid/00001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/inconsistent_sizes_vid/00001.jpg -------------------------------------------------------------------------------- /test/data/magpie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/magpie.jpg -------------------------------------------------------------------------------- /test/data/nasa.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa.mp4 -------------------------------------------------------------------------------- /test/data/nasa_frames/00000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00000.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00001.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00002.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00003.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00004.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00005.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00006.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00007.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00007.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00008.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00009.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00009.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00010.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00010.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00011.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00011.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00012.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00012.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00013.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00013.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00014.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00014.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00015.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00015.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00016.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00016.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00017.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00017.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00018.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00018.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00019.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00019.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00020.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00020.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00021.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00021.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00022.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00022.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00023.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00023.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00024.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00024.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00025.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00025.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00026.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00026.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00027.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00027.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00028.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00028.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00029.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00029.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00030.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00030.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00031.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00031.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00032.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00032.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00033.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00033.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00034.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00034.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00035.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00035.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00036.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00036.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00037.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00037.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00038.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00038.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00039.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00039.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00040.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00040.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00041.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00041.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00042.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00042.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00043.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00043.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00044.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00044.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00045.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00045.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00046.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00046.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00047.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00047.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00048.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00048.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00049.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00049.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00050.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00050.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00051.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00051.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00052.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00052.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00053.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00053.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00054.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00054.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00055.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00055.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00056.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00056.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00057.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00057.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00058.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00058.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00059.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00059.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00060.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00060.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00061.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00061.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00062.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00062.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00063.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00063.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00064.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00064.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00065.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00065.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00066.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00066.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00067.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00067.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00068.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00068.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00069.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00069.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00070.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00070.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00071.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00071.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00072.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00072.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00073.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00073.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00074.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00074.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00075.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00075.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00076.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00076.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00077.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00077.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00078.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00078.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00079.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00079.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00080.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00080.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00081.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00081.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00082.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00082.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00083.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00083.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00084.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00084.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00085.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00085.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00086.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00086.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00087.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00087.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00088.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00088.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames/00089.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames/00089.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames_small/00000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames_small/00000.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames_small/00001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames_small/00001.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames_small/00002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames_small/00002.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames_small/00003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames_small/00003.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames_small/00004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames_small/00004.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames_small/00005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames_small/00005.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames_small/00006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames_small/00006.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames_small/00007.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames_small/00007.jpg -------------------------------------------------------------------------------- /test/data/nasa_frames_small/00008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/nasa_frames_small/00008.jpg -------------------------------------------------------------------------------- /test/data/pepper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/pepper.png -------------------------------------------------------------------------------- /test/data/sintel.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/sintel.avi -------------------------------------------------------------------------------- /test/data/sintel.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/sintel.mov -------------------------------------------------------------------------------- /test/data/sintel.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/sintel.mp4 -------------------------------------------------------------------------------- /test/data/sintel2.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/sintel2.mp4 -------------------------------------------------------------------------------- /test/data/still_life.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/still_life.png -------------------------------------------------------------------------------- /test/data/still_life_big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/data/still_life_big.jpg -------------------------------------------------------------------------------- /test/test_all_python.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/test_all_python.sh -------------------------------------------------------------------------------- /test/test_backbones_global.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/test_backbones_global.py -------------------------------------------------------------------------------- /test/test_backbones_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/test_backbones_local.py -------------------------------------------------------------------------------- /test/test_cases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/test_cases.md -------------------------------------------------------------------------------- /test/test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/test_data.py -------------------------------------------------------------------------------- /test/test_end_to_end/test_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/test_end_to_end/test_image.py -------------------------------------------------------------------------------- /test/test_end_to_end/test_imagedir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/test_end_to_end/test_imagedir.py -------------------------------------------------------------------------------- /test/test_end_to_end/test_videodir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/test_end_to_end/test_videodir.py -------------------------------------------------------------------------------- /test/test_end_to_end/test_videofile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/test_end_to_end/test_videofile.py -------------------------------------------------------------------------------- /test/test_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/test_model.py -------------------------------------------------------------------------------- /test/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/test/utils.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikkoim/dinotool/HEAD/uv.lock --------------------------------------------------------------------------------