Hi,
I'm capturing images using
IplImage* image = cvCreateImage(cvGetSize(image_in), 8, 3);
where image_in is e.g. 160x120 or 320x240. But so far, no matter the size, the images shown using imshow() are 640x480 while I want at max. 320x480. How can I do that ?
Thanks.