Home
last modified time | relevance | path

Searched refs:CV_EXPORTS_W (Results 1 – 25 of 31) sorted by relevance

12

/external/opencv3/modules/photo/include/opencv2/
Dphoto.hpp112 CV_EXPORTS_W void inpaint( InputArray src, InputArray inpaintMask,
138 CV_EXPORTS_W void fastNlMeansDenoising( InputArray src, OutputArray dst, float h = 3,
165 CV_EXPORTS_W void fastNlMeansDenoising( InputArray src, OutputArray dst,
188 CV_EXPORTS_W void fastNlMeansDenoisingColored( InputArray src, OutputArray dst,
215 CV_EXPORTS_W void fastNlMeansDenoisingMulti( InputArrayOfArrays srcImgs, OutputArray dst,
244 CV_EXPORTS_W void fastNlMeansDenoisingMulti( InputArrayOfArrays srcImgs, OutputArray dst,
273 CV_EXPORTS_W void fastNlMeansDenoisingColoredMulti( InputArrayOfArrays srcImgs, OutputArray dst,
315 CV_EXPORTS_W void denoise_TVL1(const std::vector<Mat>& observations,Mat& result, double lambda=1.0,…
326 class CV_EXPORTS_W Tonemap : public Algorithm
346 CV_EXPORTS_W Ptr<Tonemap> createTonemap(float gamma = 1.0f);
[all …]
/external/opencv3/modules/core/include/opencv2/
Dcore.hpp263 CV_EXPORTS_W int borderInterpolate(int p, int len, int borderType);
308 CV_EXPORTS_W void copyMakeBorder(InputArray src, OutputArray dst,
348 CV_EXPORTS_W void add(InputArray src1, InputArray src2, OutputArray dst,
388 CV_EXPORTS_W void subtract(InputArray src1, InputArray src2, OutputArray dst,
413 CV_EXPORTS_W void multiply(InputArray src1, InputArray src2,
436 CV_EXPORTS_W void divide(InputArray src1, InputArray src2, OutputArray dst,
440 CV_EXPORTS_W void divide(double scale, InputArray src2,
461 CV_EXPORTS_W void scaleAdd(InputArray src1, double alpha, InputArray src2, OutputArray dst);
485 CV_EXPORTS_W void addWeighted(InputArray src1, double alpha, InputArray src2,
513 CV_EXPORTS_W void convertScaleAbs(InputArray src, OutputArray dst,
[all …]
/external/opencv3/modules/imgproc/include/opencv2/
Dimgproc.hpp860 class CV_EXPORTS_W CLAHE : public Algorithm
875 class CV_EXPORTS_W Subdiv2D
976 class CV_EXPORTS_W LineSegmentDetector : public Algorithm
1039 CV_EXPORTS_W Ptr<LineSegmentDetector> createLineSegmentDetector(
1067 CV_EXPORTS_W Mat getGaussianKernel( int ksize, double sigma, int ktype = CV_64F );
1087 CV_EXPORTS_W void getDerivKernels( OutputArray kx, OutputArray ky,
1104 CV_EXPORTS_W Mat getGaborKernel( Size ksize, double sigma, double theta, double lambd,
1123 CV_EXPORTS_W Mat getStructuringElement(int shape, Size ksize, Point anchor = Point(-1,-1));
1137 CV_EXPORTS_W void medianBlur( InputArray src, OutputArray dst, int ksize );
1159 CV_EXPORTS_W void GaussianBlur( InputArray src, OutputArray dst, Size ksize,
[all …]
/external/opencv3/modules/calib3d/include/opencv2/
Dcalib3d.hpp257 CV_EXPORTS_W void Rodrigues( InputArray src, OutputArray dst, OutputArray jacobian = noArray() );
323 CV_EXPORTS_W Mat findHomography( InputArray srcPoints, InputArray dstPoints,
351 CV_EXPORTS_W Vec3d RQDecomp3x3( InputArray src, OutputArray mtxR, OutputArray mtxQ,
378 CV_EXPORTS_W void decomposeProjectionMatrix( InputArray projMatrix, OutputArray cameraMatrix,
398 CV_EXPORTS_W void matMulDeriv( InputArray A, InputArray B, OutputArray dABdA, OutputArray dABdB );
430 CV_EXPORTS_W void composeRT( InputArray rvec1, InputArray tvec1,
470 CV_EXPORTS_W void projectPoints( InputArray objectPoints,
528 CV_EXPORTS_W bool solvePnP( InputArray objectPoints, InputArray imagePoints,
567 CV_EXPORTS_W bool solvePnPRansac( InputArray objectPoints, InputArray imagePoints,
589 CV_EXPORTS_W Mat initCameraMatrix2D( InputArrayOfArrays objectPoints,
[all …]
/external/opencv3/modules/shape/include/opencv2/shape/
Dhist_cost.hpp57 class CV_EXPORTS_W HistogramCostExtractor : public Algorithm
71 class CV_EXPORTS_W NormHistogramCostExtractor : public HistogramCostExtractor
78 CV_EXPORTS_W Ptr<HistogramCostExtractor>
83 class CV_EXPORTS_W EMDHistogramCostExtractor : public HistogramCostExtractor
90 CV_EXPORTS_W Ptr<HistogramCostExtractor>
95 class CV_EXPORTS_W ChiHistogramCostExtractor : public HistogramCostExtractor
98 CV_EXPORTS_W Ptr<HistogramCostExtractor> createChiHistogramCostExtractor(int nDummies=25, float def…
102 class CV_EXPORTS_W EMDL1HistogramCostExtractor : public HistogramCostExtractor
105 CV_EXPORTS_W Ptr<HistogramCostExtractor>
Dshape_transformer.hpp58 class CV_EXPORTS_W ShapeTransformer : public Algorithm
98 class CV_EXPORTS_W ThinPlateSplineShapeTransformer : public ShapeTransformer
111 CV_EXPORTS_W Ptr<ThinPlateSplineShapeTransformer>
119 class CV_EXPORTS_W AffineTransformer : public ShapeTransformer
127 CV_EXPORTS_W Ptr<AffineTransformer> createAffineTransformer(bool fullAffine);
Dshape_distance.hpp58 class CV_EXPORTS_W ShapeDistanceExtractor : public Algorithm
78 class CV_EXPORTS_W ShapeContextDistanceExtractor : public ShapeDistanceExtractor
183 CV_EXPORTS_W Ptr<ShapeContextDistanceExtractor>
197 class CV_EXPORTS_W HausdorffDistanceExtractor : public ShapeDistanceExtractor
219 CV_EXPORTS_W Ptr<HausdorffDistanceExtractor> createHausdorffDistanceExtractor(int distanceFlag=cv::…
/external/opencv3/modules/highgui/include/opencv2/
Dhighgui.hpp231 CV_EXPORTS_W void namedWindow(const String& winname, int flags = WINDOW_AUTOSIZE);
239 CV_EXPORTS_W void destroyWindow(const String& winname);
245 CV_EXPORTS_W void destroyAllWindows();
247 CV_EXPORTS_W int startWindowThread();
270 CV_EXPORTS_W int waitKey(int delay = 0);
305 CV_EXPORTS_W void imshow(const String& winname, InputArray mat);
318 CV_EXPORTS_W void resizeWindow(const String& winname, int width, int height);
326 CV_EXPORTS_W void moveWindow(const String& winname, int x, int y);
349 CV_EXPORTS_W void setWindowProperty(const String& winname, int prop_id, double prop_value);
353 CV_EXPORTS_W void setWindowTitle(const String& winname, const String& title);
[all …]
/external/opencv3/modules/core/misc/java/src/cpp/
Dcore_manual.hpp8 CV_EXPORTS_W void setErrorVerbosity(bool verbose);
16 CV_EXPORTS_W void add(InputArray src1, Scalar src2, OutputArray dst, InputArray mask=noArray(), int…
18 CV_EXPORTS_W void subtract(InputArray src1, Scalar src2, OutputArray dst, InputArray mask=noArray()…
20 CV_EXPORTS_W void multiply(InputArray src1, Scalar src2, OutputArray dst, double scale=1, int dtype…
22 CV_EXPORTS_W void divide(InputArray src1, Scalar src2, OutputArray dst, double scale=1, int dtype=-…
24 CV_EXPORTS_W void absdiff(InputArray src1, Scalar src2, OutputArray dst);
26 CV_EXPORTS_W void compare(InputArray src1, Scalar src2, OutputArray dst, int cmpop);
28 CV_EXPORTS_W void min(InputArray src1, Scalar src2, OutputArray dst);
30 CV_EXPORTS_W void max(InputArray src1, Scalar src2, OutputArray dst);
/external/opencv3/modules/video/include/opencv2/video/
Dtracking.hpp79 CV_EXPORTS_W RotatedRect CamShift( InputArray probImage, CV_IN_OUT Rect& window,
103 CV_EXPORTS_W int meanShift( InputArray probImage, CV_IN_OUT Rect& window, TermCriteria criteria );
120 CV_EXPORTS_W int buildOpticalFlowPyramid( InputArray img, OutputArrayOfArrays pyramid,
173 CV_EXPORTS_W void calcOpticalFlowPyrLK( InputArray prevImg, InputArray nextImg,
218 CV_EXPORTS_W void calcOpticalFlowFarneback( InputArray prev, InputArray next, InputOutputArray flow,
250 CV_EXPORTS_W Mat estimateRigidTransform( InputArray src, InputArray dst, bool fullAffine );
311 CV_EXPORTS_W double findTransformECC( InputArray templateImage, InputArray inputImage,
327 class CV_EXPORTS_W KalmanFilter
385 class CV_EXPORTS_W DenseOpticalFlow : public Algorithm
442 class CV_EXPORTS_W DualTVL1OpticalFlow : public DenseOpticalFlow
[all …]
Dbackground_segm.hpp60 class CV_EXPORTS_W BackgroundSubtractor : public Algorithm
90 class CV_EXPORTS_W BackgroundSubtractorMOG2 : public BackgroundSubtractor
209 CV_EXPORTS_W Ptr<BackgroundSubtractorMOG2>
218 class CV_EXPORTS_W BackgroundSubtractorKNN : public BackgroundSubtractor
298 CV_EXPORTS_W Ptr<BackgroundSubtractorKNN>
/external/opencv3/modules/imgcodecs/include/opencv2/
Dimgcodecs.hpp132 CV_EXPORTS_W Mat imread( const String& filename, int flags = IMREAD_COLOR );
141 CV_EXPORTS_W bool imreadmulti(const String& filename, std::vector<Mat>& mats, int flags = IMREAD_AN…
207 CV_EXPORTS_W bool imwrite( const String& filename, InputArray img,
211 CV_EXPORTS_W Mat imdecode( InputArray buf, int flags );
242 CV_EXPORTS_W bool imencode( const String& ext, InputArray img,
/external/opencv3/modules/features2d/include/opencv2/
Dfeatures2d.hpp132 class CV_EXPORTS_W Feature2D : public virtual Algorithm
220 class CV_EXPORTS_W BRISK : public Feature2D
254 class CV_EXPORTS_W ORB : public Feature2D
330 class CV_EXPORTS_W MSER : public Feature2D
388 class CV_EXPORTS_W FastFeatureDetector : public Feature2D
439 class CV_EXPORTS_W AgastFeatureDetector : public Feature2D
464 class CV_EXPORTS_W GFTTDetector : public Feature2D
519 class CV_EXPORTS_W SimpleBlobDetector : public Feature2D
565 class CV_EXPORTS_W KAZE : public Feature2D
617 class CV_EXPORTS_W AKAZE : public Feature2D
[all …]
/external/opencv3/modules/ml/include/opencv2/
Dml.hpp137 class CV_EXPORTS_W TrainData
290 class CV_EXPORTS_W StatModel : public Algorithm
370 class CV_EXPORTS_W NormalBayesClassifier : public StatModel
397 class CV_EXPORTS_W KNearest : public StatModel
479 class CV_EXPORTS_W SVM : public StatModel
722 class CV_EXPORTS_W EM : public StatModel
919 class CV_EXPORTS_W DTrees : public StatModel
1102 class CV_EXPORTS_W RTrees : public DTrees
1156 class CV_EXPORTS_W Boost : public DTrees
1244 class CV_EXPORTS_W ANN_MLP : public StatModel
[all …]
/external/opencv3/modules/core/include/opencv2/core/
Dutility.hpp244 CV_EXPORTS_W const String& getBuildInformation();
252 CV_EXPORTS_W int64 getTickCount();
264 CV_EXPORTS_W double getTickFrequency();
278 CV_EXPORTS_W int64 getCPUTickCount();
319 CV_EXPORTS_W bool checkHardwareSupport(int feature);
323 CV_EXPORTS_W int getNumberOfCPUs();
364 CV_EXPORTS_W void setUseOptimized(bool onoff);
370 CV_EXPORTS_W bool useOptimized();
Docl.hpp52 CV_EXPORTS_W bool haveOpenCL();
53 CV_EXPORTS_W bool useOpenCL();
54 CV_EXPORTS_W bool haveAmdBlas();
55 CV_EXPORTS_W bool haveAmdFft();
56 CV_EXPORTS_W void setUseOpenCL(bool flag);
57 CV_EXPORTS_W void finish();
Doptim.hpp296 CV_EXPORTS_W int solveLP(const Mat& Func, const Mat& Constr, Mat& z);
/external/opencv3/doc/py_tutorials/py_bindings/py_bindings_basics/
Dpy_bindings_basics.markdown70 Functions are extended using CV_EXPORTS_W macro. An example is shown below.
72 CV_EXPORTS_W void equalizeHist( InputArray src, OutputArray dst );
78 CV_EXPORTS_W void minEnclosingCircle( InputArray points,
81 For large classes also, CV_EXPORTS_W is used. To extend class methods, CV_WRAP is used.
84 class CV_EXPORTS_W CLAHE : public Algorithm
99 CV_EXPORTS_W void integral( InputArray src, OutputArray sum, int sdepth = -1 );
/external/opencv3/modules/objdetect/include/opencv2/
Dobjdetect.hpp153 CV_EXPORTS_W void groupRectangles(CV_IN_OUT std::vector<Rect>& rectList, CV_OUT std::vector<int>& w…
174 class CV_EXPORTS_W BaseCascadeClassifier : public Algorithm
220 class CV_EXPORTS_W CascadeClassifier
337 struct CV_EXPORTS_W HOGDescriptor
/external/opencv3/modules/world/include/opencv2/
Dworld.hpp52 CV_EXPORTS_W bool initAll();
/external/opencv3/modules/stitching/include/opencv2/
Dstitching.hpp96 class CV_EXPORTS_W Stitcher
251 CV_EXPORTS_W Ptr<Stitcher> createStitcher(bool try_use_gpu = false);
/external/opencv3/modules/videoio/include/opencv2/
Dvideoio.hpp383 class CV_EXPORTS_W VideoCapture
552 class CV_EXPORTS_W VideoWriter
/external/opencv3/modules/ml/src/
Dkdtree.hpp35 class CV_EXPORTS_W KDTree
/external/opencv3/modules/flann/include/opencv2/flann/
Dminiflann.hpp128 class CV_EXPORTS_W Index
/external/opencv3/modules/features2d/misc/java/src/cpp/
Dfeatures2d_manual.hpp412 CV_EXPORTS_W void drawKeypoints( const Mat& image, const std::vector<KeyPoint>& keypoints, Mat& out…
416 CV_EXPORTS_W void drawMatches( const Mat& img1, const std::vector<KeyPoint>& keypoints1,

12