Commit 488ae9dd authored by Vadim Pisarevsky's avatar Vadim Pisarevsky

corrected typo (ticket #1843). added note about imdecode & imencode

parent 75b1788c
......@@ -18,9 +18,15 @@ If you read a jpg file, a 3 channel image is created by default. If you need a g
Mat img = imread(filename, 0);
.. note:: format of the file is determined by its content (first few bytes)
Save an image to a file: ::
Mat img = imwrite(filename);
imwrite(filename, img);
.. note:: format of the file is determined by its extension.
.. note:: use ``imdecode`` and ``imencode`` to read and write image from/to memory rather than a file.
XML/YAML
--------
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment