1 | initial version |
I suggest you take a look at the tutorial here regarding writing images on disk. The line which you probably need is the following:
imwrite( "../where/you/want/it/to/be/saved/, img);
2 | No.2 Revision |
I suggest you take a look at the tutorial here regarding writing images on disk. The line which you probably need is the following:
imwrite( "../where/you/want/it/to/be/saved/, img);
instead of the function that shows the image in a window via:
imshow("wooohooo", img);
which you currently have.
3 | No.3 Revision |
I suggest you take a look at the tutorial here regarding writing images on disk. The line which you probably need is the following:
imwrite( "../where/you/want/it/to/be/saved/, "../where/you/want/it/to/be/saved/", img);
instead of the function that shows the image in a window via:
imshow("wooohooo", img);
which you currently have.