Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

if you use opencv2,you can do like this: Size size(100,100);//the dst image size,e.g.100x100 Mat dst;//dst image Mat src;//src image resize(src,dst,size);

if you use opencv2,you can do like this: this:

Size size(100,100);//the dst image size,e.g.100x100 size,e.g.100x100

Mat dst;//dst image image

Mat src;//src image image

resize(src,dst,size);

if you use opencv2,you can do like this:this:

Size size(100,100);//the dst image size,e.g.100x100size,e.g.100x100
Mat dst;//dst image
Mat src;//src image
resize(src,dst,size);//resize image

Mat dst;//dst image

Mat src;//src image

resize(src,dst,size);