Documentation: removed mention of Mat(IplImage*) constructor

This commit is contained in:
Maksim Shabunin
2014-12-02 15:15:10 +03:00
parent d3beb755df
commit 6d282ddf72
2 changed files with 6 additions and 18 deletions

View File

@@ -180,12 +180,6 @@ object in multiple ways:
dimension, then pass a pointer containing the size for each dimension and the rest remains the
same.
- Create a header for an already existing IplImage pointer:
@code{.cpp}
IplImage* img = cvLoadImage("greatwave.png", 1);
Mat mtx(img); // convert IplImage* -> Mat
@endcode
- @ref cv::Mat::create function:
@code
M.create(4,4, CV_8UC(2));