├── .gitattributes ├── .gitignore ├── README.md ├── docs ├── content_weight_comparison.png ├── diagram.png ├── processing.mp4 └── sd_settings.png ├── renderer ├── .gitignore ├── README.md ├── blossom.sln ├── blossom │ ├── blossom.vcxproj │ ├── config.h │ ├── draw.frag │ ├── gldefs.h │ ├── glext.h │ ├── link.exe │ ├── main.cpp │ ├── present.frag │ ├── shader_minifier-1.3.5.exe │ ├── shaders.targets │ └── stb_image_write.h ├── crinkler-LICENSE.txt └── crinkler-manual.txt └── training ├── README.md ├── environment.yml ├── images └── cube_and_sphere │ ├── painted_crop_230_16.png │ └── raw.rbnxd.f32.960.540.data ├── micro_nca_filtering.ipynb ├── rawloader.py └── style_crop_dataset.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekkavaa/SingleImageNCAFiltering/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekkavaa/SingleImageNCAFiltering/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekkavaa/SingleImageNCAFiltering/HEAD/README.md -------------------------------------------------------------------------------- /docs/content_weight_comparison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekkavaa/SingleImageNCAFiltering/HEAD/docs/content_weight_comparison.png -------------------------------------------------------------------------------- /docs/diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekkavaa/SingleImageNCAFiltering/HEAD/docs/diagram.png -------------------------------------------------------------------------------- /docs/processing.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekkavaa/SingleImageNCAFiltering/HEAD/docs/processing.mp4 -------------------------------------------------------------------------------- /docs/sd_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekkavaa/SingleImageNCAFiltering/HEAD/docs/sd_settings.png -------------------------------------------------------------------------------- /renderer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekkavaa/SingleImageNCAFiltering/HEAD/renderer/.gitignore -------------------------------------------------------------------------------- /renderer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekkavaa/SingleImageNCAFiltering/HEAD/renderer/README.md -------------------------------------------------------------------------------- /renderer/blossom.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekkavaa/SingleImageNCAFiltering/HEAD/renderer/blossom.sln -------------------------------------------------------------------------------- /renderer/blossom/blossom.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekkavaa/SingleImageNCAFiltering/HEAD/renderer/blossom/blossom.vcxproj -------------------------------------------------------------------------------- /renderer/blossom/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekkavaa/SingleImageNCAFiltering/HEAD/renderer/blossom/config.h -------------------------------------------------------------------------------- /renderer/blossom/draw.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekkavaa/SingleImageNCAFiltering/HEAD/renderer/blossom/draw.frag -------------------------------------------------------------------------------- /renderer/blossom/gldefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekkavaa/SingleImageNCAFiltering/HEAD/renderer/blossom/gldefs.h -------------------------------------------------------------------------------- /renderer/blossom/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekkavaa/SingleImageNCAFiltering/HEAD/renderer/blossom/glext.h -------------------------------------------------------------------------------- /renderer/blossom/link.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekkavaa/SingleImageNCAFiltering/HEAD/renderer/blossom/link.exe -------------------------------------------------------------------------------- /renderer/blossom/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekkavaa/SingleImageNCAFiltering/HEAD/renderer/blossom/main.cpp -------------------------------------------------------------------------------- /renderer/blossom/present.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekkavaa/SingleImageNCAFiltering/HEAD/renderer/blossom/present.frag -------------------------------------------------------------------------------- /renderer/blossom/shader_minifier-1.3.5.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekkavaa/SingleImageNCAFiltering/HEAD/renderer/blossom/shader_minifier-1.3.5.exe -------------------------------------------------------------------------------- /renderer/blossom/shaders.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekkavaa/SingleImageNCAFiltering/HEAD/renderer/blossom/shaders.targets -------------------------------------------------------------------------------- /renderer/blossom/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekkavaa/SingleImageNCAFiltering/HEAD/renderer/blossom/stb_image_write.h -------------------------------------------------------------------------------- /renderer/crinkler-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekkavaa/SingleImageNCAFiltering/HEAD/renderer/crinkler-LICENSE.txt -------------------------------------------------------------------------------- /renderer/crinkler-manual.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekkavaa/SingleImageNCAFiltering/HEAD/renderer/crinkler-manual.txt -------------------------------------------------------------------------------- /training/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekkavaa/SingleImageNCAFiltering/HEAD/training/README.md -------------------------------------------------------------------------------- /training/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekkavaa/SingleImageNCAFiltering/HEAD/training/environment.yml -------------------------------------------------------------------------------- /training/images/cube_and_sphere/painted_crop_230_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekkavaa/SingleImageNCAFiltering/HEAD/training/images/cube_and_sphere/painted_crop_230_16.png -------------------------------------------------------------------------------- /training/images/cube_and_sphere/raw.rbnxd.f32.960.540.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekkavaa/SingleImageNCAFiltering/HEAD/training/images/cube_and_sphere/raw.rbnxd.f32.960.540.data -------------------------------------------------------------------------------- /training/micro_nca_filtering.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekkavaa/SingleImageNCAFiltering/HEAD/training/micro_nca_filtering.ipynb -------------------------------------------------------------------------------- /training/rawloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekkavaa/SingleImageNCAFiltering/HEAD/training/rawloader.py -------------------------------------------------------------------------------- /training/style_crop_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pekkavaa/SingleImageNCAFiltering/HEAD/training/style_crop_dataset.py --------------------------------------------------------------------------------