1 | initial version |
Didn't a question like this appear yesterday as well? Seems like homework assignment from some class. In your case, you need to move the namedWindow
call before the loop and waitKey
call just after imshow
inside the loop.
2 | Added link to other question. |
Didn't a question like this appear yesterday as well? well here? Seems like homework assignment from some class. In your case, you need to move the namedWindow
call before the loop and waitKey
call just after imshow
inside the loop.
3 | No.3 Revision |
Didn't a question like this appear yesterday as well here? Seems like homework assignment from some class. In your case, you need to move the namedWindow
call before the loop and waitKey
call just after imshow
inside the loop.
In your imshow
, you should display the last image you added to the vector, instead of the whole vector. So, your call should be: imshow ( "smallImages", cv::Mat ( image, rect );
.
4 | No.4 Revision |
Didn't a question like this appear yesterday as well here? Seems like homework assignment from some class. In your case, you need to move the namedWindow
call before the loop and waitKey
call just after imshow
inside the loop.
In your imshow
, you should display the last image you added to the vector, instead of the whole vector. So, your call should be: imshow ( "smallImages", cv::Mat ( image, rect
.);));