1
0
mirror of https://github.com/opencv/opencv_contrib.git synced 2025-10-19 02:16:34 +08:00

plot: make the module more customizable

This commit is contained in:
Vladislav Sovrasov
2017-08-01 15:23:29 +03:00
parent 2a9d1b22ed
commit 5c2dfcd448
3 changed files with 71 additions and 28 deletions

View File

@@ -165,7 +165,7 @@ struct AlgoWrap
void plotLTRC(Mat &img) const
{
Ptr<plot::Plot2d> p_ = plot::createPlot2d(getLTRC());
Ptr<plot::Plot2d> p_ = plot::Plot2d::create(getLTRC());
p_->render(img);
}