
URL: https://svn.lrde.epita.fr/svn/oln/trunk/milena/sandbox ChangeLog: 2009-09-07 Fabien Freling <fabien.freling@lrde.epita.fr> Fix output dimensions. * fabien/mln/upsampling/hq4x.hh: Fix output dimensions. --- hq4x.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: trunk/milena/sandbox/fabien/mln/upsampling/hq4x.hh =================================================================== --- trunk/milena/sandbox/fabien/mln/upsampling/hq4x.hh (revision 4433) +++ trunk/milena/sandbox/fabien/mln/upsampling/hq4x.hh (revision 4434) @@ -340,7 +340,7 @@ int nrows = geom::nrows(input); int ncols = geom::ncols(input); - mln_concrete(image2d<T>) output(nrows * 3, ncols * 3); + mln_concrete(image2d<T>) output(nrows * 4, ncols * 4); int LUT16to32[65536]; int RGBtoYUV[65536];