├── .gitignore ├── ChangeLog.md ├── LICENSE ├── README.md ├── calibration ├── README.md ├── extract_features.py ├── livehdr.csv ├── nerf.csv ├── train.py └── xr-david.csv ├── example_media ├── SIGGRAPH_wordcloud.png ├── aliasing │ ├── ferris-bicubic-bicubic.mp4 │ ├── ferris-bicubic-nearest.mp4 │ ├── ferris-nearest-bicubic.mp4 │ ├── ferris-nearest-nearest.mp4 │ └── ferris-ref.mp4 ├── cvvdp_logo_250x250_white.png ├── flickering │ ├── ref.mp4 │ ├── test-blur-20.mp4 │ └── test-flicker-20.mp4 ├── nancy_church.hdr ├── structure │ ├── ferris-ref.mp4 │ ├── ferris-test-noise.mp4 │ ├── ferris-test-sat.mp4 │ └── ferris-test-wb.mp4 ├── tree.jpg └── wavy_facade.png ├── examples ├── __init__.py ├── ex_adaptive_chroma_subsampling.py ├── ex_aliasing.py ├── ex_batch_of_images.py ├── ex_blur_over_time.py ├── ex_chroma_subsampling.py ├── ex_display_brightness.py ├── ex_display_geometry.py ├── ex_hdr_images.py ├── ex_image_reconstruction.py ├── ex_luminance_only.py ├── ex_noise_vs_blur.py ├── ex_simple_image.py ├── ex_simple_video.py ├── ex_utils.py └── test_profiler.py ├── imgs ├── chroma_ss.png ├── coarse_jod_scale.png ├── cvvdp_logo_256.png ├── cvvdp_logo_512.png └── fine_jod_scale.png ├── matlab ├── README.md ├── cvvdp.m └── derive_LMS_colourspace │ ├── ciexyz31.csv │ ├── find_LMS_matrix.m │ └── linss2_10e_1.csv ├── metrics.md ├── publish_release.md ├── pycvvdp ├── __init__.py ├── benchmark.bat ├── benchmark.sh ├── benchmark_cluster.sh ├── csf.py ├── csf_cache │ ├── o0_sn1_5_cm0_604562_gpu0.mat │ └── o5_sn1_5_cm0_604562_gpu0.mat ├── cvvdp_metric.py ├── cvvdp_ml_metric.py ├── display_model.py ├── dm_preview_metric.py ├── dump_channels.py ├── interp.py ├── lpyr_dec.py ├── psnr_metric.py ├── run_cvvdp.py ├── ssim_metric.py ├── third_party │ ├── __init__.py │ ├── cpuinfo.py │ ├── loadmat.py │ └── ssim.py ├── utils.py ├── video_source.py ├── video_source_file.py ├── video_source_yuv.py ├── video_writer.py ├── visualize_diff_map.py ├── vq_metric.py └── vvdp_data │ ├── README.md │ ├── color_spaces.json │ ├── csf_lut_dkl_cone.json │ ├── csf_lut_log.json │ ├── csf_lut_none.json │ ├── csf_lut_weber.json │ ├── csf_lut_weber_fixed_size.json │ ├── csf_lut_weber_old.json │ ├── csf_lut_weber_supra.json │ ├── cvvdp_ml_saliency │ └── cvvdp_parameters.json │ ├── cvvdp_ml_transformer │ └── cvvdp_parameters.json │ ├── cvvdp_parameters.json │ └── display_models.json ├── pyproject.toml └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/.gitignore -------------------------------------------------------------------------------- /ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/ChangeLog.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/README.md -------------------------------------------------------------------------------- /calibration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/calibration/README.md -------------------------------------------------------------------------------- /calibration/extract_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/calibration/extract_features.py -------------------------------------------------------------------------------- /calibration/livehdr.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/calibration/livehdr.csv -------------------------------------------------------------------------------- /calibration/nerf.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/calibration/nerf.csv -------------------------------------------------------------------------------- /calibration/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/calibration/train.py -------------------------------------------------------------------------------- /calibration/xr-david.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/calibration/xr-david.csv -------------------------------------------------------------------------------- /example_media/SIGGRAPH_wordcloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/example_media/SIGGRAPH_wordcloud.png -------------------------------------------------------------------------------- /example_media/aliasing/ferris-bicubic-bicubic.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/example_media/aliasing/ferris-bicubic-bicubic.mp4 -------------------------------------------------------------------------------- /example_media/aliasing/ferris-bicubic-nearest.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/example_media/aliasing/ferris-bicubic-nearest.mp4 -------------------------------------------------------------------------------- /example_media/aliasing/ferris-nearest-bicubic.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/example_media/aliasing/ferris-nearest-bicubic.mp4 -------------------------------------------------------------------------------- /example_media/aliasing/ferris-nearest-nearest.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/example_media/aliasing/ferris-nearest-nearest.mp4 -------------------------------------------------------------------------------- /example_media/aliasing/ferris-ref.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/example_media/aliasing/ferris-ref.mp4 -------------------------------------------------------------------------------- /example_media/cvvdp_logo_250x250_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/example_media/cvvdp_logo_250x250_white.png -------------------------------------------------------------------------------- /example_media/flickering/ref.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/example_media/flickering/ref.mp4 -------------------------------------------------------------------------------- /example_media/flickering/test-blur-20.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/example_media/flickering/test-blur-20.mp4 -------------------------------------------------------------------------------- /example_media/flickering/test-flicker-20.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/example_media/flickering/test-flicker-20.mp4 -------------------------------------------------------------------------------- /example_media/nancy_church.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/example_media/nancy_church.hdr -------------------------------------------------------------------------------- /example_media/structure/ferris-ref.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/example_media/structure/ferris-ref.mp4 -------------------------------------------------------------------------------- /example_media/structure/ferris-test-noise.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/example_media/structure/ferris-test-noise.mp4 -------------------------------------------------------------------------------- /example_media/structure/ferris-test-sat.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/example_media/structure/ferris-test-sat.mp4 -------------------------------------------------------------------------------- /example_media/structure/ferris-test-wb.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/example_media/structure/ferris-test-wb.mp4 -------------------------------------------------------------------------------- /example_media/tree.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/example_media/tree.jpg -------------------------------------------------------------------------------- /example_media/wavy_facade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/example_media/wavy_facade.png -------------------------------------------------------------------------------- /examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/ex_adaptive_chroma_subsampling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/examples/ex_adaptive_chroma_subsampling.py -------------------------------------------------------------------------------- /examples/ex_aliasing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/examples/ex_aliasing.py -------------------------------------------------------------------------------- /examples/ex_batch_of_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/examples/ex_batch_of_images.py -------------------------------------------------------------------------------- /examples/ex_blur_over_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/examples/ex_blur_over_time.py -------------------------------------------------------------------------------- /examples/ex_chroma_subsampling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/examples/ex_chroma_subsampling.py -------------------------------------------------------------------------------- /examples/ex_display_brightness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/examples/ex_display_brightness.py -------------------------------------------------------------------------------- /examples/ex_display_geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/examples/ex_display_geometry.py -------------------------------------------------------------------------------- /examples/ex_hdr_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/examples/ex_hdr_images.py -------------------------------------------------------------------------------- /examples/ex_image_reconstruction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/examples/ex_image_reconstruction.py -------------------------------------------------------------------------------- /examples/ex_luminance_only.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/examples/ex_luminance_only.py -------------------------------------------------------------------------------- /examples/ex_noise_vs_blur.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/examples/ex_noise_vs_blur.py -------------------------------------------------------------------------------- /examples/ex_simple_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/examples/ex_simple_image.py -------------------------------------------------------------------------------- /examples/ex_simple_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/examples/ex_simple_video.py -------------------------------------------------------------------------------- /examples/ex_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/examples/ex_utils.py -------------------------------------------------------------------------------- /examples/test_profiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/examples/test_profiler.py -------------------------------------------------------------------------------- /imgs/chroma_ss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/imgs/chroma_ss.png -------------------------------------------------------------------------------- /imgs/coarse_jod_scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/imgs/coarse_jod_scale.png -------------------------------------------------------------------------------- /imgs/cvvdp_logo_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/imgs/cvvdp_logo_256.png -------------------------------------------------------------------------------- /imgs/cvvdp_logo_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/imgs/cvvdp_logo_512.png -------------------------------------------------------------------------------- /imgs/fine_jod_scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/imgs/fine_jod_scale.png -------------------------------------------------------------------------------- /matlab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/matlab/README.md -------------------------------------------------------------------------------- /matlab/cvvdp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/matlab/cvvdp.m -------------------------------------------------------------------------------- /matlab/derive_LMS_colourspace/ciexyz31.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/matlab/derive_LMS_colourspace/ciexyz31.csv -------------------------------------------------------------------------------- /matlab/derive_LMS_colourspace/find_LMS_matrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/matlab/derive_LMS_colourspace/find_LMS_matrix.m -------------------------------------------------------------------------------- /matlab/derive_LMS_colourspace/linss2_10e_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/matlab/derive_LMS_colourspace/linss2_10e_1.csv -------------------------------------------------------------------------------- /metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/metrics.md -------------------------------------------------------------------------------- /publish_release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/publish_release.md -------------------------------------------------------------------------------- /pycvvdp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/pycvvdp/__init__.py -------------------------------------------------------------------------------- /pycvvdp/benchmark.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/pycvvdp/benchmark.bat -------------------------------------------------------------------------------- /pycvvdp/benchmark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/pycvvdp/benchmark.sh -------------------------------------------------------------------------------- /pycvvdp/benchmark_cluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/pycvvdp/benchmark_cluster.sh -------------------------------------------------------------------------------- /pycvvdp/csf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/pycvvdp/csf.py -------------------------------------------------------------------------------- /pycvvdp/csf_cache/o0_sn1_5_cm0_604562_gpu0.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/pycvvdp/csf_cache/o0_sn1_5_cm0_604562_gpu0.mat -------------------------------------------------------------------------------- /pycvvdp/csf_cache/o5_sn1_5_cm0_604562_gpu0.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/pycvvdp/csf_cache/o5_sn1_5_cm0_604562_gpu0.mat -------------------------------------------------------------------------------- /pycvvdp/cvvdp_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/pycvvdp/cvvdp_metric.py -------------------------------------------------------------------------------- /pycvvdp/cvvdp_ml_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/pycvvdp/cvvdp_ml_metric.py -------------------------------------------------------------------------------- /pycvvdp/display_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/pycvvdp/display_model.py -------------------------------------------------------------------------------- /pycvvdp/dm_preview_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/pycvvdp/dm_preview_metric.py -------------------------------------------------------------------------------- /pycvvdp/dump_channels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/pycvvdp/dump_channels.py -------------------------------------------------------------------------------- /pycvvdp/interp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/pycvvdp/interp.py -------------------------------------------------------------------------------- /pycvvdp/lpyr_dec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/pycvvdp/lpyr_dec.py -------------------------------------------------------------------------------- /pycvvdp/psnr_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/pycvvdp/psnr_metric.py -------------------------------------------------------------------------------- /pycvvdp/run_cvvdp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/pycvvdp/run_cvvdp.py -------------------------------------------------------------------------------- /pycvvdp/ssim_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/pycvvdp/ssim_metric.py -------------------------------------------------------------------------------- /pycvvdp/third_party/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pycvvdp/third_party/cpuinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/pycvvdp/third_party/cpuinfo.py -------------------------------------------------------------------------------- /pycvvdp/third_party/loadmat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/pycvvdp/third_party/loadmat.py -------------------------------------------------------------------------------- /pycvvdp/third_party/ssim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/pycvvdp/third_party/ssim.py -------------------------------------------------------------------------------- /pycvvdp/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/pycvvdp/utils.py -------------------------------------------------------------------------------- /pycvvdp/video_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/pycvvdp/video_source.py -------------------------------------------------------------------------------- /pycvvdp/video_source_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/pycvvdp/video_source_file.py -------------------------------------------------------------------------------- /pycvvdp/video_source_yuv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/pycvvdp/video_source_yuv.py -------------------------------------------------------------------------------- /pycvvdp/video_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/pycvvdp/video_writer.py -------------------------------------------------------------------------------- /pycvvdp/visualize_diff_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/pycvvdp/visualize_diff_map.py -------------------------------------------------------------------------------- /pycvvdp/vq_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/pycvvdp/vq_metric.py -------------------------------------------------------------------------------- /pycvvdp/vvdp_data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/pycvvdp/vvdp_data/README.md -------------------------------------------------------------------------------- /pycvvdp/vvdp_data/color_spaces.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/pycvvdp/vvdp_data/color_spaces.json -------------------------------------------------------------------------------- /pycvvdp/vvdp_data/csf_lut_dkl_cone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/pycvvdp/vvdp_data/csf_lut_dkl_cone.json -------------------------------------------------------------------------------- /pycvvdp/vvdp_data/csf_lut_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/pycvvdp/vvdp_data/csf_lut_log.json -------------------------------------------------------------------------------- /pycvvdp/vvdp_data/csf_lut_none.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/pycvvdp/vvdp_data/csf_lut_none.json -------------------------------------------------------------------------------- /pycvvdp/vvdp_data/csf_lut_weber.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/pycvvdp/vvdp_data/csf_lut_weber.json -------------------------------------------------------------------------------- /pycvvdp/vvdp_data/csf_lut_weber_fixed_size.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/pycvvdp/vvdp_data/csf_lut_weber_fixed_size.json -------------------------------------------------------------------------------- /pycvvdp/vvdp_data/csf_lut_weber_old.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/pycvvdp/vvdp_data/csf_lut_weber_old.json -------------------------------------------------------------------------------- /pycvvdp/vvdp_data/csf_lut_weber_supra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/pycvvdp/vvdp_data/csf_lut_weber_supra.json -------------------------------------------------------------------------------- /pycvvdp/vvdp_data/cvvdp_ml_saliency/cvvdp_parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/pycvvdp/vvdp_data/cvvdp_ml_saliency/cvvdp_parameters.json -------------------------------------------------------------------------------- /pycvvdp/vvdp_data/cvvdp_ml_transformer/cvvdp_parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/pycvvdp/vvdp_data/cvvdp_ml_transformer/cvvdp_parameters.json -------------------------------------------------------------------------------- /pycvvdp/vvdp_data/cvvdp_parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/pycvvdp/vvdp_data/cvvdp_parameters.json -------------------------------------------------------------------------------- /pycvvdp/vvdp_data/display_models.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/pycvvdp/vvdp_data/display_models.json -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxdisp/ColorVideoVDP/HEAD/requirements.txt --------------------------------------------------------------------------------