documentation error imwrite (Bug #1843)
Description
In the page : http://opencv.itseez.com/doc/user_guide/ug_mat.html#images
We have
Save an image to a file:
Mat img = imwrite(filename);
It should be :
Save an image to a file:
imwrite(filename, img);
Associated revisions
corrected typo (ticket #1843). added note about imdecode & imencode
History
Updated by Vadim Pisarevsky almost 13 years ago
thanks! fixed in r8176
Updated by Vadim Pisarevsky almost 13 years ago
- Status changed from Open to Done
- Assignee set to Vadim Pisarevsky