#ifndef _OPENCV3_IMGPROC_H_ #define _OPENCV3_IMGPROC_H_ #include #ifdef __cplusplus #include extern "C" { #endif #ifdef __cplusplus typedef cv::Ptr* CLAHE; #else typedef void* CLAHE; #endif #include "core.h" double ArcLength(PointVector curve, bool is_closed); PointVector ApproxPolyDP(PointVector curve, double epsilon, bool closed); void CvtColor(Mat src, Mat dst, int code); void EqualizeHist(Mat src, Mat dst); void CalcHist(struct Mats mats, IntVector chans, Mat mask, Mat hist, IntVector sz, FloatVector rng, bool acc); void CalcBackProject(struct Mats mats, IntVector chans, Mat hist, Mat backProject, FloatVector rng, bool uniform); double CompareHist(Mat hist1, Mat hist2, int method); void ConvexHull(PointVector points, Mat hull, bool clockwise, bool returnPoints); void ConvexityDefects(PointVector points, Mat hull, Mat result); void BilateralFilter(Mat src, Mat dst, int d, double sc, double ss); void Blur(Mat src, Mat dst, Size ps); void BoxFilter(Mat src, Mat dst, int ddepth, Size ps); void SqBoxFilter(Mat src, Mat dst, int ddepth, Size ps); void Dilate(Mat src, Mat dst, Mat kernel); void DilateWithParams(Mat src, Mat dst, Mat kernel, Point anchor, int iterations, int borderType, Scalar borderValue); void DistanceTransform(Mat src, Mat dst, Mat labels, int distanceType, int maskSize, int labelType); void Erode(Mat src, Mat dst, Mat kernel); void ErodeWithParams(Mat src, Mat dst, Mat kernel, Point anchor, int iterations, int borderType); void MatchTemplate(Mat image, Mat templ, Mat result, int method, Mat mask); struct Moment Moments(Mat src, bool binaryImage); void PyrDown(Mat src, Mat dst, Size dstsize, int borderType); void PyrUp(Mat src, Mat dst, Size dstsize, int borderType); struct Rect BoundingRect(PointVector pts); void BoxPoints(RotatedRect rect, Mat boxPts); double ContourArea(PointVector pts); struct RotatedRect MinAreaRect(PointVector pts); struct RotatedRect FitEllipse(PointVector pts); void MinEnclosingCircle(PointVector pts, Point2f* center, float* radius); PointsVector FindContours(Mat src, Mat hierarchy, int mode, int method); double PointPolygonTest(PointVector pts, Point pt, bool measureDist); int ConnectedComponents(Mat src, Mat dst, int connectivity, int ltype, int ccltype); int ConnectedComponentsWithStats(Mat src, Mat labels, Mat stats, Mat centroids, int connectivity, int ltype, int ccltype); void GaussianBlur(Mat src, Mat dst, Size ps, double sX, double sY, int bt); Mat GetGaussianKernel(int ksize, double sigma, int ktype); void Laplacian(Mat src, Mat dst, int dDepth, int kSize, double scale, double delta, int borderType); void Scharr(Mat src, Mat dst, int dDepth, int dx, int dy, double scale, double delta, int borderType); Mat GetStructuringElement(int shape, Size ksize); Scalar MorphologyDefaultBorderValue(); void MorphologyEx(Mat src, Mat dst, int op, Mat kernel); void MorphologyExWithParams(Mat src, Mat dst, int op, Mat kernel, Point pt, int iterations, int borderType); void MedianBlur(Mat src, Mat dst, int ksize); void Canny(Mat src, Mat edges, double t1, double t2); void CornerSubPix(Mat img, Mat corners, Size winSize, Size zeroZone, TermCriteria criteria); void GoodFeaturesToTrack(Mat img, Mat corners, int maxCorners, double quality, double minDist); void GrabCut(Mat img, Mat mask, Rect rect, Mat bgdModel, Mat fgdModel, int iterCount, int mode); void HoughCircles(Mat src, Mat circles, int method, double dp, double minDist); void HoughCirclesWithParams(Mat src, Mat circles, int method, double dp, double minDist, double param1, double param2, int minRadius, int maxRadius); void HoughLines(Mat src, Mat lines, double rho, double theta, int threshold); void HoughLinesP(Mat src, Mat lines, double rho, double theta, int threshold); void HoughLinesPWithParams(Mat src, Mat lines, double rho, double theta, int threshold, double minLineLength, double maxLineGap); void HoughLinesPointSet(Mat points, Mat lines, int lines_max, int threshold, double min_rho, double max_rho, double rho_step, double min_theta, double max_theta, double theta_step); void Integral(Mat src, Mat sum, Mat sqsum, Mat tilted); double Threshold(Mat src, Mat dst, double thresh, double maxvalue, int typ); void AdaptiveThreshold(Mat src, Mat dst, double maxValue, int adaptiveTyp, int typ, int blockSize, double c); void ArrowedLine(Mat img, Point pt1, Point pt2, Scalar color, int thickness); void Circle(Mat img, Point center, int radius, Scalar color, int thickness); void CircleWithParams(Mat img, Point center, int radius, Scalar color, int thickness, int lineType, int shift); void Ellipse(Mat img, Point center, Point axes, double angle, double startAngle, double endAngle, Scalar color, int thickness); void EllipseWithParams(Mat img, Point center, Point axes, double angle, double startAngle, double endAngle, Scalar color, int thickness, int lineType, int shift); void Line(Mat img, Point pt1, Point pt2, Scalar color, int thickness); void Rectangle(Mat img, Rect rect, Scalar color, int thickness); void RectangleWithParams(Mat img, Rect rect, Scalar color, int thickness, int lineType, int shift); void FillPoly(Mat img, PointsVector points, Scalar color); void FillPolyWithParams(Mat img, PointsVector points, Scalar color, int lineType, int shift, Point offset); void Polylines(Mat img, PointsVector points, bool isClosed, Scalar color, int thickness); struct Size GetTextSize(const char* text, int fontFace, double fontScale, int thickness); struct Size GetTextSizeWithBaseline(const char* text, int fontFace, double fontScale, int thickness, int* baseline); void PutText(Mat img, const char* text, Point org, int fontFace, double fontScale, Scalar color, int thickness); void PutTextWithParams(Mat img, const char* text, Point org, int fontFace, double fontScale, Scalar color, int thickness, int lineType, bool bottomLeftOrigin); void Resize(Mat src, Mat dst, Size sz, double fx, double fy, int interp); void GetRectSubPix(Mat src, Size patchSize, Point center, Mat dst); Mat GetRotationMatrix2D(Point center, double angle, double scale); void WarpAffine(Mat src, Mat dst, Mat rot_mat, Size dsize); void WarpAffineWithParams(Mat src, Mat dst, Mat rot_mat, Size dsize, int flags, int borderMode, Scalar borderValue); void WarpPerspective(Mat src, Mat dst, Mat m, Size dsize); void WarpPerspectiveWithParams(Mat src, Mat dst, Mat rot_mat, Size dsize, int flags, int borderMode, Scalar borderValue); void Watershed(Mat image, Mat markers); void ApplyColorMap(Mat src, Mat dst, int colormap); void ApplyCustomColorMap(Mat src, Mat dst, Mat colormap); Mat GetPerspectiveTransform(PointVector src, PointVector dst); Mat GetPerspectiveTransform2f(Point2fVector src, Point2fVector dst); Mat GetAffineTransform(PointVector src, PointVector dst); Mat GetAffineTransform2f(Point2fVector src, Point2fVector dst); Mat FindHomography(Mat src, Mat dst, int method, double ransacReprojThreshold, Mat mask, const int maxIters, const double confidence) ; void DrawContours(Mat src, PointsVector contours, int contourIdx, Scalar color, int thickness); void DrawContoursWithParams(Mat src, PointsVector contours, int contourIdx, Scalar color, int thickness, int lineType, Mat hierarchy, int maxLevel, Point offset); void Sobel(Mat src, Mat dst, int ddepth, int dx, int dy, int ksize, double scale, double delta, int borderType); void SpatialGradient(Mat src, Mat dx, Mat dy, int ksize, int borderType); void Remap(Mat src, Mat dst, Mat map1, Mat map2, int interpolation, int borderMode, Scalar borderValue); void Filter2D(Mat src, Mat dst, int ddepth, Mat kernel, Point anchor, double delta, int borderType); void SepFilter2D(Mat src, Mat dst, int ddepth, Mat kernelX, Mat kernelY, Point anchor, double delta, int borderType); void LogPolar(Mat src, Mat dst, Point center, double m, int flags); void FitLine(PointVector pts, Mat line, int distType, double param, double reps, double aeps); void LinearPolar(Mat src, Mat dst, Point center, double maxRadius, int flags); bool ClipLine(Size imgSize, Point pt1, Point pt2); CLAHE CLAHE_Create(); CLAHE CLAHE_CreateWithParams(double clipLimit, Size tileGridSize); void CLAHE_Close(CLAHE c); void CLAHE_Apply(CLAHE c, Mat src, Mat dst); void InvertAffineTransform(Mat src, Mat dst); Point2f PhaseCorrelate(Mat src1, Mat src2, Mat window, double* response); void Mat_Accumulate(Mat src, Mat dst); void Mat_AccumulateWithMask(Mat src, Mat dst, Mat mask); void Mat_AccumulateSquare(Mat src, Mat dst); void Mat_AccumulateSquareWithMask(Mat src, Mat dst, Mat mask); void Mat_AccumulateProduct(Mat src1, Mat src2, Mat dst); void Mat_AccumulateProductWithMask(Mat src1, Mat src2, Mat dst, Mat mask); void Mat_AccumulatedWeighted(Mat src, Mat dst, double alpha); void Mat_AccumulatedWeightedWithMask(Mat src, Mat dst, double alpha, Mat mask); #ifdef __cplusplus } #endif #endif //_OPENCV3_IMGPROC_H_