Delphi-OpenCV/source3/opencv_classes/imgproc_prx.cpp
Laentir Valetov 1b0632f752 Directory restructuring ...
Signed-off-by: Laentir Valetov <laex@bk.ru>
2019-12-18 00:44:54 +04:00

16 lines
314 B
C++

#include "stdafx.h"
namespace cv
{
ICLASS_API void __stdcall prxCanny(IplImage* image, IplImage* edges,
double threshold1, double threshold2,
int apertureSize, bool L2gradient)
{
Mat _edges;
Canny(Mat(image), _edges, threshold1, threshold2, apertureSize, L2gradient);
cvCopy(&(IplImage)_edges, edges);
}
}