Ver código fonte

test: blue noise kernel generator.

undefined
Sam Hocevar 10 anos atrás
pai
commit
d040954588
1 arquivos alterados com 11 adições e 2 exclusões
  1. +11
    -2
      demos/test/sandbox/sample.cpp

+ 11
- 2
demos/test/sandbox/sample.cpp Ver arquivo

@@ -18,9 +18,18 @@ using namespace lol;

int main(int argc, char **argv)
{
UNUSED(argc, argv);
ivec2 size(128, 128);

if (argc > 1)
size.x = size.y = atoi(argv[1]);
if (argc > 2)
size.y = atoi(argv[2]);

array2d<float> vac = Image::BlueNoiseKernel(size);
for (int y = 0; y < size.y; ++y)
for (int x = 0; x < size.x; ++x)
printf("%d %d %f\n", x, y, vac[x][y]);

/* Insert any test code here */
return EXIT_SUCCESS;
}


Carregando…
Cancelar
Salvar