├── README.md ├── configs ├── config_design.yaml └── config_enhance.yaml ├── data.py ├── design.py ├── documents └── teaser.png ├── enhance.py ├── loss.py ├── model.py ├── spectrum_data ├── EyeSensitivity.csv ├── GS3-U3-15S5C_420_890.npy ├── led_31allcut_420_1000.npy └── white_led_61.npy ├── synthesize.py ├── synthesize_with_curve.py ├── test.py ├── unet.py └── util.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyNiuuu/VCSD/HEAD/README.md -------------------------------------------------------------------------------- /configs/config_design.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyNiuuu/VCSD/HEAD/configs/config_design.yaml -------------------------------------------------------------------------------- /configs/config_enhance.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyNiuuu/VCSD/HEAD/configs/config_enhance.yaml -------------------------------------------------------------------------------- /data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyNiuuu/VCSD/HEAD/data.py -------------------------------------------------------------------------------- /design.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyNiuuu/VCSD/HEAD/design.py -------------------------------------------------------------------------------- /documents/teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyNiuuu/VCSD/HEAD/documents/teaser.png -------------------------------------------------------------------------------- /enhance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyNiuuu/VCSD/HEAD/enhance.py -------------------------------------------------------------------------------- /loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyNiuuu/VCSD/HEAD/loss.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyNiuuu/VCSD/HEAD/model.py -------------------------------------------------------------------------------- /spectrum_data/EyeSensitivity.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyNiuuu/VCSD/HEAD/spectrum_data/EyeSensitivity.csv -------------------------------------------------------------------------------- /spectrum_data/GS3-U3-15S5C_420_890.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyNiuuu/VCSD/HEAD/spectrum_data/GS3-U3-15S5C_420_890.npy -------------------------------------------------------------------------------- /spectrum_data/led_31allcut_420_1000.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyNiuuu/VCSD/HEAD/spectrum_data/led_31allcut_420_1000.npy -------------------------------------------------------------------------------- /spectrum_data/white_led_61.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyNiuuu/VCSD/HEAD/spectrum_data/white_led_61.npy -------------------------------------------------------------------------------- /synthesize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyNiuuu/VCSD/HEAD/synthesize.py -------------------------------------------------------------------------------- /synthesize_with_curve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyNiuuu/VCSD/HEAD/synthesize_with_curve.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyNiuuu/VCSD/HEAD/test.py -------------------------------------------------------------------------------- /unet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyNiuuu/VCSD/HEAD/unet.py -------------------------------------------------------------------------------- /util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyNiuuu/VCSD/HEAD/util.py --------------------------------------------------------------------------------