Starting to implement downsampling.

This commit is contained in:
Jorge Rodriguez
2014-07-24 19:10:45 -07:00
parent 7d8faf5727
commit 297266b27b
2 changed files with 101 additions and 33 deletions

View File

@ -39,8 +39,8 @@ int main(int argc, char** argv)
return 1;
}
out_w = 1024;
out_h = 1024;
out_w = 256;
out_h = 256;
out_stride = (out_w + 10) * n;
output_data = (unsigned char*)malloc(out_stride * out_h);