├── .gitignore ├── BlueNoiseDitherPatternGeneration.sln ├── BlueNoiseDitherPatternGeneration.vcxproj ├── BlueNoiseDitherPatternGeneration.vcxproj.filters ├── LICENSE ├── blog ├── 1sigmadiff.png ├── 2sigmadiff.png ├── 3sigmadiff.png ├── blueSwapmulti_deterministic.data.csv ├── blueSwapmulti_rand1.data.csv ├── blueSwapmulti_rand2.data.csv ├── blueswapmulti.txt └── sigmadiff.txt ├── bluenoise256.png ├── bluenoise64.png ├── blur.cpp ├── blur.h ├── convert.h ├── dft.h ├── generatebn_frs.cpp ├── generatebn_frs.h ├── generatebn_hpf.cpp ├── generatebn_hpf.h ├── generatebn_paniq.cpp ├── generatebn_paniq.h ├── generatebn_paniq2.cpp ├── generatebn_paniq2.h ├── generatebn_swap.cpp ├── generatebn_swap.h ├── generatebn_void_cluster.cpp ├── generatebn_void_cluster.h ├── histogram.h ├── image.cpp ├── image.h ├── main.cpp ├── misc.h ├── out ├── blueFRS.histogram.csv ├── blueFRS.png ├── blueFRS_1.png ├── blueFRS_102.png ├── blueFRS_128.png ├── blueFRS_153.png ├── blueFRS_179.png ├── blueFRS_204.png ├── blueFRS_230.png ├── blueFRS_25.png ├── blueFRS_254.png ├── blueFRS_51.png ├── blueFRS_76.png ├── blueHPF.histogram.csv ├── blueHPF.png ├── blueHPF_1.png ├── blueHPF_102.png ├── blueHPF_128.png ├── blueHPF_153.png ├── blueHPF_179.png ├── blueHPF_204.png ├── blueHPF_230.png ├── blueHPF_25.png ├── blueHPF_254.png ├── blueHPF_51.png ├── blueHPF_76.png ├── bluePaniq.histogram.csv ├── bluePaniq.png ├── bluePaniq2.histogram.csv ├── bluePaniq2.png ├── bluePaniq2_1.png ├── bluePaniq2_102.png ├── bluePaniq2_128.png ├── bluePaniq2_153.png ├── bluePaniq2_179.png ├── bluePaniq2_204.png ├── bluePaniq2_230.png ├── bluePaniq2_25.png ├── bluePaniq2_254.png ├── bluePaniq2_51.png ├── bluePaniq2_76.png ├── bluePaniq_1.png ├── bluePaniq_102.png ├── bluePaniq_128.png ├── bluePaniq_153.png ├── bluePaniq_179.png ├── bluePaniq_204.png ├── bluePaniq_230.png ├── bluePaniq_25.png ├── bluePaniq_254.png ├── bluePaniq_51.png ├── bluePaniq_76.png ├── blueSwap1.data.csv ├── blueSwap1.histogram.csv ├── blueSwap1.png ├── blueSwap10.data.csv ├── blueSwap10.histogram.csv ├── blueSwap10.png ├── blueSwap10_1.png ├── blueSwap10_102.png ├── blueSwap10_128.png ├── blueSwap10_153.png ├── blueSwap10_179.png ├── blueSwap10_204.png ├── blueSwap10_230.png ├── blueSwap10_25.png ├── blueSwap10_254.png ├── blueSwap10_51.png ├── blueSwap10_76.png ├── blueSwap1_1.png ├── blueSwap1_102.png ├── blueSwap1_128.png ├── blueSwap1_153.png ├── blueSwap1_179.png ├── blueSwap1_204.png ├── blueSwap1_230.png ├── blueSwap1_25.png ├── blueSwap1_254.png ├── blueSwap1_51.png ├── blueSwap1_76.png ├── blueSwap5.data.csv ├── blueSwap5.histogram.csv ├── blueSwap5.png ├── blueSwap5_1.png ├── blueSwap5_102.png ├── blueSwap5_128.png ├── blueSwap5_153.png ├── blueSwap5_179.png ├── blueSwap5_204.png ├── blueSwap5_230.png ├── blueSwap5_25.png ├── blueSwap5_254.png ├── blueSwap5_51.png ├── blueSwap5_76.png ├── blueSwapMet.data.csv ├── blueSwapMet.histogram.csv ├── blueSwapMet.png ├── blueSwapMet_1.png ├── blueSwapMet_102.png ├── blueSwapMet_128.png ├── blueSwapMet_153.png ├── blueSwapMet_179.png ├── blueSwapMet_204.png ├── blueSwapMet_230.png ├── blueSwapMet_25.png ├── blueSwapMet_254.png ├── blueSwapMet_51.png ├── blueSwapMet_76.png ├── blueSwapSA.data.csv ├── blueSwapSA.histogram.csv ├── blueSwapSA.png ├── blueSwapSA_1.png ├── blueSwapSA_102.png ├── blueSwapSA_128.png ├── blueSwapSA_153.png ├── blueSwapSA_179.png ├── blueSwapSA_204.png ├── blueSwapSA_230.png ├── blueSwapSA_25.png ├── blueSwapSA_254.png ├── blueSwapSA_51.png ├── blueSwapSA_76.png ├── blueVC_1.histogram.csv ├── blueVC_1.png ├── blueVC_1M.histogram.csv ├── blueVC_1M.png ├── blueVC_1M_1.png ├── blueVC_1M_102.png ├── blueVC_1M_128.png ├── blueVC_1M_153.png ├── blueVC_1M_179.png ├── blueVC_1M_204.png ├── blueVC_1M_230.png ├── blueVC_1M_25.png ├── blueVC_1M_254.png ├── blueVC_1M_51.png ├── blueVC_1M_76.png ├── blueVC_1_1.png ├── blueVC_1_102.png ├── blueVC_1_128.png ├── blueVC_1_153.png ├── blueVC_1_179.png ├── blueVC_1_204.png ├── blueVC_1_230.png ├── blueVC_1_25.png ├── blueVC_1_254.png ├── blueVC_1_51.png ├── blueVC_1_76.png ├── blueVC_2.histogram.csv ├── blueVC_2.png ├── blueVC_2_1.png ├── blueVC_2_102.png ├── blueVC_2_128.png ├── blueVC_2_153.png ├── blueVC_2_179.png ├── blueVC_2_204.png ├── blueVC_2_230.png ├── blueVC_2_25.png ├── blueVC_2_254.png ├── blueVC_2_51.png ├── blueVC_2_76.png ├── redFRS.histogram.csv ├── redFRS.png ├── redFRS_1.png ├── redFRS_102.png ├── redFRS_128.png ├── redFRS_153.png ├── redFRS_179.png ├── redFRS_204.png ├── redFRS_230.png ├── redFRS_25.png ├── redFRS_254.png ├── redFRS_51.png ├── redFRS_76.png ├── redLPF.histogram.csv ├── redLPF.png ├── redLPF_1.png ├── redLPF_102.png ├── redLPF_128.png ├── redLPF_153.png ├── redLPF_179.png ├── redLPF_204.png ├── redLPF_230.png ├── redLPF_25.png ├── redLPF_254.png ├── redLPF_51.png ├── redLPF_76.png ├── redPaniq.histogram.csv ├── redPaniq.png ├── redPaniq_1.png ├── redPaniq_102.png ├── redPaniq_128.png ├── redPaniq_153.png ├── redPaniq_179.png ├── redPaniq_204.png ├── redPaniq_230.png ├── redPaniq_25.png ├── redPaniq_254.png ├── redPaniq_51.png ├── redPaniq_76.png ├── redSwap10.data.csv ├── redSwap10.histogram.csv ├── redSwap10.png ├── redSwap10_1.png ├── redSwap10_102.png ├── redSwap10_128.png ├── redSwap10_153.png ├── redSwap10_179.png ├── redSwap10_204.png ├── redSwap10_230.png ├── redSwap10_25.png ├── redSwap10_254.png ├── redSwap10_51.png ├── redSwap10_76.png ├── white.histogram.csv ├── white.png ├── white_1.png ├── white_102.png ├── white_128.png ├── white_153.png ├── white_179.png ├── white_204.png ├── white_230.png ├── white_25.png ├── white_254.png ├── white_51.png └── white_76.png ├── scoped_timer.h ├── settings.h ├── simple_fft ├── check_fft.hpp ├── copy_array.hpp ├── error_handling.hpp ├── fft.h ├── fft.hpp ├── fft_impl.hpp └── fft_settings.h ├── stb ├── README.md ├── stb_image.h └── stb_image_write.h ├── vec.h └── whitenoise.h /.gitignore: -------------------------------------------------------------------------------- 1 | .vs 2 | x64 3 | *.user -------------------------------------------------------------------------------- /BlueNoiseDitherPatternGeneration.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/BlueNoiseDitherPatternGeneration.sln -------------------------------------------------------------------------------- /BlueNoiseDitherPatternGeneration.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/BlueNoiseDitherPatternGeneration.vcxproj -------------------------------------------------------------------------------- /BlueNoiseDitherPatternGeneration.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/BlueNoiseDitherPatternGeneration.vcxproj.filters -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/LICENSE -------------------------------------------------------------------------------- /blog/1sigmadiff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/blog/1sigmadiff.png -------------------------------------------------------------------------------- /blog/2sigmadiff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/blog/2sigmadiff.png -------------------------------------------------------------------------------- /blog/3sigmadiff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/blog/3sigmadiff.png -------------------------------------------------------------------------------- /blog/blueSwapmulti_deterministic.data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/blog/blueSwapmulti_deterministic.data.csv -------------------------------------------------------------------------------- /blog/blueSwapmulti_rand1.data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/blog/blueSwapmulti_rand1.data.csv -------------------------------------------------------------------------------- /blog/blueSwapmulti_rand2.data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/blog/blueSwapmulti_rand2.data.csv -------------------------------------------------------------------------------- /blog/blueswapmulti.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/blog/blueswapmulti.txt -------------------------------------------------------------------------------- /blog/sigmadiff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/blog/sigmadiff.txt -------------------------------------------------------------------------------- /bluenoise256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/bluenoise256.png -------------------------------------------------------------------------------- /bluenoise64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/bluenoise64.png -------------------------------------------------------------------------------- /blur.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/blur.cpp -------------------------------------------------------------------------------- /blur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/blur.h -------------------------------------------------------------------------------- /convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/convert.h -------------------------------------------------------------------------------- /dft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/dft.h -------------------------------------------------------------------------------- /generatebn_frs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/generatebn_frs.cpp -------------------------------------------------------------------------------- /generatebn_frs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/generatebn_frs.h -------------------------------------------------------------------------------- /generatebn_hpf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/generatebn_hpf.cpp -------------------------------------------------------------------------------- /generatebn_hpf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/generatebn_hpf.h -------------------------------------------------------------------------------- /generatebn_paniq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/generatebn_paniq.cpp -------------------------------------------------------------------------------- /generatebn_paniq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/generatebn_paniq.h -------------------------------------------------------------------------------- /generatebn_paniq2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/generatebn_paniq2.cpp -------------------------------------------------------------------------------- /generatebn_paniq2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/generatebn_paniq2.h -------------------------------------------------------------------------------- /generatebn_swap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/generatebn_swap.cpp -------------------------------------------------------------------------------- /generatebn_swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/generatebn_swap.h -------------------------------------------------------------------------------- /generatebn_void_cluster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/generatebn_void_cluster.cpp -------------------------------------------------------------------------------- /generatebn_void_cluster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/generatebn_void_cluster.h -------------------------------------------------------------------------------- /histogram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/histogram.h -------------------------------------------------------------------------------- /image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/image.cpp -------------------------------------------------------------------------------- /image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/image.h -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/main.cpp -------------------------------------------------------------------------------- /misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/misc.h -------------------------------------------------------------------------------- /out/blueFRS.histogram.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueFRS.histogram.csv -------------------------------------------------------------------------------- /out/blueFRS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueFRS.png -------------------------------------------------------------------------------- /out/blueFRS_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueFRS_1.png -------------------------------------------------------------------------------- /out/blueFRS_102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueFRS_102.png -------------------------------------------------------------------------------- /out/blueFRS_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueFRS_128.png -------------------------------------------------------------------------------- /out/blueFRS_153.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueFRS_153.png -------------------------------------------------------------------------------- /out/blueFRS_179.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueFRS_179.png -------------------------------------------------------------------------------- /out/blueFRS_204.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueFRS_204.png -------------------------------------------------------------------------------- /out/blueFRS_230.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueFRS_230.png -------------------------------------------------------------------------------- /out/blueFRS_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueFRS_25.png -------------------------------------------------------------------------------- /out/blueFRS_254.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueFRS_254.png -------------------------------------------------------------------------------- /out/blueFRS_51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueFRS_51.png -------------------------------------------------------------------------------- /out/blueFRS_76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueFRS_76.png -------------------------------------------------------------------------------- /out/blueHPF.histogram.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueHPF.histogram.csv -------------------------------------------------------------------------------- /out/blueHPF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueHPF.png -------------------------------------------------------------------------------- /out/blueHPF_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueHPF_1.png -------------------------------------------------------------------------------- /out/blueHPF_102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueHPF_102.png -------------------------------------------------------------------------------- /out/blueHPF_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueHPF_128.png -------------------------------------------------------------------------------- /out/blueHPF_153.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueHPF_153.png -------------------------------------------------------------------------------- /out/blueHPF_179.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueHPF_179.png -------------------------------------------------------------------------------- /out/blueHPF_204.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueHPF_204.png -------------------------------------------------------------------------------- /out/blueHPF_230.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueHPF_230.png -------------------------------------------------------------------------------- /out/blueHPF_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueHPF_25.png -------------------------------------------------------------------------------- /out/blueHPF_254.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueHPF_254.png -------------------------------------------------------------------------------- /out/blueHPF_51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueHPF_51.png -------------------------------------------------------------------------------- /out/blueHPF_76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueHPF_76.png -------------------------------------------------------------------------------- /out/bluePaniq.histogram.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/bluePaniq.histogram.csv -------------------------------------------------------------------------------- /out/bluePaniq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/bluePaniq.png -------------------------------------------------------------------------------- /out/bluePaniq2.histogram.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/bluePaniq2.histogram.csv -------------------------------------------------------------------------------- /out/bluePaniq2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/bluePaniq2.png -------------------------------------------------------------------------------- /out/bluePaniq2_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/bluePaniq2_1.png -------------------------------------------------------------------------------- /out/bluePaniq2_102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/bluePaniq2_102.png -------------------------------------------------------------------------------- /out/bluePaniq2_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/bluePaniq2_128.png -------------------------------------------------------------------------------- /out/bluePaniq2_153.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/bluePaniq2_153.png -------------------------------------------------------------------------------- /out/bluePaniq2_179.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/bluePaniq2_179.png -------------------------------------------------------------------------------- /out/bluePaniq2_204.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/bluePaniq2_204.png -------------------------------------------------------------------------------- /out/bluePaniq2_230.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/bluePaniq2_230.png -------------------------------------------------------------------------------- /out/bluePaniq2_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/bluePaniq2_25.png -------------------------------------------------------------------------------- /out/bluePaniq2_254.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/bluePaniq2_254.png -------------------------------------------------------------------------------- /out/bluePaniq2_51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/bluePaniq2_51.png -------------------------------------------------------------------------------- /out/bluePaniq2_76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/bluePaniq2_76.png -------------------------------------------------------------------------------- /out/bluePaniq_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/bluePaniq_1.png -------------------------------------------------------------------------------- /out/bluePaniq_102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/bluePaniq_102.png -------------------------------------------------------------------------------- /out/bluePaniq_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/bluePaniq_128.png -------------------------------------------------------------------------------- /out/bluePaniq_153.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/bluePaniq_153.png -------------------------------------------------------------------------------- /out/bluePaniq_179.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/bluePaniq_179.png -------------------------------------------------------------------------------- /out/bluePaniq_204.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/bluePaniq_204.png -------------------------------------------------------------------------------- /out/bluePaniq_230.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/bluePaniq_230.png -------------------------------------------------------------------------------- /out/bluePaniq_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/bluePaniq_25.png -------------------------------------------------------------------------------- /out/bluePaniq_254.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/bluePaniq_254.png -------------------------------------------------------------------------------- /out/bluePaniq_51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/bluePaniq_51.png -------------------------------------------------------------------------------- /out/bluePaniq_76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/bluePaniq_76.png -------------------------------------------------------------------------------- /out/blueSwap1.data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueSwap1.data.csv -------------------------------------------------------------------------------- /out/blueSwap1.histogram.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueSwap1.histogram.csv -------------------------------------------------------------------------------- /out/blueSwap1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueSwap1.png -------------------------------------------------------------------------------- /out/blueSwap10.data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueSwap10.data.csv -------------------------------------------------------------------------------- /out/blueSwap10.histogram.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueSwap10.histogram.csv -------------------------------------------------------------------------------- /out/blueSwap10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueSwap10.png -------------------------------------------------------------------------------- /out/blueSwap10_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueSwap10_1.png -------------------------------------------------------------------------------- /out/blueSwap10_102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueSwap10_102.png -------------------------------------------------------------------------------- /out/blueSwap10_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueSwap10_128.png -------------------------------------------------------------------------------- /out/blueSwap10_153.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueSwap10_153.png -------------------------------------------------------------------------------- /out/blueSwap10_179.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueSwap10_179.png -------------------------------------------------------------------------------- /out/blueSwap10_204.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueSwap10_204.png -------------------------------------------------------------------------------- /out/blueSwap10_230.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueSwap10_230.png -------------------------------------------------------------------------------- /out/blueSwap10_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueSwap10_25.png -------------------------------------------------------------------------------- /out/blueSwap10_254.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueSwap10_254.png -------------------------------------------------------------------------------- /out/blueSwap10_51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueSwap10_51.png -------------------------------------------------------------------------------- /out/blueSwap10_76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueSwap10_76.png -------------------------------------------------------------------------------- /out/blueSwap1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueSwap1_1.png -------------------------------------------------------------------------------- /out/blueSwap1_102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueSwap1_102.png -------------------------------------------------------------------------------- /out/blueSwap1_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueSwap1_128.png -------------------------------------------------------------------------------- /out/blueSwap1_153.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueSwap1_153.png -------------------------------------------------------------------------------- /out/blueSwap1_179.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueSwap1_179.png -------------------------------------------------------------------------------- /out/blueSwap1_204.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueSwap1_204.png -------------------------------------------------------------------------------- /out/blueSwap1_230.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueSwap1_230.png -------------------------------------------------------------------------------- /out/blueSwap1_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueSwap1_25.png -------------------------------------------------------------------------------- /out/blueSwap1_254.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueSwap1_254.png -------------------------------------------------------------------------------- /out/blueSwap1_51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueSwap1_51.png -------------------------------------------------------------------------------- /out/blueSwap1_76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueSwap1_76.png -------------------------------------------------------------------------------- /out/blueSwap5.data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueSwap5.data.csv -------------------------------------------------------------------------------- /out/blueSwap5.histogram.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueSwap5.histogram.csv -------------------------------------------------------------------------------- /out/blueSwap5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueSwap5.png -------------------------------------------------------------------------------- /out/blueSwap5_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueSwap5_1.png -------------------------------------------------------------------------------- /out/blueSwap5_102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueSwap5_102.png -------------------------------------------------------------------------------- /out/blueSwap5_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueSwap5_128.png -------------------------------------------------------------------------------- /out/blueSwap5_153.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueSwap5_153.png -------------------------------------------------------------------------------- /out/blueSwap5_179.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueSwap5_179.png -------------------------------------------------------------------------------- /out/blueSwap5_204.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueSwap5_204.png -------------------------------------------------------------------------------- /out/blueSwap5_230.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueSwap5_230.png -------------------------------------------------------------------------------- /out/blueSwap5_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueSwap5_25.png -------------------------------------------------------------------------------- /out/blueSwap5_254.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueSwap5_254.png -------------------------------------------------------------------------------- /out/blueSwap5_51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueSwap5_51.png -------------------------------------------------------------------------------- /out/blueSwap5_76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueSwap5_76.png -------------------------------------------------------------------------------- /out/blueSwapMet.data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueSwapMet.data.csv -------------------------------------------------------------------------------- /out/blueSwapMet.histogram.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueSwapMet.histogram.csv -------------------------------------------------------------------------------- /out/blueSwapMet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueSwapMet.png -------------------------------------------------------------------------------- /out/blueSwapMet_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueSwapMet_1.png -------------------------------------------------------------------------------- /out/blueSwapMet_102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueSwapMet_102.png -------------------------------------------------------------------------------- /out/blueSwapMet_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueSwapMet_128.png -------------------------------------------------------------------------------- /out/blueSwapMet_153.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueSwapMet_153.png -------------------------------------------------------------------------------- /out/blueSwapMet_179.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueSwapMet_179.png -------------------------------------------------------------------------------- /out/blueSwapMet_204.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueSwapMet_204.png -------------------------------------------------------------------------------- /out/blueSwapMet_230.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueSwapMet_230.png -------------------------------------------------------------------------------- /out/blueSwapMet_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueSwapMet_25.png -------------------------------------------------------------------------------- /out/blueSwapMet_254.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueSwapMet_254.png -------------------------------------------------------------------------------- /out/blueSwapMet_51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueSwapMet_51.png -------------------------------------------------------------------------------- /out/blueSwapMet_76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueSwapMet_76.png -------------------------------------------------------------------------------- /out/blueSwapSA.data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueSwapSA.data.csv -------------------------------------------------------------------------------- /out/blueSwapSA.histogram.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueSwapSA.histogram.csv -------------------------------------------------------------------------------- /out/blueSwapSA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueSwapSA.png -------------------------------------------------------------------------------- /out/blueSwapSA_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueSwapSA_1.png -------------------------------------------------------------------------------- /out/blueSwapSA_102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueSwapSA_102.png -------------------------------------------------------------------------------- /out/blueSwapSA_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueSwapSA_128.png -------------------------------------------------------------------------------- /out/blueSwapSA_153.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueSwapSA_153.png -------------------------------------------------------------------------------- /out/blueSwapSA_179.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueSwapSA_179.png -------------------------------------------------------------------------------- /out/blueSwapSA_204.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueSwapSA_204.png -------------------------------------------------------------------------------- /out/blueSwapSA_230.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueSwapSA_230.png -------------------------------------------------------------------------------- /out/blueSwapSA_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueSwapSA_25.png -------------------------------------------------------------------------------- /out/blueSwapSA_254.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueSwapSA_254.png -------------------------------------------------------------------------------- /out/blueSwapSA_51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueSwapSA_51.png -------------------------------------------------------------------------------- /out/blueSwapSA_76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueSwapSA_76.png -------------------------------------------------------------------------------- /out/blueVC_1.histogram.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueVC_1.histogram.csv -------------------------------------------------------------------------------- /out/blueVC_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueVC_1.png -------------------------------------------------------------------------------- /out/blueVC_1M.histogram.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueVC_1M.histogram.csv -------------------------------------------------------------------------------- /out/blueVC_1M.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueVC_1M.png -------------------------------------------------------------------------------- /out/blueVC_1M_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueVC_1M_1.png -------------------------------------------------------------------------------- /out/blueVC_1M_102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueVC_1M_102.png -------------------------------------------------------------------------------- /out/blueVC_1M_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueVC_1M_128.png -------------------------------------------------------------------------------- /out/blueVC_1M_153.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueVC_1M_153.png -------------------------------------------------------------------------------- /out/blueVC_1M_179.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueVC_1M_179.png -------------------------------------------------------------------------------- /out/blueVC_1M_204.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueVC_1M_204.png -------------------------------------------------------------------------------- /out/blueVC_1M_230.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueVC_1M_230.png -------------------------------------------------------------------------------- /out/blueVC_1M_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueVC_1M_25.png -------------------------------------------------------------------------------- /out/blueVC_1M_254.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueVC_1M_254.png -------------------------------------------------------------------------------- /out/blueVC_1M_51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueVC_1M_51.png -------------------------------------------------------------------------------- /out/blueVC_1M_76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueVC_1M_76.png -------------------------------------------------------------------------------- /out/blueVC_1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueVC_1_1.png -------------------------------------------------------------------------------- /out/blueVC_1_102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueVC_1_102.png -------------------------------------------------------------------------------- /out/blueVC_1_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueVC_1_128.png -------------------------------------------------------------------------------- /out/blueVC_1_153.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueVC_1_153.png -------------------------------------------------------------------------------- /out/blueVC_1_179.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueVC_1_179.png -------------------------------------------------------------------------------- /out/blueVC_1_204.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueVC_1_204.png -------------------------------------------------------------------------------- /out/blueVC_1_230.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueVC_1_230.png -------------------------------------------------------------------------------- /out/blueVC_1_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueVC_1_25.png -------------------------------------------------------------------------------- /out/blueVC_1_254.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueVC_1_254.png -------------------------------------------------------------------------------- /out/blueVC_1_51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueVC_1_51.png -------------------------------------------------------------------------------- /out/blueVC_1_76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueVC_1_76.png -------------------------------------------------------------------------------- /out/blueVC_2.histogram.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueVC_2.histogram.csv -------------------------------------------------------------------------------- /out/blueVC_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueVC_2.png -------------------------------------------------------------------------------- /out/blueVC_2_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueVC_2_1.png -------------------------------------------------------------------------------- /out/blueVC_2_102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueVC_2_102.png -------------------------------------------------------------------------------- /out/blueVC_2_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueVC_2_128.png -------------------------------------------------------------------------------- /out/blueVC_2_153.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueVC_2_153.png -------------------------------------------------------------------------------- /out/blueVC_2_179.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueVC_2_179.png -------------------------------------------------------------------------------- /out/blueVC_2_204.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueVC_2_204.png -------------------------------------------------------------------------------- /out/blueVC_2_230.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueVC_2_230.png -------------------------------------------------------------------------------- /out/blueVC_2_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueVC_2_25.png -------------------------------------------------------------------------------- /out/blueVC_2_254.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueVC_2_254.png -------------------------------------------------------------------------------- /out/blueVC_2_51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueVC_2_51.png -------------------------------------------------------------------------------- /out/blueVC_2_76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/blueVC_2_76.png -------------------------------------------------------------------------------- /out/redFRS.histogram.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/redFRS.histogram.csv -------------------------------------------------------------------------------- /out/redFRS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/redFRS.png -------------------------------------------------------------------------------- /out/redFRS_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/redFRS_1.png -------------------------------------------------------------------------------- /out/redFRS_102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/redFRS_102.png -------------------------------------------------------------------------------- /out/redFRS_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/redFRS_128.png -------------------------------------------------------------------------------- /out/redFRS_153.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/redFRS_153.png -------------------------------------------------------------------------------- /out/redFRS_179.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/redFRS_179.png -------------------------------------------------------------------------------- /out/redFRS_204.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/redFRS_204.png -------------------------------------------------------------------------------- /out/redFRS_230.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/redFRS_230.png -------------------------------------------------------------------------------- /out/redFRS_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/redFRS_25.png -------------------------------------------------------------------------------- /out/redFRS_254.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/redFRS_254.png -------------------------------------------------------------------------------- /out/redFRS_51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/redFRS_51.png -------------------------------------------------------------------------------- /out/redFRS_76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/redFRS_76.png -------------------------------------------------------------------------------- /out/redLPF.histogram.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/redLPF.histogram.csv -------------------------------------------------------------------------------- /out/redLPF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/redLPF.png -------------------------------------------------------------------------------- /out/redLPF_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/redLPF_1.png -------------------------------------------------------------------------------- /out/redLPF_102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/redLPF_102.png -------------------------------------------------------------------------------- /out/redLPF_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/redLPF_128.png -------------------------------------------------------------------------------- /out/redLPF_153.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/redLPF_153.png -------------------------------------------------------------------------------- /out/redLPF_179.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/redLPF_179.png -------------------------------------------------------------------------------- /out/redLPF_204.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/redLPF_204.png -------------------------------------------------------------------------------- /out/redLPF_230.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/redLPF_230.png -------------------------------------------------------------------------------- /out/redLPF_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/redLPF_25.png -------------------------------------------------------------------------------- /out/redLPF_254.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/redLPF_254.png -------------------------------------------------------------------------------- /out/redLPF_51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/redLPF_51.png -------------------------------------------------------------------------------- /out/redLPF_76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/redLPF_76.png -------------------------------------------------------------------------------- /out/redPaniq.histogram.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/redPaniq.histogram.csv -------------------------------------------------------------------------------- /out/redPaniq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/redPaniq.png -------------------------------------------------------------------------------- /out/redPaniq_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/redPaniq_1.png -------------------------------------------------------------------------------- /out/redPaniq_102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/redPaniq_102.png -------------------------------------------------------------------------------- /out/redPaniq_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/redPaniq_128.png -------------------------------------------------------------------------------- /out/redPaniq_153.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/redPaniq_153.png -------------------------------------------------------------------------------- /out/redPaniq_179.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/redPaniq_179.png -------------------------------------------------------------------------------- /out/redPaniq_204.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/redPaniq_204.png -------------------------------------------------------------------------------- /out/redPaniq_230.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/redPaniq_230.png -------------------------------------------------------------------------------- /out/redPaniq_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/redPaniq_25.png -------------------------------------------------------------------------------- /out/redPaniq_254.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/redPaniq_254.png -------------------------------------------------------------------------------- /out/redPaniq_51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/redPaniq_51.png -------------------------------------------------------------------------------- /out/redPaniq_76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/redPaniq_76.png -------------------------------------------------------------------------------- /out/redSwap10.data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/redSwap10.data.csv -------------------------------------------------------------------------------- /out/redSwap10.histogram.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/redSwap10.histogram.csv -------------------------------------------------------------------------------- /out/redSwap10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/redSwap10.png -------------------------------------------------------------------------------- /out/redSwap10_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/redSwap10_1.png -------------------------------------------------------------------------------- /out/redSwap10_102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/redSwap10_102.png -------------------------------------------------------------------------------- /out/redSwap10_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/redSwap10_128.png -------------------------------------------------------------------------------- /out/redSwap10_153.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/redSwap10_153.png -------------------------------------------------------------------------------- /out/redSwap10_179.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/redSwap10_179.png -------------------------------------------------------------------------------- /out/redSwap10_204.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/redSwap10_204.png -------------------------------------------------------------------------------- /out/redSwap10_230.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/redSwap10_230.png -------------------------------------------------------------------------------- /out/redSwap10_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/redSwap10_25.png -------------------------------------------------------------------------------- /out/redSwap10_254.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/redSwap10_254.png -------------------------------------------------------------------------------- /out/redSwap10_51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/redSwap10_51.png -------------------------------------------------------------------------------- /out/redSwap10_76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/redSwap10_76.png -------------------------------------------------------------------------------- /out/white.histogram.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/white.histogram.csv -------------------------------------------------------------------------------- /out/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/white.png -------------------------------------------------------------------------------- /out/white_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/white_1.png -------------------------------------------------------------------------------- /out/white_102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/white_102.png -------------------------------------------------------------------------------- /out/white_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/white_128.png -------------------------------------------------------------------------------- /out/white_153.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/white_153.png -------------------------------------------------------------------------------- /out/white_179.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/white_179.png -------------------------------------------------------------------------------- /out/white_204.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/white_204.png -------------------------------------------------------------------------------- /out/white_230.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/white_230.png -------------------------------------------------------------------------------- /out/white_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/white_25.png -------------------------------------------------------------------------------- /out/white_254.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/white_254.png -------------------------------------------------------------------------------- /out/white_51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/white_51.png -------------------------------------------------------------------------------- /out/white_76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/out/white_76.png -------------------------------------------------------------------------------- /scoped_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/scoped_timer.h -------------------------------------------------------------------------------- /settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/settings.h -------------------------------------------------------------------------------- /simple_fft/check_fft.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/simple_fft/check_fft.hpp -------------------------------------------------------------------------------- /simple_fft/copy_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/simple_fft/copy_array.hpp -------------------------------------------------------------------------------- /simple_fft/error_handling.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/simple_fft/error_handling.hpp -------------------------------------------------------------------------------- /simple_fft/fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/simple_fft/fft.h -------------------------------------------------------------------------------- /simple_fft/fft.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/simple_fft/fft.hpp -------------------------------------------------------------------------------- /simple_fft/fft_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/simple_fft/fft_impl.hpp -------------------------------------------------------------------------------- /simple_fft/fft_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/simple_fft/fft_settings.h -------------------------------------------------------------------------------- /stb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/stb/README.md -------------------------------------------------------------------------------- /stb/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/stb/stb_image.h -------------------------------------------------------------------------------- /stb/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/stb/stb_image_write.h -------------------------------------------------------------------------------- /vec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/vec.h -------------------------------------------------------------------------------- /whitenoise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Atrix256/BlueNoiseDitherPatternGeneration/HEAD/whitenoise.h --------------------------------------------------------------------------------