├── .github └── workflows │ └── publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── combine_files.py ├── examples ├── example_workflow.json ├── example_workflow.png └── workflow_output.png ├── old ├── dither.py └── kmeans_quantize.py ├── post_processing ├── arithmetic_blend.py ├── ascii_art.py ├── blend.py ├── blur.py ├── canny_edge_mask.py ├── chromatic_abberation.py ├── color_correct.py ├── color_tint.py ├── dissolve.py ├── dodge_and_burn.py ├── film_grain.py ├── glow.py ├── hsv_threshold_mask.py ├── kuwahara_blur.py ├── parabolize.py ├── pencil_sketch.py ├── pixel_sort.py ├── pixelize.py ├── quantize.py ├── sharpen.py ├── sine_wave.py ├── solarize.py └── vignette.py ├── post_processing_nodes.py └── pyproject.toml /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EllangoK/ComfyUI-post-processing-nodes/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | wip/ 2 | .vscode/* 3 | *.pyc 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EllangoK/ComfyUI-post-processing-nodes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EllangoK/ComfyUI-post-processing-nodes/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EllangoK/ComfyUI-post-processing-nodes/HEAD/__init__.py -------------------------------------------------------------------------------- /combine_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EllangoK/ComfyUI-post-processing-nodes/HEAD/combine_files.py -------------------------------------------------------------------------------- /examples/example_workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EllangoK/ComfyUI-post-processing-nodes/HEAD/examples/example_workflow.json -------------------------------------------------------------------------------- /examples/example_workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EllangoK/ComfyUI-post-processing-nodes/HEAD/examples/example_workflow.png -------------------------------------------------------------------------------- /examples/workflow_output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EllangoK/ComfyUI-post-processing-nodes/HEAD/examples/workflow_output.png -------------------------------------------------------------------------------- /old/dither.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EllangoK/ComfyUI-post-processing-nodes/HEAD/old/dither.py -------------------------------------------------------------------------------- /old/kmeans_quantize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EllangoK/ComfyUI-post-processing-nodes/HEAD/old/kmeans_quantize.py -------------------------------------------------------------------------------- /post_processing/arithmetic_blend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EllangoK/ComfyUI-post-processing-nodes/HEAD/post_processing/arithmetic_blend.py -------------------------------------------------------------------------------- /post_processing/ascii_art.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EllangoK/ComfyUI-post-processing-nodes/HEAD/post_processing/ascii_art.py -------------------------------------------------------------------------------- /post_processing/blend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EllangoK/ComfyUI-post-processing-nodes/HEAD/post_processing/blend.py -------------------------------------------------------------------------------- /post_processing/blur.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EllangoK/ComfyUI-post-processing-nodes/HEAD/post_processing/blur.py -------------------------------------------------------------------------------- /post_processing/canny_edge_mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EllangoK/ComfyUI-post-processing-nodes/HEAD/post_processing/canny_edge_mask.py -------------------------------------------------------------------------------- /post_processing/chromatic_abberation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EllangoK/ComfyUI-post-processing-nodes/HEAD/post_processing/chromatic_abberation.py -------------------------------------------------------------------------------- /post_processing/color_correct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EllangoK/ComfyUI-post-processing-nodes/HEAD/post_processing/color_correct.py -------------------------------------------------------------------------------- /post_processing/color_tint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EllangoK/ComfyUI-post-processing-nodes/HEAD/post_processing/color_tint.py -------------------------------------------------------------------------------- /post_processing/dissolve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EllangoK/ComfyUI-post-processing-nodes/HEAD/post_processing/dissolve.py -------------------------------------------------------------------------------- /post_processing/dodge_and_burn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EllangoK/ComfyUI-post-processing-nodes/HEAD/post_processing/dodge_and_burn.py -------------------------------------------------------------------------------- /post_processing/film_grain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EllangoK/ComfyUI-post-processing-nodes/HEAD/post_processing/film_grain.py -------------------------------------------------------------------------------- /post_processing/glow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EllangoK/ComfyUI-post-processing-nodes/HEAD/post_processing/glow.py -------------------------------------------------------------------------------- /post_processing/hsv_threshold_mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EllangoK/ComfyUI-post-processing-nodes/HEAD/post_processing/hsv_threshold_mask.py -------------------------------------------------------------------------------- /post_processing/kuwahara_blur.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EllangoK/ComfyUI-post-processing-nodes/HEAD/post_processing/kuwahara_blur.py -------------------------------------------------------------------------------- /post_processing/parabolize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EllangoK/ComfyUI-post-processing-nodes/HEAD/post_processing/parabolize.py -------------------------------------------------------------------------------- /post_processing/pencil_sketch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EllangoK/ComfyUI-post-processing-nodes/HEAD/post_processing/pencil_sketch.py -------------------------------------------------------------------------------- /post_processing/pixel_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EllangoK/ComfyUI-post-processing-nodes/HEAD/post_processing/pixel_sort.py -------------------------------------------------------------------------------- /post_processing/pixelize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EllangoK/ComfyUI-post-processing-nodes/HEAD/post_processing/pixelize.py -------------------------------------------------------------------------------- /post_processing/quantize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EllangoK/ComfyUI-post-processing-nodes/HEAD/post_processing/quantize.py -------------------------------------------------------------------------------- /post_processing/sharpen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EllangoK/ComfyUI-post-processing-nodes/HEAD/post_processing/sharpen.py -------------------------------------------------------------------------------- /post_processing/sine_wave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EllangoK/ComfyUI-post-processing-nodes/HEAD/post_processing/sine_wave.py -------------------------------------------------------------------------------- /post_processing/solarize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EllangoK/ComfyUI-post-processing-nodes/HEAD/post_processing/solarize.py -------------------------------------------------------------------------------- /post_processing/vignette.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EllangoK/ComfyUI-post-processing-nodes/HEAD/post_processing/vignette.py -------------------------------------------------------------------------------- /post_processing_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EllangoK/ComfyUI-post-processing-nodes/HEAD/post_processing_nodes.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EllangoK/ComfyUI-post-processing-nodes/HEAD/pyproject.toml --------------------------------------------------------------------------------