Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

Hi. I'm can't resize the size of images I saved in text file to a particular size.

for (unsigned int i = 0; i < testImages.size(); i++) { Mat img_2; img_2 = testImages[i]; Size size(50,50);//the dst image size,e.g.100x100 Mat dst;//dst image //Mat src;//src image resize(img_2,dst,size);//resize image }

Hi. I'm can't resize the size of images I saved in text file to a particular size.

for (unsigned int i = 0; i < testImages.size(); i++) { Mat img_2; img_2 = testImages[i]; Size size(50,50);//the dst image size,e.g.100x100 Mat dst;//dst image //Mat src;//src image resize(img_2,dst,size);//resize image }

Hi. I'm can't resize the size of images I saved in text file to a particular size.

for (unsigned int i = 0; i < testImages.size(); i++) { Mat img_2; img_2 = testImages[i]; Size size(50,50);//the dst image size,e.g.100x100 Mat dst;//dst image resize(img_2,dst,size);//resize image }

click to hide/show revision 4
No.4 Revision

Hi. I'm can't resize the size of images I saved in text file to a particular size.

for (unsigned int i = 0; i < testImages.size(); i++)
     {
         Mat img_2;
         img_2 = testImages[i];
         Size size(50,50);//the dst image size,e.g.100x100
         Mat dst;//dst image
         resize(img_2,dst,size);//resize image
   }

}