├── .gitignore ├── LICENSE ├── NOTICE.txt ├── README.md ├── __init__.py ├── assets ├── luts │ └── put_luts_here └── presets │ ├── film_grain_presets.json │ └── ocio_sim_config.json ├── colortools ├── ColorAnalysisPlotNode.py ├── ColorGradingNode.py ├── LogReconstructionNode.py ├── autogradepro.py ├── colorspacesim.py └── log_transforms.py ├── grain └── FilmGrain.py ├── prompt └── PromptGenerator.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rndnanthu/ComfyUI-RndNanthu/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rndnanthu/ComfyUI-RndNanthu/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rndnanthu/ComfyUI-RndNanthu/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rndnanthu/ComfyUI-RndNanthu/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rndnanthu/ComfyUI-RndNanthu/HEAD/__init__.py -------------------------------------------------------------------------------- /assets/luts/put_luts_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/presets/film_grain_presets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rndnanthu/ComfyUI-RndNanthu/HEAD/assets/presets/film_grain_presets.json -------------------------------------------------------------------------------- /assets/presets/ocio_sim_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rndnanthu/ComfyUI-RndNanthu/HEAD/assets/presets/ocio_sim_config.json -------------------------------------------------------------------------------- /colortools/ColorAnalysisPlotNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rndnanthu/ComfyUI-RndNanthu/HEAD/colortools/ColorAnalysisPlotNode.py -------------------------------------------------------------------------------- /colortools/ColorGradingNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rndnanthu/ComfyUI-RndNanthu/HEAD/colortools/ColorGradingNode.py -------------------------------------------------------------------------------- /colortools/LogReconstructionNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rndnanthu/ComfyUI-RndNanthu/HEAD/colortools/LogReconstructionNode.py -------------------------------------------------------------------------------- /colortools/autogradepro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rndnanthu/ComfyUI-RndNanthu/HEAD/colortools/autogradepro.py -------------------------------------------------------------------------------- /colortools/colorspacesim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rndnanthu/ComfyUI-RndNanthu/HEAD/colortools/colorspacesim.py -------------------------------------------------------------------------------- /colortools/log_transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rndnanthu/ComfyUI-RndNanthu/HEAD/colortools/log_transforms.py -------------------------------------------------------------------------------- /grain/FilmGrain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rndnanthu/ComfyUI-RndNanthu/HEAD/grain/FilmGrain.py -------------------------------------------------------------------------------- /prompt/PromptGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rndnanthu/ComfyUI-RndNanthu/HEAD/prompt/PromptGenerator.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rndnanthu/ComfyUI-RndNanthu/HEAD/requirements.txt --------------------------------------------------------------------------------