1 | initial version |
Correct me If I am wrong, The cvScale function (http://docs.opencv.org/modules/core/doc/old_basic_structures.html#convertscale) performs dst(I) = Scale*Src(I) + Shift, For which the c++ equivalent is convertTo. I cant comprehend, how the resize function will be a equivalent to cvScale.
2 | No.2 Revision |
Correct me If I am wrong, The cvScale function (http://docs.opencv.org/modules/core/doc/old_basic_structures.html#convertscale) performs
3 | No.3 Revision |
The cvScale function (http://docs.opencv.org/modules/core/doc/old_basic_structures.html#convertscale) performs
dst(I) = Scale*Src(I) + Shift,
For which the c++ equivalent is convertTo. Take a look at the document here. (http://docs.opencv.org/modules/core/doc/basic_structures.html#mat-convertto)