mirror of
https://github.com/opencv/opencv.git
synced 2024-11-26 04:00:30 +08:00
remove new operator
This commit is contained in:
parent
5e08d588f8
commit
587e9a554e
@ -569,14 +569,9 @@ namespace colormap
|
||||
CV_Error(Error::StsAssert, "cv::LUT only supports tables of size 256.");
|
||||
if (userColor.type() != CV_8UC1 && userColor.type() != CV_8UC3)
|
||||
CV_Error(Error::StsAssert, "cv::LUT only supports tables CV_8UC1 or CV_8UC3.");
|
||||
colormap::ColorMap* cm = (colormap::ColorMap*) (new colormap::UserColorMap(userColor.getMat()));
|
||||
colormap::UserColorMap cm(userColor.getMat());
|
||||
|
||||
if (!cm)
|
||||
CV_Error(Error::StsBadArg, "Unknown inputArray");
|
||||
|
||||
(*cm)(src, dst);
|
||||
|
||||
delete cm;
|
||||
(cm)(src, dst);
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user