|
template<class Feature > |
void | _writeFeatures (const std::vector< Feature > features, FileStorage &fs, const Mat &featureMap) |
|
void | absdiff (InputArray src1, InputArray src2, OutputArray dst) |
| Calculates the per-element absolute difference between two arrays or between an array and a scalar. More...
|
|
void | accumulate (InputArray src, InputOutputArray dst, InputArray mask=noArray()) |
| Adds an image to the accumulator. More...
|
|
void | accumulateProduct (InputArray src1, InputArray src2, InputOutputArray dst, InputArray mask=noArray()) |
| Adds the per-element product of two input images to the accumulator. More...
|
|
void | accumulateSquare (InputArray src, InputOutputArray dst, InputArray mask=noArray()) |
| Adds the square of a source image to the accumulator. More...
|
|
void | accumulateWeighted (InputArray src, InputOutputArray dst, double alpha, InputArray mask=noArray()) |
| Updates a running average. More...
|
|
void | adaptiveThreshold (InputArray src, OutputArray dst, double maxValue, int adaptiveMethod, int thresholdType, int blockSize, double C) |
| Applies an adaptive threshold to an array. More...
|
|
void | add (InputArray src1, InputArray src2, OutputArray dst, InputArray mask=noArray(), int dtype=-1) |
| Calculates the per-element sum of two arrays or an array and a scalar. More...
|
|
void | addText (const Mat &img, const String &text, Point org, const QtFont &font) |
| Creates the font to draw a text on an image. More...
|
|
void | addWeighted (InputArray src1, double alpha, InputArray src2, double beta, double gamma, OutputArray dst, int dtype=-1) |
| Calculates the weighted sum of two arrays. More...
|
|
void | AGAST (InputArray image, std::vector< KeyPoint > &keypoints, int threshold, bool nonmaxSuppression=true) |
|
void | AGAST (InputArray image, std::vector< KeyPoint > &keypoints, int threshold, bool nonmaxSuppression, int type) |
| Detects corners using the AGAST algorithm. More...
|
|
template<typename _Tp > |
static _Tp * | alignPtr (_Tp *ptr, int n=(int) sizeof(_Tp)) |
| Aligns a pointer to the specified number of bytes. More...
|
|
static size_t | alignSize (size_t sz, int n) |
| Aligns a buffer size to the specified number of bytes. More...
|
|
void | applyColorMap (InputArray src, OutputArray dst, int colormap) |
| Applies a GNU Octave/MATLAB equivalent colormap on a given image. More...
|
|
void | approxPolyDP (InputArray curve, OutputArray approxCurve, double epsilon, bool closed) |
| Approximates a polygonal curve(s) with the specified precision. More...
|
|
double | arcLength (InputArray curve, bool closed) |
| Calculates a contour perimeter or a curve length. More...
|
|
void | arrowedLine (InputOutputArray img, Point pt1, Point pt2, const Scalar &color, int thickness=1, int line_type=8, int shift=0, double tipLength=0.1) |
| Draws a arrow segment pointing from the first point to the second one. More...
|
|
void | batchDistance (InputArray src1, InputArray src2, OutputArray dist, int dtype, OutputArray nidx, int normType=NORM_L2, int K=0, InputArray mask=noArray(), int update=0, bool crosscheck=false) |
| naive nearest neighbor finder More...
|
|
void | bilateralFilter (InputArray src, OutputArray dst, int d, double sigmaColor, double sigmaSpace, int borderType=BORDER_DEFAULT) |
| Applies the bilateral filter to an image. More...
|
|
void | bitwise_and (InputArray src1, InputArray src2, OutputArray dst, InputArray mask=noArray()) |
| computes bitwise conjunction of the two arrays (dst = src1 & src2) Calculates the per-element bit-wise conjunction of two arrays or an array and a scalar. More...
|
|
void | bitwise_not (InputArray src, OutputArray dst, InputArray mask=noArray()) |
| Inverts every bit of an array. More...
|
|
void | bitwise_or (InputArray src1, InputArray src2, OutputArray dst, InputArray mask=noArray()) |
| Calculates the per-element bit-wise disjunction of two arrays or an array and a scalar. More...
|
|
void | bitwise_xor (InputArray src1, InputArray src2, OutputArray dst, InputArray mask=noArray()) |
| Calculates the per-element bit-wise "exclusive or" operation on two arrays or an array and a scalar. More...
|
|
void | blendLinear (InputArray src1, InputArray src2, InputArray weights1, InputArray weights2, OutputArray dst) |
| Performs linear blending of two images. More...
|
|
void | blur (InputArray src, OutputArray dst, Size ksize, Point anchor=Point(-1,-1), int borderType=BORDER_DEFAULT) |
| Blurs an image using the normalized box filter. More...
|
|
int | borderInterpolate (int p, int len, int borderType) |
| Computes the source location of an extrapolated pixel. More...
|
|
Rect | boundingRect (InputArray points) |
| Calculates the up-right bounding rectangle of a point set. More...
|
|
void | boxFilter (InputArray src, OutputArray dst, int ddepth, Size ksize, Point anchor=Point(-1,-1), bool normalize=true, int borderType=BORDER_DEFAULT) |
| Blurs an image using the box filter. More...
|
|
void | boxPoints (RotatedRect box, OutputArray points) |
| Finds the four vertices of a rotated rect. Useful to draw the rotated rectangle. More...
|
|
int | buildOpticalFlowPyramid (InputArray img, OutputArrayOfArrays pyramid, Size winSize, int maxLevel, bool withDerivatives=true, int pyrBorder=BORDER_REFLECT_101, int derivBorder=BORDER_CONSTANT, bool tryReuseInputImage=true) |
| Constructs the image pyramid which can be passed to calcOpticalFlowPyrLK. More...
|
|
void | buildPyramid (InputArray src, OutputArrayOfArrays dst, int maxlevel, int borderType=BORDER_DEFAULT) |
| Constructs the Gaussian pyramid for an image. More...
|
|
void | calcBackProject (const Mat *images, int nimages, const int *channels, InputArray hist, OutputArray backProject, const float **ranges, double scale=1, bool uniform=true) |
| Calculates the back projection of a histogram. More...
|
|
void | calcBackProject (const Mat *images, int nimages, const int *channels, const SparseMat &hist, OutputArray backProject, const float **ranges, double scale=1, bool uniform=true) |
|
void | calcBackProject (InputArrayOfArrays images, const std::vector< int > &channels, InputArray hist, OutputArray dst, const std::vector< float > &ranges, double scale) |
|
void | calcCovarMatrix (const Mat *samples, int nsamples, Mat &covar, Mat &mean, int flags, int ctype=CV_64F) |
| Calculates the covariance matrix of a set of vectors. More...
|
|
void | calcCovarMatrix (InputArray samples, OutputArray covar, InputOutputArray mean, int flags, int ctype=CV_64F) |
|
void | calcHist (const Mat *images, int nimages, const int *channels, InputArray mask, OutputArray hist, int dims, const int *histSize, const float **ranges, bool uniform=true, bool accumulate=false) |
| Calculates a histogram of a set of arrays. More...
|
|
void | calcHist (const Mat *images, int nimages, const int *channels, InputArray mask, SparseMat &hist, int dims, const int *histSize, const float **ranges, bool uniform=true, bool accumulate=false) |
|
void | calcHist (InputArrayOfArrays images, const std::vector< int > &channels, InputArray mask, OutputArray hist, const std::vector< int > &histSize, const std::vector< float > &ranges, bool accumulate=false) |
|
float | calcNormFactor (const Mat &sum, const Mat &sqSum) |
|
void | calcOpticalFlowFarneback (InputArray prev, InputArray next, InputOutputArray flow, double pyr_scale, int levels, int winsize, int iterations, int poly_n, double poly_sigma, int flags) |
| Computes a dense optical flow using the Gunnar Farneback's algorithm. More...
|
|
void | calcOpticalFlowPyrLK (InputArray prevImg, InputArray nextImg, InputArray prevPts, InputOutputArray nextPts, OutputArray status, OutputArray err, Size winSize=Size(21, 21), int maxLevel=3, TermCriteria criteria=TermCriteria(TermCriteria::COUNT+TermCriteria::EPS, 30, 0.01), int flags=0, double minEigThreshold=1e-4) |
| Calculates an optical flow for a sparse feature set using the iterative Lucas-Kanade method with pyramids. More...
|
|
double | calibrateCamera (InputArrayOfArrays objectPoints, InputArrayOfArrays imagePoints, Size imageSize, InputOutputArray cameraMatrix, InputOutputArray distCoeffs, OutputArrayOfArrays rvecs, OutputArrayOfArrays tvecs, int flags=0, TermCriteria criteria=TermCriteria(TermCriteria::COUNT+TermCriteria::EPS, 30, DBL_EPSILON)) |
| Finds the camera intrinsic and extrinsic parameters from several views of a calibration pattern. More...
|
|
void | calibrationMatrixValues (InputArray cameraMatrix, Size imageSize, double apertureWidth, double apertureHeight, double &fovx, double &fovy, double &focalLength, Point2d &principalPoint, double &aspectRatio) |
| Computes useful camera characteristics from the camera matrix. More...
|
|
RotatedRect | CamShift (InputArray probImage, Rect &window, TermCriteria criteria) |
| Finds an object center, size, and orientation. More...
|
|
void | Canny (InputArray image, OutputArray edges, double threshold1, double threshold2, int apertureSize=3, bool L2gradient=false) |
| Finds edges in an image using the Canny algorithm [23] . More...
|
|
void | cartToPolar (InputArray x, InputArray y, OutputArray magnitude, OutputArray angle, bool angleInDegrees=false) |
| Calculates the magnitude and angle of 2D vectors. More...
|
|
bool | checkHardwareSupport (int feature) |
| Returns true if the specified feature is supported by the host hardware. More...
|
|
bool | checkRange (InputArray a, bool quiet=true, Point *pos=0, double minVal=-DBL_MAX, double maxVal=DBL_MAX) |
| Checks every element of an input array for invalid values. More...
|
|
bool | Cholesky (float *A, size_t astep, int m, float *b, size_t bstep, int n) |
|
bool | Cholesky (double *A, size_t astep, int m, double *b, size_t bstep, int n) |
|
void | circle (InputOutputArray img, Point center, int radius, const Scalar &color, int thickness=1, int lineType=LINE_8, int shift=0) |
| Draws a circle. More...
|
|
void | clearSeq (CvSeq *seq) |
|
bool | clipLine (Size imgSize, Point &pt1, Point &pt2) |
| Clips the line against the image rectangle. More...
|
|
bool | clipLine (Rect imgRect, Point &pt1, Point &pt2) |
|
void | colorChange (InputArray src, InputArray mask, OutputArray dst, float red_mul=1.0f, float green_mul=1.0f, float blue_mul=1.0f) |
| Given an original color image, two differently colored versions of this image can be mixed seamlessly. More...
|
|
void | compare (InputArray src1, InputArray src2, OutputArray dst, int cmpop) |
| Performs the per-element comparison of two arrays or an array and scalar value. More...
|
|
double | compareHist (InputArray H1, InputArray H2, int method) |
| Compares two histograms. More...
|
|
double | compareHist (const SparseMat &H1, const SparseMat &H2, int method) |
|
void | completeSymm (InputOutputArray mtx, bool lowerToUpper=false) |
| Copies the lower or the upper half of a square matrix to another half. More...
|
|
void | composeRT (InputArray rvec1, InputArray tvec1, InputArray rvec2, InputArray tvec2, OutputArray rvec3, OutputArray tvec3, OutputArray dr3dr1=noArray(), OutputArray dr3dt1=noArray(), OutputArray dr3dr2=noArray(), OutputArray dr3dt2=noArray(), OutputArray dt3dr1=noArray(), OutputArray dt3dt1=noArray(), OutputArray dt3dr2=noArray(), OutputArray dt3dt2=noArray()) |
| Combines two rotation-and-shift transformations. More...
|
|
void | computeCorrespondEpilines (InputArray points, int whichImage, InputArray F, OutputArray lines) |
| For points in an image of a stereo pair, computes the corresponding epilines in the other image. More...
|
|
void | computeRecallPrecisionCurve (const std::vector< std::vector< DMatch > > &matches1to2, const std::vector< std::vector< uchar > > &correctMatches1to2Mask, std::vector< Point2f > &recallPrecisionCurve) |
|
int | connectedComponents (InputArray image, OutputArray labels, int connectivity=8, int ltype=CV_32S) |
| computes the connected components labeled image of boolean image More...
|
|
int | connectedComponentsWithStats (InputArray image, OutputArray labels, OutputArray stats, OutputArray centroids, int connectivity=8, int ltype=CV_32S) |
|
double | contourArea (InputArray contour, bool oriented=false) |
| Calculates a contour area. More...
|
|
void | convertMaps (InputArray map1, InputArray map2, OutputArray dstmap1, OutputArray dstmap2, int dstmap1type, bool nninterpolation=false) |
| Converts image transformation maps from one representation to another. More...
|
|
void | convertPointsFromHomogeneous (InputArray src, OutputArray dst) |
| Converts points from homogeneous to Euclidean space. More...
|
|
void | convertPointsHomogeneous (InputArray src, OutputArray dst) |
| Converts points to/from homogeneous coordinates. More...
|
|
void | convertPointsToHomogeneous (InputArray src, OutputArray dst) |
| Converts points from Euclidean to homogeneous space. More...
|
|
void | convertScaleAbs (InputArray src, OutputArray dst, double alpha=1, double beta=0) |
| Scales, calculates absolute values, and converts the result to 8-bit. More...
|
|
void | convexHull (InputArray points, OutputArray hull, bool clockwise=false, bool returnPoints=true) |
| Finds the convex hull of a point set. More...
|
|
void | convexityDefects (InputArray contour, InputArray convexhull, OutputArray convexityDefects) |
| Finds the convexity defects of a contour. More...
|
|
void | copyMakeBorder (InputArray src, OutputArray dst, int top, int bottom, int left, int right, int borderType, const Scalar &value=Scalar()) |
| Forms a border around an image. More...
|
|
void | cornerEigenValsAndVecs (InputArray src, OutputArray dst, int blockSize, int ksize, int borderType=BORDER_DEFAULT) |
| Calculates eigenvalues and eigenvectors of image blocks for corner detection. More...
|
|
void | cornerHarris (InputArray src, OutputArray dst, int blockSize, int ksize, double k, int borderType=BORDER_DEFAULT) |
| Harris corner detector. More...
|
|
void | cornerMinEigenVal (InputArray src, OutputArray dst, int blockSize, int ksize=3, int borderType=BORDER_DEFAULT) |
| Calculates the minimal eigenvalue of gradient matrices for corner detection. More...
|
|
void | cornerSubPix (InputArray image, InputOutputArray corners, Size winSize, Size zeroZone, TermCriteria criteria) |
| Refines the corner locations. More...
|
|
void | correctMatches (InputArray F, InputArray points1, InputArray points2, OutputArray newPoints1, OutputArray newPoints2) |
| Refines coordinates of corresponding points. More...
|
|
int | countNonZero (InputArray src) |
| Counts non-zero array elements. More...
|
|
Ptr< AffineTransformer > | createAffineTransformer (bool fullAffine) |
|
Ptr< AlignMTB > | createAlignMTB (int max_bits=6, int exclude_range=4, bool cut=true) |
| Creates AlignMTB object. More...
|
|
Ptr< BackgroundSubtractorKNN > | createBackgroundSubtractorKNN (int history=500, double dist2Threshold=400.0, bool detectShadows=true) |
| Creates KNN Background Subtractor. More...
|
|
Ptr< BackgroundSubtractorMOG2 > | createBackgroundSubtractorMOG2 (int history=500, double varThreshold=16, bool detectShadows=true) |
| Creates MOG2 Background Subtractor. More...
|
|
int | createButton (const String &bar_name, ButtonCallback on_change, void *userdata=0, int type=QT_PUSH_BUTTON, bool initial_button_state=false) |
| Attaches a button to the control panel. More...
|
|
Ptr< CalibrateDebevec > | createCalibrateDebevec (int samples=70, float lambda=10.0f, bool random=false) |
| Creates CalibrateDebevec object. More...
|
|
Ptr< CalibrateRobertson > | createCalibrateRobertson (int max_iter=30, float threshold=0.01f) |
| Creates CalibrateRobertson object. More...
|
|
Ptr< HistogramCostExtractor > | createChiHistogramCostExtractor (int nDummies=25, float defaultCost=0.2f) |
|
Ptr< CLAHE > | createCLAHE (double clipLimit=40.0, Size tileGridSize=Size(8, 8)) |
|
Ptr< HistogramCostExtractor > | createEMDHistogramCostExtractor (int flag=DIST_L2, int nDummies=25, float defaultCost=0.2f) |
|
Ptr< HistogramCostExtractor > | createEMDL1HistogramCostExtractor (int nDummies=25, float defaultCost=0.2f) |
|
Ptr
< BaseCascadeClassifier::MaskGenerator > | createFaceDetectionMaskGenerator () |
|
Ptr< GeneralizedHoughBallard > | createGeneralizedHoughBallard () |
|
Ptr< GeneralizedHoughGuil > | createGeneralizedHoughGuil () |
|
void | createHanningWindow (OutputArray dst, Size winSize, int type) |
| This function computes a Hanning window coefficients in two dimensions. More...
|
|
Ptr< HausdorffDistanceExtractor > | createHausdorffDistanceExtractor (int distanceFlag=cv::NORM_L2, float rankProp=0.6f) |
|
Ptr< LineSegmentDetector > | createLineSegmentDetector (int _refine=LSD_REFINE_STD, double _scale=0.8, double _sigma_scale=0.6, double _quant=2.0, double _ang_th=22.5, double _log_eps=0, double _density_th=0.7, int _n_bins=1024) |
| Creates a smart pointer to a LineSegmentDetector object and initializes it. More...
|
|
Ptr< MergeDebevec > | createMergeDebevec () |
| Creates MergeDebevec object. More...
|
|
Ptr< MergeMertens > | createMergeMertens (float contrast_weight=1.0f, float saturation_weight=1.0f, float exposure_weight=0.0f) |
| Creates MergeMertens object. More...
|
|
Ptr< MergeRobertson > | createMergeRobertson () |
| Creates MergeRobertson object. More...
|
|
Ptr< HistogramCostExtractor > | createNormHistogramCostExtractor (int flag=DIST_L2, int nDummies=25, float defaultCost=0.2f) |
|
Ptr< DualTVL1OpticalFlow > | createOptFlow_DualTVL1 () |
| Creates instance of cv::DenseOpticalFlow. More...
|
|
Ptr
< ShapeContextDistanceExtractor > | createShapeContextDistanceExtractor (int nAngularBins=12, int nRadialBins=4, float innerRadius=0.2f, float outerRadius=2, int iterations=3, const Ptr< HistogramCostExtractor > &comparer=createChiHistogramCostExtractor(), const Ptr< ShapeTransformer > &transformer=createThinPlateSplineShapeTransformer()) |
|
Ptr< Stitcher > | createStitcher (bool try_use_gpu=false) |
|
Ptr
< ThinPlateSplineShapeTransformer > | createThinPlateSplineShapeTransformer (double regularizationParameter=0) |
|
Ptr< Tonemap > | createTonemap (float gamma=1.0f) |
| Creates simple linear mapper with gamma correction. More...
|
|
Ptr< TonemapDrago > | createTonemapDrago (float gamma=1.0f, float saturation=1.0f, float bias=0.85f) |
| Creates TonemapDrago object. More...
|
|
Ptr< TonemapDurand > | createTonemapDurand (float gamma=1.0f, float contrast=4.0f, float saturation=1.0f, float sigma_space=2.0f, float sigma_color=2.0f) |
| Creates TonemapDurand object. More...
|
|
Ptr< TonemapMantiuk > | createTonemapMantiuk (float gamma=1.0f, float scale=0.7f, float saturation=1.0f) |
| Creates TonemapMantiuk object. More...
|
|
Ptr< TonemapReinhard > | createTonemapReinhard (float gamma=1.0f, float intensity=0.0f, float light_adapt=1.0f, float color_adapt=0.0f) |
| Creates TonemapReinhard object. More...
|
|
int | createTrackbar (const String &trackbarname, const String &winname, int *value, int count, TrackbarCallback onChange=0, void *userdata=0) |
| Creates a trackbar and attaches it to the specified window. More...
|
|
float | cubeRoot (float val) |
| Computes the cube root of an argument. More...
|
|
template<typename _Tp , int _rows, int _cols, int _options, int _maxRows, int _maxCols> |
static void | cv2eigen (const Mat &src, Eigen::Matrix< _Tp, _rows, _cols, _options, _maxRows, _maxCols > &dst) |
|
template<typename _Tp , int _rows, int _cols, int _options, int _maxRows, int _maxCols> |
static void | cv2eigen (const Matx< _Tp, _rows, _cols > &src, Eigen::Matrix< _Tp, _rows, _cols, _options, _maxRows, _maxCols > &dst) |
|
template<typename _Tp > |
static void | cv2eigen (const Mat &src, Eigen::Matrix< _Tp, Eigen::Dynamic, Eigen::Dynamic > &dst) |
|
template<typename _Tp , int _rows, int _cols> |
static void | cv2eigen (const Matx< _Tp, _rows, _cols > &src, Eigen::Matrix< _Tp, Eigen::Dynamic, Eigen::Dynamic > &dst) |
|
template<typename _Tp > |
static void | cv2eigen (const Mat &src, Eigen::Matrix< _Tp, Eigen::Dynamic, 1 > &dst) |
|
template<typename _Tp , int _rows> |
static void | cv2eigen (const Matx< _Tp, _rows, 1 > &src, Eigen::Matrix< _Tp, Eigen::Dynamic, 1 > &dst) |
|
template<typename _Tp > |
static void | cv2eigen (const Mat &src, Eigen::Matrix< _Tp, 1, Eigen::Dynamic > &dst) |
|
template<typename _Tp , int _cols> |
static void | cv2eigen (const Matx< _Tp, 1, _cols > &src, Eigen::Matrix< _Tp, 1, Eigen::Dynamic > &dst) |
|
template<typename _Tp > |
_Tp | cv_abs (_Tp x) |
|
int | cv_abs (uchar x) |
|
int | cv_abs (schar x) |
|
int | cv_abs (ushort x) |
|
int | cv_abs (short x) |
|
float32x2_t | cv_vrecp_f32 (float32x2_t val) |
|
float32x4_t | cv_vrecpq_f32 (float32x4_t val) |
|
int32x2_t | cv_vrnd_s32_f32 (float32x2_t v) |
|
uint32x2_t | cv_vrnd_u32_f32 (float32x2_t v) |
|
int32x4_t | cv_vrndq_s32_f32 (float32x4_t v) |
|
uint32x4_t | cv_vrndq_u32_f32 (float32x4_t v) |
|
float32x2_t | cv_vrsqrt_f32 (float32x2_t val) |
|
float32x4_t | cv_vrsqrtq_f32 (float32x4_t val) |
|
float32x2_t | cv_vsqrt_f32 (float32x2_t val) |
|
float32x4_t | cv_vsqrtq_f32 (float32x4_t val) |
|
Mat | cvarrToMat (const CvArr *arr, bool copyData=false, bool allowND=true, int coiMode=0, AutoBuffer< double > *buf=0) |
| converts array (CvMat or IplImage) to cv::Mat More...
|
|
static Mat | cvarrToMatND (const CvArr *arr, bool copyData=false, int coiMode=0) |
|
void | cvtColor (InputArray src, OutputArray dst, int code, int dstCn=0) |
| Converts an image from one color space to another. More...
|
|
void | dct (InputArray src, OutputArray dst, int flags=0) |
| Performs a forward or inverse discrete Cosine transform of 1D or 2D array. More...
|
|
void | decolor (InputArray src, OutputArray grayscale, OutputArray color_boost) |
| Transforms a color image to a grayscale image. It is a basic tool in digital printing, stylized black-and-white photograph rendering, and in many single channel image processing applications [80] . More...
|
|
void | decomposeEssentialMat (InputArray E, OutputArray R1, OutputArray R2, OutputArray t) |
| Decompose an essential matrix to possible rotations and translation. More...
|
|
int | decomposeHomographyMat (InputArray H, InputArray K, OutputArrayOfArrays rotations, OutputArrayOfArrays translations, OutputArrayOfArrays normals) |
| Decompose a homography matrix to rotation(s), translation(s) and plane normal(s). More...
|
|
void | decomposeProjectionMatrix (InputArray projMatrix, OutputArray cameraMatrix, OutputArray rotMatrix, OutputArray transVect, OutputArray rotMatrixX=noArray(), OutputArray rotMatrixY=noArray(), OutputArray rotMatrixZ=noArray(), OutputArray eulerAngles=noArray()) |
| Decomposes a projection matrix into a rotation matrix and a camera matrix. More...
|
|
void | demosaicing (InputArray _src, OutputArray _dst, int code, int dcn=0) |
|
void | denoise_TVL1 (const std::vector< Mat > &observations, Mat &result, double lambda=1.0, int niters=30) |
| Primal-dual algorithm is an algorithm for solving special types of variational problems (that is, finding a function to minimize some functional). As the image denoising, in particular, may be seen as the variational problem, primal-dual algorithm then can be used to perform denoising and this is exactly what is implemented. More...
|
|
void | destroyAllWindows () |
| Destroys all of the HighGUI windows. More...
|
|
void | destroyWindow (const String &winname) |
| Destroys a window. More...
|
|
void | detailEnhance (InputArray src, OutputArray dst, float sigma_s=10, float sigma_r=0.15f) |
| This filter enhances the details of a particular image. More...
|
|
template<typename _Tp , int m> |
static double | determinant (const Matx< _Tp, m, m > &a) |
|
double | determinant (InputArray mtx) |
| Returns the determinant of a square floating-point matrix. More...
|
|
void | dft (InputArray src, OutputArray dst, int flags=0, int nonzeroRows=0) |
| Performs a forward or inverse Discrete Fourier transform of a 1D or 2D floating-point array. More...
|
|
void | dilate (InputArray src, OutputArray dst, InputArray kernel, Point anchor=Point(-1,-1), int iterations=1, int borderType=BORDER_CONSTANT, const Scalar &borderValue=morphologyDefaultBorderValue()) |
| Dilates an image by using a specific structuring element. More...
|
|
void | displayOverlay (const String &winname, const String &text, int delayms=0) |
| Displays a text on a window image as an overlay for a specified duration. More...
|
|
void | displayStatusBar (const String &winname, const String &text, int delayms=0) |
| Displays a text on the window statusbar during the specified period of time. More...
|
|
void | distanceTransform (InputArray src, OutputArray dst, OutputArray labels, int distanceType, int maskSize, int labelType=DIST_LABEL_CCOMP) |
| Calculates the distance to the closest zero pixel for each pixel of the source image. More...
|
|
void | distanceTransform (InputArray src, OutputArray dst, int distanceType, int maskSize, int dstType=CV_32F) |
|
void | divide (InputArray src1, InputArray src2, OutputArray dst, double scale=1, int dtype=-1) |
| Performs per-element division of two arrays or a scalar by an array. More...
|
|
void | divide (double scale, InputArray src2, OutputArray dst, int dtype=-1) |
|
void | drawChessboardCorners (InputOutputArray image, Size patternSize, InputArray corners, bool patternWasFound) |
| Renders the detected chessboard corners. More...
|
|
void | drawContours (InputOutputArray image, InputArrayOfArrays contours, int contourIdx, const Scalar &color, int thickness=1, int lineType=LINE_8, InputArray hierarchy=noArray(), int maxLevel=INT_MAX, Point offset=Point()) |
| Draws contours outlines or filled contours. More...
|
|
void | drawKeypoints (InputArray image, const std::vector< KeyPoint > &keypoints, InputOutputArray outImage, const Scalar &color=Scalar::all(-1), int flags=DrawMatchesFlags::DEFAULT) |
| Draws keypoints. More...
|
|
void | drawMatches (InputArray img1, const std::vector< KeyPoint > &keypoints1, InputArray img2, const std::vector< KeyPoint > &keypoints2, const std::vector< DMatch > &matches1to2, InputOutputArray outImg, const Scalar &matchColor=Scalar::all(-1), const Scalar &singlePointColor=Scalar::all(-1), const std::vector< char > &matchesMask=std::vector< char >(), int flags=DrawMatchesFlags::DEFAULT) |
| Draws the found matches of keypoints from two images. More...
|
|
void | drawMatches (InputArray img1, const std::vector< KeyPoint > &keypoints1, InputArray img2, const std::vector< KeyPoint > &keypoints2, const std::vector< std::vector< DMatch > > &matches1to2, InputOutputArray outImg, const Scalar &matchColor=Scalar::all(-1), const Scalar &singlePointColor=Scalar::all(-1), const std::vector< std::vector< char > > &matchesMask=std::vector< std::vector< char > >(), int flags=DrawMatchesFlags::DEFAULT) |
|
void | edgePreservingFilter (InputArray src, OutputArray dst, int flags=1, float sigma_s=60, float sigma_r=0.4f) |
| Filtering is the fundamental operation in image and video processing. Edge-preserving smoothing filters are used in many different applications [48] . More...
|
|
bool | eigen (InputArray src, OutputArray eigenvalues, OutputArray eigenvectors=noArray()) |
| Calculates eigenvalues and eigenvectors of a symmetric matrix. More...
|
|
template<typename _Tp , int _rows, int _cols, int _options, int _maxRows, int _maxCols> |
static void | eigen2cv (const Eigen::Matrix< _Tp, _rows, _cols, _options, _maxRows, _maxCols > &src, Mat &dst) |
|
template<typename _Tp , int _rows, int _cols, int _options, int _maxRows, int _maxCols> |
static void | eigen2cv (const Eigen::Matrix< _Tp, _rows, _cols, _options, _maxRows, _maxCols > &src, Matx< _Tp, _rows, _cols > &dst) |
|
void | ellipse (InputOutputArray img, Point center, Size axes, double angle, double startAngle, double endAngle, const Scalar &color, int thickness=1, int lineType=LINE_8, int shift=0) |
| Draws a simple or thick elliptic arc or fills an ellipse sector. More...
|
|
void | ellipse (InputOutputArray img, const RotatedRect &box, const Scalar &color, int thickness=1, int lineType=LINE_8) |
|
void | ellipse2Poly (Point center, Size axes, int angle, int arcStart, int arcEnd, int delta, std::vector< Point > &pts) |
| Approximates an elliptic arc with a polyline. More...
|
|
float | EMD (InputArray signature1, InputArray signature2, int distType, InputArray cost=noArray(), float *lowerBound=0, OutputArray flow=noArray()) |
| Computes the "minimal work" distance between two weighted point configurations. More...
|
|
float | EMDL1 (InputArray signature1, InputArray signature2) |
| Computes the "minimal work" distance between two weighted point configurations base on the papers "EMD-L1: An efficient and Robust Algorithm for comparing histogram-based descriptors", by Haibin Ling and Kazunori Okuda; and "The Earth Mover's Distance is the Mallows Distance: Some Insights from
Statistics", by Elizaveta Levina and Peter Bickel. More...
|
|
void | equalizeHist (InputArray src, OutputArray dst) |
| Equalizes the histogram of a grayscale image. More...
|
|
void | erode (InputArray src, OutputArray dst, InputArray kernel, Point anchor=Point(-1,-1), int iterations=1, int borderType=BORDER_CONSTANT, const Scalar &borderValue=morphologyDefaultBorderValue()) |
| Erodes an image by using a specific structuring element. More...
|
|
void | error (const Exception &exc) |
| Signals an error and raises the exception. More...
|
|
void | error (int _code, const String &_err, const char *_func, const char *_file, int _line) |
| Signals an error and raises the exception. More...
|
|
void | errorNoReturn (int _code, const String &_err, const char *_func, const char *_file, int _line) |
|
int | estimateAffine3D (InputArray src, InputArray dst, OutputArray out, OutputArray inliers, double ransacThreshold=3, double confidence=0.99) |
| Computes an optimal affine transformation between two 3D point sets. More...
|
|
Mat | estimateRigidTransform (InputArray src, InputArray dst, bool fullAffine) |
| Computes an optimal affine transformation between two 2D point sets. More...
|
|
void | evaluateFeatureDetector (const Mat &img1, const Mat &img2, const Mat &H1to2, std::vector< KeyPoint > *keypoints1, std::vector< KeyPoint > *keypoints2, float &repeatability, int &correspCount, const Ptr< FeatureDetector > &fdetector=Ptr< FeatureDetector >()) |
|
void | exp (InputArray src, OutputArray dst) |
| Calculates the exponent of every array element. More...
|
|
void | extractChannel (InputArray src, OutputArray dst, int coi) |
| extracts a single channel from src (coi is 0-based index) More...
|
|
void | extractImageCOI (const CvArr *arr, OutputArray coiimg, int coi=-1) |
| extracts Channel of Interest from CvMat or IplImage and makes cv::Mat out of it. More...
|
|
void | FAST (InputArray image, std::vector< KeyPoint > &keypoints, int threshold, bool nonmaxSuppression=true) |
|
void | FAST (InputArray image, std::vector< KeyPoint > &keypoints, int threshold, bool nonmaxSuppression, int type) |
| Detects corners using the FAST algorithm. More...
|
|
float | fastAtan2 (float y, float x) |
| Calculates the angle of a 2D vector in degrees. More...
|
|
void | fastFree (void *ptr) |
| Deallocates a memory buffer. More...
|
|
void * | fastMalloc (size_t bufSize) |
| Allocates an aligned memory buffer. More...
|
|
void | fastNlMeansDenoising (InputArray src, OutputArray dst, float h=3, int templateWindowSize=7, int searchWindowSize=21) |
| Perform image denoising using Non-local Means Denoising algorithm http://www.ipol.im/pub/algo/bcm_non_local_means_denoising/ with several computational optimizations. Noise expected to be a gaussian white noise. More...
|
|
void | fastNlMeansDenoising (InputArray src, OutputArray dst, const std::vector< float > &h, int templateWindowSize=7, int searchWindowSize=21, int normType=NORM_L2) |
| Perform image denoising using Non-local Means Denoising algorithm http://www.ipol.im/pub/algo/bcm_non_local_means_denoising/ with several computational optimizations. Noise expected to be a gaussian white noise. More...
|
|
void | fastNlMeansDenoisingColored (InputArray src, OutputArray dst, float h=3, float hColor=3, int templateWindowSize=7, int searchWindowSize=21) |
| Modification of fastNlMeansDenoising function for colored images. More...
|
|
void | fastNlMeansDenoisingColoredMulti (InputArrayOfArrays srcImgs, OutputArray dst, int imgToDenoiseIndex, int temporalWindowSize, float h=3, float hColor=3, int templateWindowSize=7, int searchWindowSize=21) |
| Modification of fastNlMeansDenoisingMulti function for colored images sequences. More...
|
|
void | fastNlMeansDenoisingMulti (InputArrayOfArrays srcImgs, OutputArray dst, int imgToDenoiseIndex, int temporalWindowSize, float h=3, int templateWindowSize=7, int searchWindowSize=21) |
| Modification of fastNlMeansDenoising function for images sequence where consequtive images have been captured in small period of time. For example video. This version of the function is for grayscale images or for manual manipulation with colorspaces. For more details see http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.131.6394 More...
|
|
void | fastNlMeansDenoisingMulti (InputArrayOfArrays srcImgs, OutputArray dst, int imgToDenoiseIndex, int temporalWindowSize, const std::vector< float > &h, int templateWindowSize=7, int searchWindowSize=21, int normType=NORM_L2) |
| Modification of fastNlMeansDenoising function for images sequence where consequtive images have been captured in small period of time. For example video. This version of the function is for grayscale images or for manual manipulation with colorspaces. For more details see http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.131.6394 More...
|
|
void | fillConvexPoly (Mat &img, const Point *pts, int npts, const Scalar &color, int lineType=LINE_8, int shift=0) |
|
void | fillConvexPoly (InputOutputArray img, InputArray points, const Scalar &color, int lineType=LINE_8, int shift=0) |
| Fills a convex polygon. More...
|
|
void | fillPoly (Mat &img, const Point **pts, const int *npts, int ncontours, const Scalar &color, int lineType=LINE_8, int shift=0, Point offset=Point()) |
|
void | fillPoly (InputOutputArray img, InputArrayOfArrays pts, const Scalar &color, int lineType=LINE_8, int shift=0, Point offset=Point()) |
| Fills the area bounded by one or more polygons. More...
|
|
void | filter2D (InputArray src, OutputArray dst, int ddepth, InputArray kernel, Point anchor=Point(-1,-1), double delta=0, int borderType=BORDER_DEFAULT) |
| Convolves an image with the kernel. More...
|
|
void | filterSpeckles (InputOutputArray img, double newVal, int maxSpeckleSize, double maxDiff, InputOutputArray buf=noArray()) |
| Filters off small noise blobs (speckles) in the disparity map. More...
|
|
bool | find4QuadCornerSubpix (InputArray img, InputOutputArray corners, Size region_size) |
| finds subpixel-accurate positions of the chessboard corners More...
|
|
bool | findChessboardCorners (InputArray image, Size patternSize, OutputArray corners, int flags=CALIB_CB_ADAPTIVE_THRESH+CALIB_CB_NORMALIZE_IMAGE) |
| Finds the positions of internal corners of the chessboard. More...
|
|
bool | findCirclesGrid (InputArray image, Size patternSize, OutputArray centers, int flags=CALIB_CB_SYMMETRIC_GRID, const Ptr< FeatureDetector > &blobDetector=SimpleBlobDetector::create()) |
| Finds centers in the grid of circles. More...
|
|
void | findContours (InputOutputArray image, OutputArrayOfArrays contours, OutputArray hierarchy, int mode, int method, Point offset=Point()) |
| Finds contours in a binary image. More...
|
|
void | findContours (InputOutputArray image, OutputArrayOfArrays contours, int mode, int method, Point offset=Point()) |
|
Mat | findEssentialMat (InputArray points1, InputArray points2, double focal=1.0, Point2d pp=Point2d(0, 0), int method=RANSAC, double prob=0.999, double threshold=1.0, OutputArray mask=noArray()) |
| Calculates an essential matrix from the corresponding points in two images. More...
|
|
Mat | findFundamentalMat (InputArray points1, InputArray points2, int method=FM_RANSAC, double param1=3., double param2=0.99, OutputArray mask=noArray()) |
| Calculates a fundamental matrix from the corresponding points in two images. More...
|
|
Mat | findFundamentalMat (InputArray points1, InputArray points2, OutputArray mask, int method=FM_RANSAC, double param1=3., double param2=0.99) |
|
Mat | findHomography (InputArray srcPoints, InputArray dstPoints, int method=0, double ransacReprojThreshold=3, OutputArray mask=noArray(), const int maxIters=2000, const double confidence=0.995) |
| Finds a perspective transformation between two planes. More...
|
|
Mat | findHomography (InputArray srcPoints, InputArray dstPoints, OutputArray mask, int method=0, double ransacReprojThreshold=3) |
|
void | findNonZero (InputArray src, OutputArray idx) |
| Returns the list of locations of non-zero pixels. More...
|
|
double | findTransformECC (InputArray templateImage, InputArray inputImage, InputOutputArray warpMatrix, int motionType=MOTION_AFFINE, TermCriteria criteria=TermCriteria(TermCriteria::COUNT+TermCriteria::EPS, 50, 0.001), InputArray inputMask=noArray()) |
| Finds the geometric transform (warp) between two images in terms of the ECC criterion [37] . More...
|
|
RotatedRect | fitEllipse (InputArray points) |
| Fits an ellipse around a set of 2D points. More...
|
|
void | fitLine (InputArray points, OutputArray line, int distType, double param, double reps, double aeps) |
| Fits a line to a 2D or 3D point set. More...
|
|
void | flip (InputArray src, OutputArray dst, int flipCode) |
| Flips a 2D array around vertical, horizontal, or both axes. More...
|
|
int | floodFill (InputOutputArray image, Point seedPoint, Scalar newVal, Rect *rect=0, Scalar loDiff=Scalar(), Scalar upDiff=Scalar(), int flags=4) |
|
int | floodFill (InputOutputArray image, InputOutputArray mask, Point seedPoint, Scalar newVal, Rect *rect=0, Scalar loDiff=Scalar(), Scalar upDiff=Scalar(), int flags=4) |
| Fills a connected component with the given color. More...
|
|
QtFont | fontQt (const String &nameFont, int pointSize=-1, Scalar color=Scalar::all(0), int weight=QT_FONT_NORMAL, int style=QT_STYLE_NORMAL, int spacing=0) |
| Creates the font to draw a text on an image. More...
|
|
String | format (const char *fmt,...) |
| Returns a text string formatted using the printf-like expression. More...
|
|
void | GaussianBlur (InputArray src, OutputArray dst, Size ksize, double sigmaX, double sigmaY=0, int borderType=BORDER_DEFAULT) |
| Blurs an image using a Gaussian filter. More...
|
|
void | gemm (InputArray src1, InputArray src2, double alpha, InputArray src3, double beta, OutputArray dst, int flags=0) |
| Performs generalized matrix multiplication. More...
|
|
Mat | getAffineTransform (const Point2f src[], const Point2f dst[]) |
| Calculates an affine transform from three pairs of the corresponding points. More...
|
|
Mat | getAffineTransform (InputArray src, InputArray dst) |
|
const String & | getBuildInformation () |
| Returns full configuration time cmake output. More...
|
|
int64 | getCPUTickCount () |
| Returns the number of CPU ticks. More...
|
|
Mat | getDefaultNewCameraMatrix (InputArray cameraMatrix, Size imgsize=Size(), bool centerPrincipalPoint=false) |
| Returns the default new camera matrix. More...
|
|
void | getDerivKernels (OutputArray kx, OutputArray ky, int dx, int dy, int ksize, bool normalize=false, int ktype=CV_32F) |
| Returns filter coefficients for computing spatial image derivatives. More...
|
|
static size_t | getElemSize (int type) |
|
Mat | getGaborKernel (Size ksize, double sigma, double theta, double lambd, double gamma, double psi=CV_PI *0.5, int ktype=CV_64F) |
| Returns Gabor filter coefficients. More...
|
|
Mat | getGaussianKernel (int ksize, double sigma, int ktype=CV_64F) |
| Returns Gaussian filter coefficients. More...
|
|
int | getMouseWheelDelta (int flags) |
| Gets the mouse-wheel motion delta, when handling mouse-wheel events EVENT_MOUSEWHEEL and EVENT_MOUSEHWHEEL. More...
|
|
int | getNearestPoint (const std::vector< Point2f > &recallPrecisionCurve, float l_precision) |
|
int | getNumberOfCPUs () |
| Returns the number of logical CPUs available for the process. More...
|
|
int | getNumThreads () |
| Returns the number of threads used by OpenCV for parallel regions. More...
|
|
int | getOptimalDFTSize (int vecsize) |
| Returns the optimal DFT size for a given vector size. More...
|
|
Mat | getOptimalNewCameraMatrix (InputArray cameraMatrix, InputArray distCoeffs, Size imageSize, double alpha, Size newImgSize=Size(), Rect *validPixROI=0, bool centerPrincipalPoint=false) |
| Returns the new camera matrix based on the free scaling parameter. More...
|
|
Mat | getPerspectiveTransform (const Point2f src[], const Point2f dst[]) |
| returns 3x3 perspective transformation for the corresponding 4 point pairs. More...
|
|
Mat | getPerspectiveTransform (InputArray src, InputArray dst) |
| Calculates a perspective transform from four pairs of the corresponding points. More...
|
|
float | getRecall (const std::vector< Point2f > &recallPrecisionCurve, float l_precision) |
|
void | getRectSubPix (InputArray image, Size patchSize, Point2f center, OutputArray patch, int patchType=-1) |
| Retrieves a pixel rectangle from an image with sub-pixel accuracy. More...
|
|
Mat | getRotationMatrix2D (Point2f center, double angle, double scale) |
| Calculates an affine matrix of 2D rotation. More...
|
|
schar * | getSeqElem (const CvSeq *seq, int index) |
|
Mat | getStructuringElement (int shape, Size ksize, Point anchor=Point(-1,-1)) |
| Returns a structuring element of the specified size and shape for morphological operations. More...
|
|
Size | getTextSize (const String &text, int fontFace, double fontScale, int thickness, int *baseLine) |
| Calculates the width and height of a text string. More...
|
|
int | getThreadNum () |
| Returns the index of the currently executed thread within the current parallel region. Always returns 0 if called outside of parallel region. More...
|
|
int64 | getTickCount () |
| Returns the number of ticks. More...
|
|
double | getTickFrequency () |
| Returns the number of ticks per second. More...
|
|
int | getTrackbarPos (const String &trackbarname, const String &winname) |
| Returns the trackbar position. More...
|
|
Rect | getValidDisparityROI (Rect roi1, Rect roi2, int minDisparity, int numberOfDisparities, int SADWindowSize) |
| computes valid disparity ROI from the valid ROIs of the rectified images (that are returned by cv::stereoRectify()) More...
|
|
double | getWindowProperty (const String &winname, int prop_id) |
| Provides parameters of a window. More...
|
|
void | glob (String pattern, std::vector< String > &result, bool recursive=false) |
|
void | goodFeaturesToTrack (InputArray image, OutputArray corners, int maxCorners, double qualityLevel, double minDistance, InputArray mask=noArray(), int blockSize=3, bool useHarrisDetector=false, double k=0.04) |
| Determines strong corners on an image. More...
|
|
void | grabCut (InputArray img, InputOutputArray mask, Rect rect, InputOutputArray bgdModel, InputOutputArray fgdModel, int iterCount, int mode=GC_EVAL) |
| Runs the GrabCut algorithm. More...
|
|
void | groupRectangles (std::vector< Rect > &rectList, int groupThreshold, double eps=0.2) |
| Groups the object candidate rectangles. More...
|
|
void | groupRectangles (std::vector< Rect > &rectList, std::vector< int > &weights, int groupThreshold, double eps=0.2) |
|
void | groupRectangles (std::vector< Rect > &rectList, int groupThreshold, double eps, std::vector< int > *weights, std::vector< double > *levelWeights) |
|
void | groupRectangles (std::vector< Rect > &rectList, std::vector< int > &rejectLevels, std::vector< double > &levelWeights, int groupThreshold, double eps=0.2) |
|
void | groupRectangles_meanshift (std::vector< Rect > &rectList, std::vector< double > &foundWeights, std::vector< double > &foundScales, double detectThreshold=0.0, Size winDetSize=Size(64, 128)) |
|
void | hconcat (const Mat *src, size_t nsrc, OutputArray dst) |
| Applies horizontal concatenation to given matrices. More...
|
|
void | hconcat (InputArray src1, InputArray src2, OutputArray dst) |
|
void | hconcat (InputArrayOfArrays src, OutputArray dst) |
|
void | HoughCircles (InputArray image, OutputArray circles, int method, double dp, double minDist, double param1=100, double param2=100, int minRadius=0, int maxRadius=0) |
| Finds circles in a grayscale image using the Hough transform. More...
|
|
void | HoughLines (InputArray image, OutputArray lines, double rho, double theta, int threshold, double srn=0, double stn=0, double min_theta=0, double max_theta=CV_PI) |
| Finds lines in a binary image using the standard Hough transform. More...
|
|
void | HoughLinesP (InputArray image, OutputArray lines, double rho, double theta, int threshold, double minLineLength=0, double maxLineGap=0) |
| Finds line segments in a binary image using the probabilistic Hough transform. More...
|
|
void | HuMoments (const Moments &moments, double hu[7]) |
| Calculates seven Hu invariants. More...
|
|
void | HuMoments (const Moments &m, OutputArray hu) |
|
void | idct (InputArray src, OutputArray dst, int flags=0) |
| Calculates the inverse Discrete Cosine Transform of a 1D or 2D array. More...
|
|
void | idft (InputArray src, OutputArray dst, int flags=0, int nonzeroRows=0) |
| Calculates the inverse Discrete Fourier Transform of a 1D or 2D array. More...
|
|
void | illuminationChange (InputArray src, InputArray mask, OutputArray dst, float alpha=0.2f, float beta=0.4f) |
| Applying an appropriate non-linear transformation to the gradient field inside the selection and then integrating back with a Poisson solver, modifies locally the apparent illumination of an image. More...
|
|
Mat | imdecode (InputArray buf, int flags) |
|
Mat | imdecode (InputArray buf, int flags, Mat *dst) |
| Reads an image from a buffer in memory. More...
|
|
bool | imencode (const String &ext, InputArray img, std::vector< uchar > &buf, const std::vector< int > ¶ms=std::vector< int >()) |
| Encodes an image into a memory buffer. More...
|
|
Mat | imread (const String &filename, int flags=IMREAD_COLOR) |
| Loads an image from a file. More...
|
|
bool | imreadmulti (const String &filename, std::vector< Mat > &mats, int flags=IMREAD_ANYCOLOR) |
| Loads a multi-page image from a file. (see imread for details.) More...
|
|
void | imshow (const String &winname, InputArray mat) |
| Displays an image in the specified window. More...
|
|
void | imshow (const String &winname, const ogl::Texture2D &tex) |
|
bool | imwrite (const String &filename, InputArray img, const std::vector< int > ¶ms=std::vector< int >()) |
| Saves an image to a specified file. More...
|
|
Mat | initCameraMatrix2D (InputArrayOfArrays objectPoints, InputArrayOfArrays imagePoints, Size imageSize, double aspectRatio=1.0) |
| Finds an initial camera matrix from 3D-2D point correspondences. More...
|
|
void | initUndistortRectifyMap (InputArray cameraMatrix, InputArray distCoeffs, InputArray R, InputArray newCameraMatrix, Size size, int m1type, OutputArray map1, OutputArray map2) |
| Computes the undistortion and rectification transformation map. More...
|
|
float | initWideAngleProjMap (InputArray cameraMatrix, InputArray distCoeffs, Size imageSize, int destImageWidth, int m1type, OutputArray map1, OutputArray map2, int projType=PROJ_SPHERICAL_EQRECT, double alpha=0) |
| initializes maps for cv::remap() for wide-angle More...
|
|
void | inpaint (InputArray src, InputArray inpaintMask, OutputArray dst, double inpaintRadius, int flags) |
| Restores the selected region in an image using the region neighborhood. More...
|
|
void | inRange (InputArray src, InputArray lowerb, InputArray upperb, OutputArray dst) |
| Checks if array elements lie between the elements of two other arrays. More...
|
|
void | insertChannel (InputArray src, InputOutputArray dst, int coi) |
| inserts a single channel to dst (coi is 0-based index) More...
|
|
void | insertImageCOI (InputArray coiimg, CvArr *arr, int coi=-1) |
| inserts single-channel cv::Mat into a multi-channel CvMat or IplImage More...
|
|
void | integral (InputArray src, OutputArray sum, int sdepth=-1) |
|
void | integral (InputArray src, OutputArray sum, OutputArray sqsum, int sdepth=-1, int sqdepth=-1) |
|
void | integral (InputArray src, OutputArray sum, OutputArray sqsum, OutputArray tilted, int sdepth=-1, int sqdepth=-1) |
| Calculates the integral of an image. More...
|
|
float | intersectConvexConvex (InputArray _p1, InputArray _p2, OutputArray _p12, bool handleNested=true) |
| finds intersection of two convex polygons More...
|
|
double | invert (InputArray src, OutputArray dst, int flags=DECOMP_LU) |
| Finds the inverse or pseudo-inverse of a matrix. More...
|
|
void | invertAffineTransform (InputArray M, OutputArray iM) |
| Inverts an affine transformation. More...
|
|
bool | isContourConvex (InputArray contour) |
| Tests a contour convexity. More...
|
|
double | kmeans (InputArray data, int K, InputOutputArray bestLabels, TermCriteria criteria, int attempts, int flags, OutputArray centers=noArray()) |
| Finds centers of clusters and groups input samples around the clusters. More...
|
|
void | Laplacian (InputArray src, OutputArray dst, int ddepth, int ksize=1, double scale=1, double delta=0, int borderType=BORDER_DEFAULT) |
| Calculates the Laplacian of an image. More...
|
|
void | line (InputOutputArray img, Point pt1, Point pt2, const Scalar &color, int thickness=1, int lineType=LINE_8, int shift=0) |
| Draws a line segment connecting two points. More...
|
|
void | linearPolar (InputArray src, OutputArray dst, Point2f center, double maxRadius, int flags) |
| Remaps an image to polar space. More...
|
|
void | loadWindowParameters (const String &windowName) |
| Loads parameters of the specified window. More...
|
|
void | log (InputArray src, OutputArray dst) |
| Calculates the natural logarithm of every array element. More...
|
|
void | logPolar (InputArray src, OutputArray dst, Point2f center, double M, int flags) |
| Remaps an image to log-polar space. More...
|
|
int | LU (float *A, size_t astep, int m, float *b, size_t bstep, int n) |
|
int | LU (double *A, size_t astep, int m, double *b, size_t bstep, int n) |
|
void | LUT (InputArray src, InputArray lut, OutputArray dst) |
| Performs a look-up table transform of an array. More...
|
|
void | magnitude (InputArray x, InputArray y, OutputArray magnitude) |
| Calculates the magnitude of 2D vectors. More...
|
|
double | Mahalanobis (InputArray v1, InputArray v2, InputArray icovar) |
| Calculates the Mahalanobis distance between two vectors. More...
|
|
template<typename T > |
Ptr< T > | makePtr () |
|
template<typename T , typename A1 > |
Ptr< T > | makePtr (const A1 &a1) |
|
template<typename T , typename A1 , typename A2 > |
Ptr< T > | makePtr (const A1 &a1, const A2 &a2) |
|
template<typename T , typename A1 , typename A2 , typename A3 > |
Ptr< T > | makePtr (const A1 &a1, const A2 &a2, const A3 &a3) |
|
template<typename T , typename A1 , typename A2 , typename A3 , typename A4 > |
Ptr< T > | makePtr (const A1 &a1, const A2 &a2, const A3 &a3, const A4 &a4) |
|
template<typename T , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 > |
Ptr< T > | makePtr (const A1 &a1, const A2 &a2, const A3 &a3, const A4 &a4, const A5 &a5) |
|
template<typename T , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 > |
Ptr< T > | makePtr (const A1 &a1, const A2 &a2, const A3 &a3, const A4 &a4, const A5 &a5, const A6 &a6) |
|
template<typename T , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 > |
Ptr< T > | makePtr (const A1 &a1, const A2 &a2, const A3 &a3, const A4 &a4, const A5 &a5, const A6 &a6, const A7 &a7) |
|
template<typename T , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 > |
Ptr< T > | makePtr (const A1 &a1, const A2 &a2, const A3 &a3, const A4 &a4, const A5 &a5, const A6 &a6, const A7 &a7, const A8 &a8) |
|
template<typename T , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 > |
Ptr< T > | makePtr (const A1 &a1, const A2 &a2, const A3 &a3, const A4 &a4, const A5 &a5, const A6 &a6, const A7 &a7, const A8 &a8, const A9 &a9) |
|
template<typename T , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 > |
Ptr< T > | makePtr (const A1 &a1, const A2 &a2, const A3 &a3, const A4 &a4, const A5 &a5, const A6 &a6, const A7 &a7, const A8 &a8, const A9 &a9, const A10 &a10) |
|
double | matchShapes (InputArray contour1, InputArray contour2, int method, double parameter) |
| Compares two shapes. More...
|
|
void | matchTemplate (InputArray image, InputArray templ, OutputArray result, int method, InputArray mask=noArray()) |
| Compares a template against overlapped image regions. More...
|
|
void | matMulDeriv (InputArray A, InputArray B, OutputArray dABdA, OutputArray dABdB) |
| Computes partial derivatives of the matrix product for each multiplied matrix. More...
|
|
void | max (InputArray src1, InputArray src2, OutputArray dst) |
| Calculates per-element maximum of two arrays or an array and a scalar. More...
|
|
void | max (const Mat &src1, const Mat &src2, Mat &dst) |
|
void | max (const UMat &src1, const UMat &src2, UMat &dst) |
|
Scalar | mean (InputArray src, InputArray mask=noArray()) |
| Calculates an average (mean) of array elements. More...
|
|
int | meanShift (InputArray probImage, Rect &window, TermCriteria criteria) |
| Finds an object on a back projection image. More...
|
|
void | meanStdDev (InputArray src, OutputArray mean, OutputArray stddev, InputArray mask=noArray()) |
|
void | medianBlur (InputArray src, OutputArray dst, int ksize) |
| Blurs an image using the median filter. More...
|
|
void | merge (const Mat *mv, size_t count, OutputArray dst) |
| Creates one multichannel array out of several single-channel ones. More...
|
|
void | merge (InputArrayOfArrays mv, OutputArray dst) |
|
void | min (InputArray src1, InputArray src2, OutputArray dst) |
| Calculates per-element minimum of two arrays or an array and a scalar. More...
|
|
void | min (const Mat &src1, const Mat &src2, Mat &dst) |
|
void | min (const UMat &src1, const UMat &src2, UMat &dst) |
|
RotatedRect | minAreaRect (InputArray points) |
| Finds a rotated rectangle of the minimum area enclosing the input 2D point set. More...
|
|
void | minEnclosingCircle (InputArray points, Point2f ¢er, float &radius) |
| Finds a circle of the minimum area enclosing a 2D point set. More...
|
|
double | minEnclosingTriangle (InputArray points, OutputArray triangle) |
| Finds a triangle of minimum area enclosing a 2D point set and returns its area. More...
|
|
void | minMaxIdx (InputArray src, double *minVal, double *maxVal=0, int *minIdx=0, int *maxIdx=0, InputArray mask=noArray()) |
| Finds the global minimum and maximum in an array. More...
|
|
void | minMaxLoc (InputArray src, double *minVal, double *maxVal=0, Point *minLoc=0, Point *maxLoc=0, InputArray mask=noArray()) |
| Finds the global minimum and maximum in an array. More...
|
|
void | minMaxLoc (const SparseMat &a, double *minVal, double *maxVal, int *minIdx=0, int *maxIdx=0) |
|
void | mixChannels (const Mat *src, size_t nsrcs, Mat *dst, size_t ndsts, const int *fromTo, size_t npairs) |
| Copies specified channels from input arrays to the specified channels of output arrays. More...
|
|
void | mixChannels (InputArrayOfArrays src, InputOutputArrayOfArrays dst, const int *fromTo, size_t npairs) |
|
void | mixChannels (InputArrayOfArrays src, InputOutputArrayOfArrays dst, const std::vector< int > &fromTo) |
|
Moments | moments (InputArray array, bool binaryImage=false) |
| Calculates all of the moments up to the third order of a polygon or rasterized shape. More...
|
|
static Scalar | morphologyDefaultBorderValue () |
| returns "magic" border value for erosion and dilation. It is automatically transformed to Scalar::all(-DBL_MAX) for dilation. More...
|
|
void | morphologyEx (InputArray src, OutputArray dst, int op, InputArray kernel, Point anchor=Point(-1,-1), int iterations=1, int borderType=BORDER_CONSTANT, const Scalar &borderValue=morphologyDefaultBorderValue()) |
| Performs advanced morphological transformations. More...
|
|
void | moveWindow (const String &winname, int x, int y) |
| Moves window to the specified position. More...
|
|
void | mulSpectrums (InputArray a, InputArray b, OutputArray c, int flags, bool conjB=false) |
| Performs the per-element multiplication of two Fourier spectrums. More...
|
|
void | multiply (InputArray src1, InputArray src2, OutputArray dst, double scale=1, int dtype=-1) |
| Calculates the per-element scaled product of two arrays. More...
|
|
void | mulTransposed (InputArray src, OutputArray dst, bool aTa, InputArray delta=noArray(), double scale=1, int dtype=-1) |
| Calculates the product of a matrix and its transposition. More...
|
|
void | namedWindow (const String &winname, int flags=WINDOW_AUTOSIZE) |
| Creates a window. More...
|
|
InputOutputArray | noArray () |
|
template<typename _Tp , int m, int n> |
static double | norm (const Matx< _Tp, m, n > &M) |
|
template<typename _Tp , int m, int n> |
static double | norm (const Matx< _Tp, m, n > &M, int normType) |
|
double | norm (InputArray src1, int normType=NORM_L2, InputArray mask=noArray()) |
| Calculates an absolute array norm, an absolute difference norm, or a relative difference norm. More...
|
|
double | norm (InputArray src1, InputArray src2, int normType=NORM_L2, InputArray mask=noArray()) |
|
double | norm (const SparseMat &src, int normType) |
|
template<typename _Tp , int cn> |
static Vec< _Tp, cn > | normalize (const Vec< _Tp, cn > &v) |
|
void | normalize (InputArray src, InputOutputArray dst, double alpha=1, double beta=0, int norm_type=NORM_L2, int dtype=-1, InputArray mask=noArray()) |
| Normalizes the norm or value range of an array. More...
|
|
void | normalize (const SparseMat &src, SparseMat &dst, double alpha, int normType) |
|
template<typename _Tp , typename _AccTp > |
static _AccTp | normInf (const _Tp *a, int n) |
|
template<typename _Tp , typename _AccTp > |
static _AccTp | normInf (const _Tp *a, const _Tp *b, int n) |
|
template<typename _Tp , typename _AccTp > |
static _AccTp | normL1 (const _Tp *a, int n) |
|
template<typename _Tp , typename _AccTp > |
static _AccTp | normL1 (const _Tp *a, const _Tp *b, int n) |
|
float | normL1 (const float *a, const float *b, int n) |
|
int | normL1 (const uchar *a, const uchar *b, int n) |
|
template<typename _Tp , typename _AccTp > |
static _AccTp | normL2Sqr (const _Tp *a, int n) |
|
template<typename _Tp , typename _AccTp > |
static _AccTp | normL2Sqr (const _Tp *a, const _Tp *b, int n) |
|
static float | normL2Sqr (const float *a, const float *b, int n) |
|
template<typename _Tp , int n> |
v_reg< _Tp, n > | operator!= (const v_reg< _Tp, n > &a, const v_reg< _Tp, n > &b) |
|
template<typename T > |
bool | operator!= (const Ptr< T > &ptr1, const Ptr< T > &ptr2) |
|
v_uint8x16 | operator!= (const v_uint8x16 &a, const v_uint8x16 &b) |
|
v_int8x16 | operator!= (const v_int8x16 &a, const v_int8x16 &b) |
|
v_uint16x8 | operator!= (const v_uint16x8 &a, const v_uint16x8 &b) |
|
v_int16x8 | operator!= (const v_int16x8 &a, const v_int16x8 &b) |
|
v_uint32x4 | operator!= (const v_uint32x4 &a, const v_uint32x4 &b) |
|
v_int32x4 | operator!= (const v_int32x4 &a, const v_int32x4 &b) |
|
v_float32x4 | operator!= (const v_float32x4 &a, const v_float32x4 &b) |
|
v_float64x2 | operator!= (const v_float64x2 &a, const v_float64x2 &b) |
|
template<typename _Tp > |
bool | operator!= (const SeqIterator< _Tp > &a, const SeqIterator< _Tp > &b) |
|
template<typename _Tp , int n> |
v_reg< _Tp, n > | operator& (const v_reg< _Tp, n > &a, const v_reg< _Tp, n > &b) |
|
v_uint8x16 | operator& (const v_uint8x16 &a, const v_uint8x16 &b) |
|
v_int8x16 | operator& (const v_int8x16 &a, const v_int8x16 &b) |
|
v_uint16x8 | operator& (const v_uint16x8 &a, const v_uint16x8 &b) |
|
v_int16x8 | operator& (const v_int16x8 &a, const v_int16x8 &b) |
|
v_uint32x4 | operator& (const v_uint32x4 &a, const v_uint32x4 &b) |
|
v_int32x4 | operator& (const v_int32x4 &a, const v_int32x4 &b) |
|
v_uint64x2 | operator& (const v_uint64x2 &a, const v_uint64x2 &b) |
|
v_int64x2 | operator& (const v_int64x2 &a, const v_int64x2 &b) |
|
v_float32x4 | operator& (const v_float32x4 &a, const v_float32x4 &b) |
|
v_float64x2 | operator& (const v_float64x2 &a, const v_float64x2 &b) |
|
template<typename _Tp , int n> |
v_reg< _Tp, n > & | operator&= (v_reg< _Tp, n > &a, const v_reg< _Tp, n > &b) |
|
v_uint8x16 & | operator&= (v_uint8x16 &a, const v_uint8x16 &b) |
|
v_int8x16 & | operator&= (v_int8x16 &a, const v_int8x16 &b) |
|
v_uint16x8 & | operator&= (v_uint16x8 &a, const v_uint16x8 &b) |
|
v_int16x8 & | operator&= (v_int16x8 &a, const v_int16x8 &b) |
|
v_uint32x4 & | operator&= (v_uint32x4 &a, const v_uint32x4 &b) |
|
v_int32x4 & | operator&= (v_int32x4 &a, const v_int32x4 &b) |
|
v_uint64x2 & | operator&= (v_uint64x2 &a, const v_uint64x2 &b) |
|
v_int64x2 & | operator&= (v_int64x2 &a, const v_int64x2 &b) |
|
v_float32x4 & | operator&= (v_float32x4 &a, const v_float32x4 &b) |
|
v_float64x2 & | operator&= (v_float64x2 &a, const v_float64x2 &b) |
|
template<typename T > |
static Affine3< T > | operator* (const Affine3< T > &affine1, const Affine3< T > &affine2) |
|
template<typename T , typename V > |
static V | operator* (const Affine3< T > &affine, const V &vector) |
|
static Vec3f | operator* (const Affine3f &affine, const Vec3f &vector) |
|
template<typename _Tp , int n> |
v_reg< _Tp, n > | operator* (const v_reg< _Tp, n > &a, const v_reg< _Tp, n > &b) |
|
static Vec3d | operator* (const Affine3d &affine, const Vec3d &vector) |
|
v_uint16x8 | operator* (const v_uint16x8 &a, const v_uint16x8 &b) |
|
v_int16x8 | operator* (const v_int16x8 &a, const v_int16x8 &b) |
|
v_int32x4 | operator* (const v_int32x4 &a, const v_int32x4 &b) |
|
v_uint32x4 | operator* (const v_uint32x4 &a, const v_uint32x4 &b) |
|
v_float32x4 | operator* (const v_float32x4 &a, const v_float32x4 &b) |
|
v_float64x2 | operator* (const v_float64x2 &a, const v_float64x2 &b) |
|
template<typename _Tp , int n> |
v_reg< _Tp, n > & | operator*= (v_reg< _Tp, n > &a, const v_reg< _Tp, n > &b) |
|
v_uint16x8 & | operator*= (v_uint16x8 &a, const v_uint16x8 &b) |
|
v_int16x8 & | operator*= (v_int16x8 &a, const v_int16x8 &b) |
|
v_int32x4 & | operator*= (v_int32x4 &a, const v_int32x4 &b) |
|
v_uint32x4 & | operator*= (v_uint32x4 &a, const v_uint32x4 &b) |
|
v_float32x4 & | operator*= (v_float32x4 &a, const v_float32x4 &b) |
|
v_float64x2 & | operator*= (v_float64x2 &a, const v_float64x2 &b) |
|
template<typename _Tp , int n> |
v_reg< _Tp, n > | operator+ (const v_reg< _Tp, n > &a, const v_reg< _Tp, n > &b) |
|
v_uint8x16 | operator+ (const v_uint8x16 &a, const v_uint8x16 &b) |
|
v_int8x16 | operator+ (const v_int8x16 &a, const v_int8x16 &b) |
|
v_uint16x8 | operator+ (const v_uint16x8 &a, const v_uint16x8 &b) |
|
v_int16x8 | operator+ (const v_int16x8 &a, const v_int16x8 &b) |
|
v_int32x4 | operator+ (const v_int32x4 &a, const v_int32x4 &b) |
|
v_uint32x4 | operator+ (const v_uint32x4 &a, const v_uint32x4 &b) |
|
v_float32x4 | operator+ (const v_float32x4 &a, const v_float32x4 &b) |
|
v_int64x2 | operator+ (const v_int64x2 &a, const v_int64x2 &b) |
|
v_uint64x2 | operator+ (const v_uint64x2 &a, const v_uint64x2 &b) |
|
v_float64x2 | operator+ (const v_float64x2 &a, const v_float64x2 &b) |
|
template<typename _Tp , int n> |
v_reg< _Tp, n > & | operator+= (v_reg< _Tp, n > &a, const v_reg< _Tp, n > &b) |
|
v_uint8x16 & | operator+= (v_uint8x16 &a, const v_uint8x16 &b) |
|
v_int8x16 & | operator+= (v_int8x16 &a, const v_int8x16 &b) |
|
v_uint16x8 & | operator+= (v_uint16x8 &a, const v_uint16x8 &b) |
|
v_int16x8 & | operator+= (v_int16x8 &a, const v_int16x8 &b) |
|
v_int32x4 & | operator+= (v_int32x4 &a, const v_int32x4 &b) |
|
v_uint32x4 & | operator+= (v_uint32x4 &a, const v_uint32x4 &b) |
|
v_float32x4 & | operator+= (v_float32x4 &a, const v_float32x4 &b) |
|
v_int64x2 & | operator+= (v_int64x2 &a, const v_int64x2 &b) |
|
v_uint64x2 & | operator+= (v_uint64x2 &a, const v_uint64x2 &b) |
|
v_float64x2 & | operator+= (v_float64x2 &a, const v_float64x2 &b) |
|
template<typename _Tp , int n> |
v_reg< _Tp, n > | operator- (const v_reg< _Tp, n > &a, const v_reg< _Tp, n > &b) |
|
v_uint8x16 | operator- (const v_uint8x16 &a, const v_uint8x16 &b) |
|
v_int8x16 | operator- (const v_int8x16 &a, const v_int8x16 &b) |
|
v_uint16x8 | operator- (const v_uint16x8 &a, const v_uint16x8 &b) |
|
v_int16x8 | operator- (const v_int16x8 &a, const v_int16x8 &b) |
|
v_int32x4 | operator- (const v_int32x4 &a, const v_int32x4 &b) |
|
v_uint32x4 | operator- (const v_uint32x4 &a, const v_uint32x4 &b) |
|
v_float32x4 | operator- (const v_float32x4 &a, const v_float32x4 &b) |
|
v_int64x2 | operator- (const v_int64x2 &a, const v_int64x2 &b) |
|
v_uint64x2 | operator- (const v_uint64x2 &a, const v_uint64x2 &b) |
|
v_float64x2 | operator- (const v_float64x2 &a, const v_float64x2 &b) |
|
template<typename _Tp > |
ptrdiff_t | operator- (const SeqIterator< _Tp > &a, const SeqIterator< _Tp > &b) |
|
template<typename _Tp , int n> |
v_reg< _Tp, n > & | operator-= (v_reg< _Tp, n > &a, const v_reg< _Tp, n > &b) |
|
v_uint8x16 & | operator-= (v_uint8x16 &a, const v_uint8x16 &b) |
|
v_int8x16 & | operator-= (v_int8x16 &a, const v_int8x16 &b) |
|
v_uint16x8 & | operator-= (v_uint16x8 &a, const v_uint16x8 &b) |
|
v_int16x8 & | operator-= (v_int16x8 &a, const v_int16x8 &b) |
|
v_int32x4 & | operator-= (v_int32x4 &a, const v_int32x4 &b) |
|
v_uint32x4 & | operator-= (v_uint32x4 &a, const v_uint32x4 &b) |
|
v_float32x4 & | operator-= (v_float32x4 &a, const v_float32x4 &b) |
|
v_int64x2 & | operator-= (v_int64x2 &a, const v_int64x2 &b) |
|
v_uint64x2 & | operator-= (v_uint64x2 &a, const v_uint64x2 &b) |
|
v_float64x2 & | operator-= (v_float64x2 &a, const v_float64x2 &b) |
|
template<typename _Tp , int n> |
v_reg< _Tp, n > | operator/ (const v_reg< _Tp, n > &a, const v_reg< _Tp, n > &b) |
|
v_float32x4 | operator/ (const v_float32x4 &a, const v_float32x4 &b) |
|
v_float64x2 | operator/ (const v_float64x2 &a, const v_float64x2 &b) |
|
template<typename _Tp , int n> |
v_reg< _Tp, n > & | operator/= (v_reg< _Tp, n > &a, const v_reg< _Tp, n > &b) |
|
v_float32x4 & | operator/= (v_float32x4 &a, const v_float32x4 &b) |
|
v_float64x2 & | operator/= (v_float64x2 &a, const v_float64x2 &b) |
|
template<typename _Tp , int n> |
v_reg< _Tp, n > | operator< (const v_reg< _Tp, n > &a, const v_reg< _Tp, n > &b) |
|
v_uint8x16 | operator< (const v_uint8x16 &a, const v_uint8x16 &b) |
|
v_int8x16 | operator< (const v_int8x16 &a, const v_int8x16 &b) |
|
v_uint16x8 | operator< (const v_uint16x8 &a, const v_uint16x8 &b) |
|
v_int16x8 | operator< (const v_int16x8 &a, const v_int16x8 &b) |
|
v_uint32x4 | operator< (const v_uint32x4 &a, const v_uint32x4 &b) |
|
v_int32x4 | operator< (const v_int32x4 &a, const v_int32x4 &b) |
|
v_float32x4 | operator< (const v_float32x4 &a, const v_float32x4 &b) |
|
v_float64x2 | operator< (const v_float64x2 &a, const v_float64x2 &b) |
|
template<typename _Tp , int n> |
v_reg< _Tp, n > | operator<< (const v_reg< _Tp, n > &a, int imm) |
|
v_uint8x16 | operator<< (const v_uint8x16 &a, int n) |
|
v_int8x16 | operator<< (const v_int8x16 &a, int n) |
|
v_uint16x8 | operator<< (const v_uint16x8 &a, int n) |
|
v_int16x8 | operator<< (const v_int16x8 &a, int n) |
|
v_uint32x4 | operator<< (const v_uint32x4 &a, int n) |
|
v_int32x4 | operator<< (const v_int32x4 &a, int n) |
|
v_uint64x2 | operator<< (const v_uint64x2 &a, int n) |
|
v_int64x2 | operator<< (const v_int64x2 &a, int n) |
|
template<typename _Tp , int n> |
v_reg< _Tp, n > | operator<= (const v_reg< _Tp, n > &a, const v_reg< _Tp, n > &b) |
|
v_uint8x16 | operator<= (const v_uint8x16 &a, const v_uint8x16 &b) |
|
v_int8x16 | operator<= (const v_int8x16 &a, const v_int8x16 &b) |
|
v_uint16x8 | operator<= (const v_uint16x8 &a, const v_uint16x8 &b) |
|
v_int16x8 | operator<= (const v_int16x8 &a, const v_int16x8 &b) |
|
v_uint32x4 | operator<= (const v_uint32x4 &a, const v_uint32x4 &b) |
|
v_int32x4 | operator<= (const v_int32x4 &a, const v_int32x4 &b) |
|
v_float32x4 | operator<= (const v_float32x4 &a, const v_float32x4 &b) |
|
v_float64x2 | operator<= (const v_float64x2 &a, const v_float64x2 &b) |
|
template<typename _Tp , int n> |
v_reg< _Tp, n > | operator== (const v_reg< _Tp, n > &a, const v_reg< _Tp, n > &b) |
|
template<typename T > |
bool | operator== (const Ptr< T > &ptr1, const Ptr< T > &ptr2) |
|
v_uint8x16 | operator== (const v_uint8x16 &a, const v_uint8x16 &b) |
|
v_int8x16 | operator== (const v_int8x16 &a, const v_int8x16 &b) |
|
v_uint16x8 | operator== (const v_uint16x8 &a, const v_uint16x8 &b) |
|
v_int16x8 | operator== (const v_int16x8 &a, const v_int16x8 &b) |
|
v_uint32x4 | operator== (const v_uint32x4 &a, const v_uint32x4 &b) |
|
v_int32x4 | operator== (const v_int32x4 &a, const v_int32x4 &b) |
|
v_float32x4 | operator== (const v_float32x4 &a, const v_float32x4 &b) |
|
v_float64x2 | operator== (const v_float64x2 &a, const v_float64x2 &b) |
|
template<typename _Tp > |
bool | operator== (const SeqIterator< _Tp > &a, const SeqIterator< _Tp > &b) |
|
template<typename _Tp , int n> |
v_reg< _Tp, n > | operator> (const v_reg< _Tp, n > &a, const v_reg< _Tp, n > &b) |
|
v_uint8x16 | operator> (const v_uint8x16 &a, const v_uint8x16 &b) |
|
v_int8x16 | operator> (const v_int8x16 &a, const v_int8x16 &b) |
|
v_uint16x8 | operator> (const v_uint16x8 &a, const v_uint16x8 &b) |
|
v_int16x8 | operator> (const v_int16x8 &a, const v_int16x8 &b) |
|
v_uint32x4 | operator> (const v_uint32x4 &a, const v_uint32x4 &b) |
|
v_int32x4 | operator> (const v_int32x4 &a, const v_int32x4 &b) |
|
v_float32x4 | operator> (const v_float32x4 &a, const v_float32x4 &b) |
|
v_float64x2 | operator> (const v_float64x2 &a, const v_float64x2 &b) |
|
template<typename _Tp , int n> |
v_reg< _Tp, n > | operator>= (const v_reg< _Tp, n > &a, const v_reg< _Tp, n > &b) |
|
v_uint8x16 | operator>= (const v_uint8x16 &a, const v_uint8x16 &b) |
|
v_int8x16 | operator>= (const v_int8x16 &a, const v_int8x16 &b) |
|
v_uint16x8 | operator>= (const v_uint16x8 &a, const v_uint16x8 &b) |
|
v_int16x8 | operator>= (const v_int16x8 &a, const v_int16x8 &b) |
|
v_uint32x4 | operator>= (const v_uint32x4 &a, const v_uint32x4 &b) |
|
v_int32x4 | operator>= (const v_int32x4 &a, const v_int32x4 &b) |
|
v_float32x4 | operator>= (const v_float32x4 &a, const v_float32x4 &b) |
|
v_float64x2 | operator>= (const v_float64x2 &a, const v_float64x2 &b) |
|
template<typename _Tp , int n> |
v_reg< _Tp, n > | operator>> (const v_reg< _Tp, n > &a, int imm) |
|
v_uint8x16 | operator>> (const v_uint8x16 &a, int n) |
|
v_int8x16 | operator>> (const v_int8x16 &a, int n) |
|
v_uint16x8 | operator>> (const v_uint16x8 &a, int n) |
|
v_int16x8 | operator>> (const v_int16x8 &a, int n) |
|
v_uint32x4 | operator>> (const v_uint32x4 &a, int n) |
|
v_int32x4 | operator>> (const v_int32x4 &a, int n) |
|
v_uint64x2 | operator>> (const v_uint64x2 &a, int n) |
|
v_int64x2 | operator>> (const v_int64x2 &a, int n) |
|
template<typename _Tp , int n> |
v_reg< _Tp, n > | operator^ (const v_reg< _Tp, n > &a, const v_reg< _Tp, n > &b) |
|
v_uint8x16 | operator^ (const v_uint8x16 &a, const v_uint8x16 &b) |
|
v_int8x16 | operator^ (const v_int8x16 &a, const v_int8x16 &b) |
|
v_uint16x8 | operator^ (const v_uint16x8 &a, const v_uint16x8 &b) |
|
v_int16x8 | operator^ (const v_int16x8 &a, const v_int16x8 &b) |
|
v_uint32x4 | operator^ (const v_uint32x4 &a, const v_uint32x4 &b) |
|
v_int32x4 | operator^ (const v_int32x4 &a, const v_int32x4 &b) |
|
v_uint64x2 | operator^ (const v_uint64x2 &a, const v_uint64x2 &b) |
|
v_int64x2 | operator^ (const v_int64x2 &a, const v_int64x2 &b) |
|
v_float32x4 | operator^ (const v_float32x4 &a, const v_float32x4 &b) |
|
v_float64x2 | operator^ (const v_float64x2 &a, const v_float64x2 &b) |
|
template<typename _Tp , int n> |
v_reg< _Tp, n > & | operator^= (v_reg< _Tp, n > &a, const v_reg< _Tp, n > &b) |
|
v_uint8x16 & | operator^= (v_uint8x16 &a, const v_uint8x16 &b) |
|
v_int8x16 & | operator^= (v_int8x16 &a, const v_int8x16 &b) |
|
v_uint16x8 & | operator^= (v_uint16x8 &a, const v_uint16x8 &b) |
|
v_int16x8 & | operator^= (v_int16x8 &a, const v_int16x8 &b) |
|
v_uint32x4 & | operator^= (v_uint32x4 &a, const v_uint32x4 &b) |
|
v_int32x4 & | operator^= (v_int32x4 &a, const v_int32x4 &b) |
|
v_uint64x2 & | operator^= (v_uint64x2 &a, const v_uint64x2 &b) |
|
v_int64x2 & | operator^= (v_int64x2 &a, const v_int64x2 &b) |
|
v_float32x4 & | operator^= (v_float32x4 &a, const v_float32x4 &b) |
|
v_float64x2 & | operator^= (v_float64x2 &a, const v_float64x2 &b) |
|
template<typename _Tp , int n> |
v_reg< _Tp, n > | operator| (const v_reg< _Tp, n > &a, const v_reg< _Tp, n > &b) |
|
v_uint8x16 | operator| (const v_uint8x16 &a, const v_uint8x16 &b) |
|
v_int8x16 | operator| (const v_int8x16 &a, const v_int8x16 &b) |
|
v_uint16x8 | operator| (const v_uint16x8 &a, const v_uint16x8 &b) |
|
v_int16x8 | operator| (const v_int16x8 &a, const v_int16x8 &b) |
|
v_uint32x4 | operator| (const v_uint32x4 &a, const v_uint32x4 &b) |
|
v_int32x4 | operator| (const v_int32x4 &a, const v_int32x4 &b) |
|
v_uint64x2 | operator| (const v_uint64x2 &a, const v_uint64x2 &b) |
|
v_int64x2 | operator| (const v_int64x2 &a, const v_int64x2 &b) |
|
v_float32x4 | operator| (const v_float32x4 &a, const v_float32x4 &b) |
|
v_float64x2 | operator| (const v_float64x2 &a, const v_float64x2 &b) |
|
template<typename _Tp , int n> |
v_reg< _Tp, n > & | operator|= (v_reg< _Tp, n > &a, const v_reg< _Tp, n > &b) |
|
v_uint8x16 & | operator|= (v_uint8x16 &a, const v_uint8x16 &b) |
|
v_int8x16 & | operator|= (v_int8x16 &a, const v_int8x16 &b) |
|
v_uint16x8 & | operator|= (v_uint16x8 &a, const v_uint16x8 &b) |
|
v_int16x8 & | operator|= (v_int16x8 &a, const v_int16x8 &b) |
|
v_uint32x4 & | operator|= (v_uint32x4 &a, const v_uint32x4 &b) |
|
v_int32x4 & | operator|= (v_int32x4 &a, const v_int32x4 &b) |
|
v_uint64x2 & | operator|= (v_uint64x2 &a, const v_uint64x2 &b) |
|
v_int64x2 & | operator|= (v_int64x2 &a, const v_int64x2 &b) |
|
v_float32x4 & | operator|= (v_float32x4 &a, const v_float32x4 &b) |
|
v_float64x2 & | operator|= (v_float64x2 &a, const v_float64x2 &b) |
|
template<typename _Tp , int n> |
v_reg< _Tp, n > | operator~ (const v_reg< _Tp, n > &a) |
|
v_uint8x16 | operator~ (const v_uint8x16 &a) |
|
v_int8x16 | operator~ (const v_int8x16 &a) |
|
v_uint16x8 | operator~ (const v_uint16x8 &a) |
|
v_int16x8 | operator~ (const v_int16x8 &a) |
|
v_uint32x4 | operator~ (const v_uint32x4 &a) |
|
v_int32x4 | operator~ (const v_int32x4 &a) |
|
v_uint64x2 | operator~ (const v_uint64x2 &a) |
|
v_int64x2 | operator~ (const v_int64x2 &a) |
|
v_float32x4 | operator~ (const v_float32x4 &a) |
|
v_float64x2 | operator~ (const v_float64x2 &a) |
|
void | parallel_for_ (const Range &range, const ParallelLoopBody &body, double nstripes=-1.) |
| Parallel data processor. More...
|
|
void | patchNaNs (InputOutputArray a, double val=0) |
| converts NaN's to the given number More...
|
|
void | PCABackProject (InputArray data, InputArray mean, InputArray eigenvectors, OutputArray result) |
|
void | PCACompute (InputArray data, InputOutputArray mean, OutputArray eigenvectors, int maxComponents=0) |
|
void | PCACompute (InputArray data, InputOutputArray mean, OutputArray eigenvectors, double retainedVariance) |
|
void | PCAProject (InputArray data, InputArray mean, InputArray eigenvectors, OutputArray result) |
|
void | pencilSketch (InputArray src, OutputArray dst1, OutputArray dst2, float sigma_s=60, float sigma_r=0.07f, float shade_factor=0.02f) |
| Pencil-like non-photorealistic line drawing. More...
|
|
void | perspectiveTransform (InputArray src, OutputArray dst, InputArray m) |
| Performs the perspective matrix transformation of vectors. More...
|
|
void | phase (InputArray x, InputArray y, OutputArray angle, bool angleInDegrees=false) |
| Calculates the rotation angle of 2D vectors. More...
|
|
Point2d | phaseCorrelate (InputArray src1, InputArray src2, InputArray window=noArray(), double *response=0) |
| The function is used to detect translational shifts that occur between two images. More...
|
|
double | pointPolygonTest (InputArray contour, Point2f pt, bool measureDist) |
| Performs a point-in-contour test. More...
|
|
void | polarToCart (InputArray magnitude, InputArray angle, OutputArray x, OutputArray y, bool angleInDegrees=false) |
| Calculates x and y coordinates of 2D vectors from their magnitude and angle. More...
|
|
void | polylines (Mat &img, const Point *const *pts, const int *npts, int ncontours, bool isClosed, const Scalar &color, int thickness=1, int lineType=LINE_8, int shift=0) |
|
void | polylines (InputOutputArray img, InputArrayOfArrays pts, bool isClosed, const Scalar &color, int thickness=1, int lineType=LINE_8, int shift=0) |
| Draws several polygonal curves. More...
|
|
void | pow (InputArray src, double power, OutputArray dst) |
| Raises every array element to a power. More...
|
|
void | preCornerDetect (InputArray src, OutputArray dst, int ksize, int borderType=BORDER_DEFAULT) |
| Calculates a feature map for corner detection. More...
|
|
void | projectPoints (InputArray objectPoints, InputArray rvec, InputArray tvec, InputArray cameraMatrix, InputArray distCoeffs, OutputArray imagePoints, OutputArray jacobian=noArray(), double aspectRatio=0) |
| Projects 3D points to an image plane. More...
|
|
double | PSNR (InputArray src1, InputArray src2) |
| computes PSNR image/video quality metric More...
|
|
void | putText (InputOutputArray img, const String &text, Point org, int fontFace, double fontScale, Scalar color, int thickness=1, int lineType=LINE_8, bool bottomLeftOrigin=false) |
| Draws a text string. More...
|
|
void | pyrDown (InputArray src, OutputArray dst, const Size &dstsize=Size(), int borderType=BORDER_DEFAULT) |
| Blurs an image and downsamples it. More...
|
|
void | pyrMeanShiftFiltering (InputArray src, OutputArray dst, double sp, double sr, int maxLevel=1, TermCriteria termcrit=TermCriteria(TermCriteria::MAX_ITER+TermCriteria::EPS, 5, 1)) |
| Performs initial step of meanshift segmentation of an image. More...
|
|
void | pyrUp (InputArray src, OutputArray dst, const Size &dstsize=Size(), int borderType=BORDER_DEFAULT) |
| Upsamples an image and then blurs it. More...
|
|
void | randn (InputOutputArray dst, InputArray mean, InputArray stddev) |
| Fills the array with normally distributed random numbers. More...
|
|
void | randShuffle (InputOutputArray dst, double iterFactor=1., RNG *rng=0) |
| Shuffles the array elements randomly. More...
|
|
void | randu (InputOutputArray dst, InputArray low, InputArray high) |
| Generates a single uniformly-distributed random number or an array of random numbers. More...
|
|
int | recoverPose (InputArray E, InputArray points1, InputArray points2, OutputArray R, OutputArray t, double focal=1.0, Point2d pp=Point2d(0, 0), InputOutputArray mask=noArray()) |
| Recover relative camera rotation and translation from an estimated essential matrix and the corresponding points in two images, using cheirality check. Returns the number of inliers which pass the check. More...
|
|
void | rectangle (InputOutputArray img, Point pt1, Point pt2, const Scalar &color, int thickness=1, int lineType=LINE_8, int shift=0) |
| Draws a simple, thick, or filled up-right rectangle. More...
|
|
void | rectangle (Mat &img, Rect rec, const Scalar &color, int thickness=1, int lineType=LINE_8, int shift=0) |
|
float | rectify3Collinear (InputArray cameraMatrix1, InputArray distCoeffs1, InputArray cameraMatrix2, InputArray distCoeffs2, InputArray cameraMatrix3, InputArray distCoeffs3, InputArrayOfArrays imgpt1, InputArrayOfArrays imgpt3, Size imageSize, InputArray R12, InputArray T12, InputArray R13, InputArray T13, OutputArray R1, OutputArray R2, OutputArray R3, OutputArray P1, OutputArray P2, OutputArray P3, OutputArray Q, double alpha, Size newImgSize, Rect *roi1, Rect *roi2, int flags) |
| computes the rectification transformations for 3-head camera, where all the heads are on the same line. More...
|
|
ErrorCallback | redirectError (ErrorCallback errCallback, void *userdata=0, void **prevUserdata=0) |
| Sets the new error handler and the optional user data. More...
|
|
void | reduce (InputArray src, OutputArray dst, int dim, int rtype, int dtype=-1) |
| Reduces a matrix to a vector. More...
|
|
void | remap (InputArray src, OutputArray dst, InputArray map1, InputArray map2, int interpolation, int borderMode=BORDER_CONSTANT, const Scalar &borderValue=Scalar()) |
| Applies a generic geometrical transformation to an image. More...
|
|
void | repeat (InputArray src, int ny, int nx, OutputArray dst) |
| Fills the output array with repeated copies of the input array. More...
|
|
Mat | repeat (const Mat &src, int ny, int nx) |
|
void | reprojectImageTo3D (InputArray disparity, OutputArray _3dImage, InputArray Q, bool handleMissingValues=false, int ddepth=-1) |
| Reprojects a disparity image to 3D space. More...
|
|
void | resize (InputArray src, OutputArray dst, Size dsize, double fx=0, double fy=0, int interpolation=INTER_LINEAR) |
| Resizes an image. More...
|
|
void | resizeWindow (const String &winname, int width, int height) |
| Resizes window to the specified size. More...
|
|
void | Rodrigues (InputArray src, OutputArray dst, OutputArray jacobian=noArray()) |
| Converts a rotation matrix to a rotation vector or vice versa. More...
|
|
int | rotatedRectangleIntersection (const RotatedRect &rect1, const RotatedRect &rect2, OutputArray intersectingRegion) |
| Finds out if there is any intersection between two rotated rectangles. More...
|
|
Vec3d | RQDecomp3x3 (InputArray src, OutputArray mtxR, OutputArray mtxQ, OutputArray Qx=noArray(), OutputArray Qy=noArray(), OutputArray Qz=noArray()) |
| Computes an RQ decomposition of 3x3 matrices. More...
|
|
template<typename _Tp > |
static _Tp | saturate_cast (uchar v) |
|
template<typename _Tp > |
static _Tp | saturate_cast (schar v) |
|
template<typename _Tp > |
static _Tp | saturate_cast (ushort v) |
|
template<typename _Tp > |
static _Tp | saturate_cast (short v) |
|
template<typename _Tp > |
static _Tp | saturate_cast (unsigned v) |
|
template<typename _Tp > |
static _Tp | saturate_cast (int v) |
|
template<typename _Tp > |
static _Tp | saturate_cast (float v) |
|
template<typename _Tp > |
static _Tp | saturate_cast (double v) |
|
template<typename _Tp > |
static _Tp | saturate_cast (int64 v) |
|
template<typename _Tp > |
static _Tp | saturate_cast (uint64 v) |
|
void | saveWindowParameters (const String &windowName) |
| Saves parameters of the specified window. More...
|
|
void | scaleAdd (InputArray src1, double alpha, InputArray src2, OutputArray dst) |
| Calculates the sum of a scaled array and another array. More...
|
|
void | Scharr (InputArray src, OutputArray dst, int ddepth, int dx, int dy, double scale=1, double delta=0, int borderType=BORDER_DEFAULT) |
| Calculates the first x- or y- image derivative using Scharr operator. More...
|
|
void | seamlessClone (InputArray src, InputArray dst, InputArray mask, Point p, OutputArray blend, int flags) |
| Image editing tasks concern either global changes (color/intensity corrections, filters, deformations) or local changes concerned to a selection. Here we are interested in achieving local changes, ones that are restricted to a region manually selected (ROI), in a seamless and effortless manner. The extent of the changes ranges from slight distortions to complete replacement by novel content [97] . More...
|
|
void | sepFilter2D (InputArray src, OutputArray dst, int ddepth, InputArray kernelX, InputArray kernelY, Point anchor=Point(-1,-1), double delta=0, int borderType=BORDER_DEFAULT) |
| Applies a separable linear filter to an image. More...
|
|
void | seqInsertSlice (CvSeq *seq, int before_index, const CvArr *from_arr) |
|
void | seqPop (CvSeq *seq, void *element=0) |
|
void | seqPopFront (CvSeq *seq, void *element=0) |
|
void | seqPopMulti (CvSeq *seq, void *elements, int count, int in_front=0) |
|
schar * | seqPush (CvSeq *seq, const void *element=0) |
|
schar * | seqPushFront (CvSeq *seq, const void *element=0) |
|
void | seqRemove (CvSeq *seq, int index) |
|
void | seqRemoveSlice (CvSeq *seq, CvSlice slice) |
|
bool | setBreakOnError (bool flag) |
| Sets/resets the break-on-error mode. More...
|
|
void | setIdentity (InputOutputArray mtx, const Scalar &s=Scalar(1)) |
| Initializes a scaled identity matrix. More...
|
|
void | setMouseCallback (const String &winname, MouseCallback onMouse, void *userdata=0) |
| Sets mouse handler for the specified window. More...
|
|
void | setNumThreads (int nthreads) |
| OpenCV will try to set the number of threads for the next parallel region. More...
|
|
void | setOpenGlContext (const String &winname) |
| Sets the specified window as current OpenGL context. More...
|
|
void | setOpenGlDrawCallback (const String &winname, OpenGlDrawCallback onOpenGlDraw, void *userdata=0) |
| Sets a callback function to be called to draw on top of displayed image. More...
|
|
void | setTrackbarMax (const String &trackbarname, const String &winname, int maxval) |
| Sets the trackbar maximum position. More...
|
|
void | setTrackbarPos (const String &trackbarname, const String &winname, int pos) |
| Sets the trackbar position. More...
|
|
void | setUseOptimized (bool onoff) |
| Enables or disables the optimized code. More...
|
|
void | setWindowProperty (const String &winname, int prop_id, double prop_value) |
| Changes parameters of a window dynamically. More...
|
|
void | setWindowTitle (const String &winname, const String &title) |
| Updates window title. More...
|
|
void | Sobel (InputArray src, OutputArray dst, int ddepth, int dx, int dy, int ksize=3, double scale=1, double delta=0, int borderType=BORDER_DEFAULT) |
| Calculates the first, second, third, or mixed image derivatives using an extended Sobel operator. More...
|
|
bool | solve (InputArray src1, InputArray src2, OutputArray dst, int flags=DECOMP_LU) |
| Solves one or more linear systems or least-squares problems. More...
|
|
int | solveCubic (InputArray coeffs, OutputArray roots) |
| Finds the real roots of a cubic equation. More...
|
|
int | solveLP (const Mat &Func, const Mat &Constr, Mat &z) |
| Solve given (non-integer) linear programming problem using the Simplex Algorithm (Simplex Method). More...
|
|
bool | solvePnP (InputArray objectPoints, InputArray imagePoints, InputArray cameraMatrix, InputArray distCoeffs, OutputArray rvec, OutputArray tvec, bool useExtrinsicGuess=false, int flags=SOLVEPNP_ITERATIVE) |
| Finds an object pose from 3D-2D point correspondences. More...
|
|
bool | solvePnPRansac (InputArray objectPoints, InputArray imagePoints, InputArray cameraMatrix, InputArray distCoeffs, OutputArray rvec, OutputArray tvec, bool useExtrinsicGuess=false, int iterationsCount=100, float reprojectionError=8.0, double confidence=0.99, OutputArray inliers=noArray(), int flags=SOLVEPNP_ITERATIVE) |
| Finds an object pose from 3D-2D point correspondences using the RANSAC scheme. More...
|
|
double | solvePoly (InputArray coeffs, OutputArray roots, int maxIters=300) |
| Finds the real or complex roots of a polynomial equation. More...
|
|
void | sort (InputArray src, OutputArray dst, int flags) |
| Sorts each row or each column of a matrix. More...
|
|
void | sortIdx (InputArray src, OutputArray dst, int flags) |
| Sorts each row or each column of a matrix. More...
|
|
void | split (const Mat &src, Mat *mvbegin) |
| Divides a multi-channel array into several single-channel arrays. More...
|
|
void | split (InputArray m, OutputArrayOfArrays mv) |
|
void | sqrBoxFilter (InputArray _src, OutputArray _dst, int ddepth, Size ksize, Point anchor=Point(-1,-1), bool normalize=true, int borderType=BORDER_DEFAULT) |
| Calculates the normalized sum of squares of the pixel values overlapping the filter. More...
|
|
void | sqrt (InputArray src, OutputArray dst) |
| Calculates a square root of array elements. More...
|
|
int | startLoop (int(*pt2Func)(int argc, char *argv[]), int argc, char *argv[]) |
|
int | startWindowThread () |
|
double | stereoCalibrate (InputArrayOfArrays objectPoints, InputArrayOfArrays imagePoints1, InputArrayOfArrays imagePoints2, InputOutputArray cameraMatrix1, InputOutputArray distCoeffs1, InputOutputArray cameraMatrix2, InputOutputArray distCoeffs2, Size imageSize, OutputArray R, OutputArray T, OutputArray E, OutputArray F, int flags=CALIB_FIX_INTRINSIC, TermCriteria criteria=TermCriteria(TermCriteria::COUNT+TermCriteria::EPS, 30, 1e-6)) |
| Calibrates the stereo camera. More...
|
|
void | stereoRectify (InputArray cameraMatrix1, InputArray distCoeffs1, InputArray cameraMatrix2, InputArray distCoeffs2, Size imageSize, InputArray R, InputArray T, OutputArray R1, OutputArray R2, OutputArray P1, OutputArray P2, OutputArray Q, int flags=CALIB_ZERO_DISPARITY, double alpha=-1, Size newImageSize=Size(), Rect *validPixROI1=0, Rect *validPixROI2=0) |
| Computes rectification transforms for each head of a calibrated stereo camera. More...
|
|
bool | stereoRectifyUncalibrated (InputArray points1, InputArray points2, InputArray F, Size imgSize, OutputArray H1, OutputArray H2, double threshold=5) |
| Computes a rectification transform for an uncalibrated stereo camera. More...
|
|
void | stopLoop () |
|
void | stylization (InputArray src, OutputArray dst, float sigma_s=60, float sigma_r=0.45f) |
| Stylization aims to produce digital imagery with a wide variety of effects not focused on photorealism. Edge-aware filters are ideal for stylization, as they can abstract regions of low contrast while preserving, or enhancing, high-contrast features. More...
|
|
void | subtract (InputArray src1, InputArray src2, OutputArray dst, InputArray mask=noArray(), int dtype=-1) |
| Calculates the per-element difference between two arrays or array and a scalar. More...
|
|
Scalar | sum (InputArray src) |
| Calculates the sum of array elements. More...
|
|
void | SVBackSubst (InputArray w, InputArray u, InputArray vt, InputArray rhs, OutputArray dst) |
|
void | SVDecomp (InputArray src, OutputArray w, OutputArray u, OutputArray vt, int flags=0) |
|
void | swap (Mat &a, Mat &b) |
| Swaps two matrices. More...
|
|
void | swap (UMat &a, UMat &b) |
|
template<typename T > |
void | swap (Ptr< T > &ptr1, Ptr< T > &ptr2) |
|
String | tempfile (const char *suffix=0) |
|
void | textureFlattening (InputArray src, InputArray mask, OutputArray dst, float low_threshold=30, float high_threshold=45, int kernel_size=3) |
| By retaining only the gradients at edge locations, before integrating with the Poisson solver, one washes out the texture of the selected region, giving its contents a flat aspect. Here Canny Edge Detector is used. More...
|
|
RNG & | theRNG () |
| Returns the default random number generator. More...
|
|
double | threshold (InputArray src, OutputArray dst, double thresh, double maxval, int type) |
| Applies a fixed-level threshold to each array element. More...
|
|
template<typename _Tp , int m, int n> |
static double | trace (const Matx< _Tp, m, n > &a) |
|
Scalar | trace (InputArray mtx) |
| Returns the trace of a matrix. More...
|
|
void | transform (InputArray src, OutputArray dst, InputArray m) |
| Performs the matrix transformation of every array element. More...
|
|
void | transpose (InputArray src, OutputArray dst) |
| Transposes a matrix. More...
|
|
void | transpose4x4 (const v_uint32x4 &a0, const v_uint32x4 &a1, const v_uint32x4 &a2, const v_uint32x4 &a3, v_uint32x4 &b0, v_uint32x4 &b1, v_uint32x4 &b2, v_uint32x4 &b3) |
|
void | transpose4x4 (const v_int32x4 &a0, const v_int32x4 &a1, const v_int32x4 &a2, const v_int32x4 &a3, v_int32x4 &b0, v_int32x4 &b1, v_int32x4 &b2, v_int32x4 &b3) |
|
void | transpose4x4 (const v_float32x4 &a0, const v_float32x4 &a1, const v_float32x4 &a2, const v_float32x4 &a3, v_float32x4 &b0, v_float32x4 &b1, v_float32x4 &b2, v_float32x4 &b3) |
|
void | triangulatePoints (InputArray projMatr1, InputArray projMatr2, InputArray projPoints1, InputArray projPoints2, OutputArray points4D) |
| Reconstructs points by triangulation. More...
|
|
void | undistort (InputArray src, OutputArray dst, InputArray cameraMatrix, InputArray distCoeffs, InputArray newCameraMatrix=noArray()) |
| Transforms an image to compensate for lens distortion. More...
|
|
void | undistortPoints (InputArray src, OutputArray dst, InputArray cameraMatrix, InputArray distCoeffs, InputArray R=noArray(), InputArray P=noArray()) |
| Computes the ideal point coordinates from the observed point coordinates. More...
|
|
void | updateWindow (const String &winname) |
| Force window to redraw its context and call draw callback ( setOpenGlDrawCallback ). More...
|
|
bool | useOptimized () |
| Returns the status of optimized code usage. More...
|
|
template<typename _Tp , int n> |
v_reg< typename V_TypeTraits
< _Tp >::abs_type, n > | v_abs (const v_reg< _Tp, n > &a) |
|
v_float32x4 | v_abs (v_float32x4 x) |
|
v_float32x4 | v_abs (const v_float32x4 &x) |
|
v_float64x2 | v_abs (const v_float64x2 &x) |
|
template<typename _Tp , int n> |
v_reg< typename V_TypeTraits
< _Tp >::abs_type, n > | v_absdiff (const v_reg< _Tp, n > &a, const v_reg< _Tp, n > &b) |
|
v_uint8x16 | v_absdiff (const v_uint8x16 &a, const v_uint8x16 &b) |
|
v_uint16x8 | v_absdiff (const v_uint16x8 &a, const v_uint16x8 &b) |
|
v_uint32x4 | v_absdiff (const v_uint32x4 &a, const v_uint32x4 &b) |
|
v_float32x4 | v_absdiff (const v_float32x4 &a, const v_float32x4 &b) |
|
v_uint8x16 | v_absdiff (const v_int8x16 &a, const v_int8x16 &b) |
|
v_uint16x8 | v_absdiff (const v_int16x8 &a, const v_int16x8 &b) |
|
v_float64x2 | v_absdiff (const v_float64x2 &a, const v_float64x2 &b) |
|
template<typename _Tp , int n> |
v_reg< _Tp, n > | v_add_wrap (const v_reg< _Tp, n > &a, const v_reg< _Tp, n > &b) |
|
v_uint8x16 | v_add_wrap (const v_uint8x16 &a, const v_uint8x16 &b) |
|
v_int8x16 | v_add_wrap (const v_int8x16 &a, const v_int8x16 &b) |
|
v_uint16x8 | v_add_wrap (const v_uint16x8 &a, const v_uint16x8 &b) |
|
v_int16x8 | v_add_wrap (const v_int16x8 &a, const v_int16x8 &b) |
|
template<typename _Tp , int n> |
v_reg< int, n > | v_ceil (const v_reg< _Tp, n > &a) |
|
template<int n> |
v_reg< int, n > | v_ceil (const v_reg< float, n > &a) |
|
template<int n> |
v_reg< int, n *2 > | v_ceil (const v_reg< double, n > &a) |
|
v_int32x4 | v_ceil (const v_float32x4 &a) |
|
v_int32x4 | v_ceil (const v_float64x2 &a) |
|
template<typename _Tp , int n> |
bool | v_check_all (const v_reg< _Tp, n > &a) |
|
bool | v_check_all (const v_uint8x16 &a) |
|
bool | v_check_all (const v_uint16x8 &a) |
|
bool | v_check_all (const v_uint32x4 &a) |
|
bool | v_check_all (const v_int8x16 &a) |
|
bool | v_check_all (const v_int16x8 &a) |
|
bool | v_check_all (const v_int32x4 &a) |
|
bool | v_check_all (const v_float32x4 &a) |
|
bool | v_check_all (const v_float64x2 &a) |
|
template<typename _Tp , int n> |
bool | v_check_any (const v_reg< _Tp, n > &a) |
|
bool | v_check_any (const v_uint8x16 &a) |
|
bool | v_check_any (const v_uint16x8 &a) |
|
bool | v_check_any (const v_uint32x4 &a) |
|
bool | v_check_any (const v_int8x16 &a) |
|
bool | v_check_any (const v_int16x8 &a) |
|
bool | v_check_any (const v_int32x4 &a) |
|
bool | v_check_any (const v_float32x4 &a) |
|
bool | v_check_any (const v_float64x2 &a) |
|
template<typename _Tp , int n> |
v_reg< _Tp, n > | v_combine_high (const v_reg< _Tp, n > &a, const v_reg< _Tp, n > &b) |
|
v_uint8x16 | v_combine_high (const v_uint8x16 &a, const v_uint8x16 &b) |
|
v_int8x16 | v_combine_high (const v_int8x16 &a, const v_int8x16 &b) |
|
v_uint16x8 | v_combine_high (const v_uint16x8 &a, const v_uint16x8 &b) |
|
v_int16x8 | v_combine_high (const v_int16x8 &a, const v_int16x8 &b) |
|
v_uint32x4 | v_combine_high (const v_uint32x4 &a, const v_uint32x4 &b) |
|
v_int32x4 | v_combine_high (const v_int32x4 &a, const v_int32x4 &b) |
|
v_float32x4 | v_combine_high (const v_float32x4 &a, const v_float32x4 &b) |
|
v_float64x2 | v_combine_high (const v_float64x2 &a, const v_float64x2 &b) |
|
template<typename _Tp , int n> |
v_reg< _Tp, n > | v_combine_low (const v_reg< _Tp, n > &a, const v_reg< _Tp, n > &b) |
|
v_uint8x16 | v_combine_low (const v_uint8x16 &a, const v_uint8x16 &b) |
|
v_int8x16 | v_combine_low (const v_int8x16 &a, const v_int8x16 &b) |
|
v_uint16x8 | v_combine_low (const v_uint16x8 &a, const v_uint16x8 &b) |
|
v_int16x8 | v_combine_low (const v_int16x8 &a, const v_int16x8 &b) |
|
v_uint32x4 | v_combine_low (const v_uint32x4 &a, const v_uint32x4 &b) |
|
v_int32x4 | v_combine_low (const v_int32x4 &a, const v_int32x4 &b) |
|
v_float32x4 | v_combine_low (const v_float32x4 &a, const v_float32x4 &b) |
|
v_float64x2 | v_combine_low (const v_float64x2 &a, const v_float64x2 &b) |
|
template<typename _Tp , int n> |
v_reg< _Tp, n > | v_cos (const v_reg< _Tp, n > &a) |
|
template<int n> |
v_reg< float, n > | v_cvt_f32 (const v_reg< int, n > &a) |
|
v_float32x4 | v_cvt_f32 (const v_int32x4 &a) |
|
v_float32x4 | v_cvt_f32 (const v_float64x2 &a) |
|
template<int n> |
v_reg< double, n > | v_cvt_f64 (const v_reg< int, n *2 > &a) |
|
template<int n> |
v_reg< double, n > | v_cvt_f64 (const v_reg< float, n *2 > &a) |
|
v_float64x2 | v_cvt_f64 (const v_int32x4 &a) |
|
v_float64x2 | v_cvt_f64 (const v_float32x4 &a) |
|
template<typename _Tp , int n> |
v_reg< typename V_TypeTraits
< _Tp >::w_type, n/2 > | v_dotprod (const v_reg< _Tp, n > &a, const v_reg< _Tp, n > &b) |
|
v_int32x4 | v_dotprod (const v_int16x8 &a, const v_int16x8 &b) |
|
template<typename _Tp , int n> |
v_reg< _Tp, n > | v_exp (const v_reg< _Tp, n > &a) |
|
template<typename _Tp , int n> |
void | v_expand (const v_reg< _Tp, n > &a, v_reg< typename V_TypeTraits< _Tp >::w_type, n/2 > &b0, v_reg< typename V_TypeTraits< _Tp >::w_type, n/2 > &b1) |
|
void | v_expand (const v_uint8x16 &a, v_uint16x8 &b0, v_uint16x8 &b1) |
|
void | v_expand (const v_int8x16 &a, v_int16x8 &b0, v_int16x8 &b1) |
|
void | v_expand (const v_uint16x8 &a, v_uint32x4 &b0, v_uint32x4 &b1) |
|
void | v_expand (const v_int16x8 &a, v_int32x4 &b0, v_int32x4 &b1) |
|
void | v_expand (const v_uint32x4 &a, v_uint64x2 &b0, v_uint64x2 &b1) |
|
void | v_expand (const v_int32x4 &a, v_int64x2 &b0, v_int64x2 &b1) |
|
template<typename _Tp , int n> |
v_reg< int, n > | v_floor (const v_reg< _Tp, n > &a) |
|
template<int n> |
v_reg< int, n > | v_floor (const v_reg< float, n > &a) |
|
template<int n> |
v_reg< int, n *2 > | v_floor (const v_reg< double, n > &a) |
|
v_int32x4 | v_floor (const v_float32x4 &a) |
|
v_int32x4 | v_floor (const v_float64x2 &a) |
|
template<typename _Tp , int n> |
void | v_hsum (const v_reg< _Tp, n > &a, v_reg< typename V_TypeTraits< _Tp >::w_type, n/2 > &c) |
|
template<typename _Tp , int n> |
v_reg< _Tp, n > | v_invsqrt (const v_reg< _Tp, n > &a) |
|
v_float32x4 | v_invsqrt (const v_float32x4 &x) |
|
v_float64x2 | v_invsqrt (const v_float64x2 &x) |
|
template<typename _Tp , int n> |
v_reg< _Tp, n > | v_load (const _Tp *ptr) |
|
v_uint8x16 | v_load (const uchar *ptr) |
|
v_int8x16 | v_load (const schar *ptr) |
|
v_uint16x8 | v_load (const ushort *ptr) |
|
v_int16x8 | v_load (const short *ptr) |
|
v_uint32x4 | v_load (const unsigned *ptr) |
|
v_int32x4 | v_load (const int *ptr) |
|
v_float32x4 | v_load (const float *ptr) |
|
v_uint64x2 | v_load (const uint64 *ptr) |
|
v_int64x2 | v_load (const int64 *ptr) |
|
v_float64x2 | v_load (const double *ptr) |
|
template<typename _Tp , int n> |
v_reg< _Tp, n > | v_load_aligned (const _Tp *ptr) |
|
v_uint8x16 | v_load_aligned (const uchar *ptr) |
|
v_int8x16 | v_load_aligned (const schar *ptr) |
|
v_uint16x8 | v_load_aligned (const ushort *ptr) |
|
v_int16x8 | v_load_aligned (const short *ptr) |
|
v_uint32x4 | v_load_aligned (const unsigned *ptr) |
|
v_int32x4 | v_load_aligned (const int *ptr) |
|
v_float32x4 | v_load_aligned (const float *ptr) |
|
v_uint64x2 | v_load_aligned (const uint64 *ptr) |
|
v_int64x2 | v_load_aligned (const int64 *ptr) |
|
v_float64x2 | v_load_aligned (const double *ptr) |
|
template<typename _Tp , int n> |
void | v_load_deinterleave (const _Tp *ptr, v_reg< _Tp, n > &a, v_reg< _Tp, n > &b, v_reg< _Tp, n > &c) |
|
template<typename _Tp , int n> |
void | v_load_deinterleave (const _Tp *ptr, v_reg< _Tp, n > &a, v_reg< _Tp, n > &b, v_reg< _Tp, n > &c, v_reg< _Tp, n > &d) |
|
void | v_load_deinterleave (const uchar *ptr, v_uint8x16 &a, v_uint8x16 &b, v_uint8x16 &c) |
|
void | v_load_deinterleave (const uchar *ptr, v_uint8x16 &a, v_uint8x16 &b, v_uint8x16 &c, v_uint8x16 &d) |
|
void | v_load_deinterleave (const schar *ptr, v_int8x16 &a, v_int8x16 &b, v_int8x16 &c) |
|
void | v_load_deinterleave (const schar *ptr, v_int8x16 &a, v_int8x16 &b, v_int8x16 &c, v_int8x16 &d) |
|
void | v_load_deinterleave (const ushort *ptr, v_uint16x8 &a, v_uint16x8 &b, v_uint16x8 &c) |
|
void | v_load_deinterleave (const ushort *ptr, v_uint16x8 &a, v_uint16x8 &b, v_uint16x8 &c, v_uint16x8 &d) |
|
void | v_load_deinterleave (const short *ptr, v_int16x8 &a, v_int16x8 &b, v_int16x8 &c, v_int16x8 &d) |
|
void | v_load_deinterleave (const short *ptr, v_int16x8 &a, v_int16x8 &b, v_int16x8 &c) |
|
void | v_load_deinterleave (const unsigned *ptr, v_uint32x4 &a, v_uint32x4 &b, v_uint32x4 &c) |
|
void | v_load_deinterleave (const unsigned *ptr, v_uint32x4 &a, v_uint32x4 &b, v_uint32x4 &c, v_uint32x4 &d) |
|
void | v_load_deinterleave (const int *ptr, v_int32x4 &a, v_int32x4 &b, v_int32x4 &c, v_int32x4 &d) |
|
void | v_load_deinterleave (const int *ptr, v_int32x4 &a, v_int32x4 &b, v_int32x4 &c) |
|
void | v_load_deinterleave (const float *ptr, v_float32x4 &a, v_float32x4 &b, v_float32x4 &c) |
|
void | v_load_deinterleave (const float *ptr, v_float32x4 &a, v_float32x4 &b, v_float32x4 &c, v_float32x4 &d) |
|
template<typename _Tp , int n> |
v_reg< typename V_TypeTraits
< _Tp >::w_type, n > | v_load_expand (const _Tp *ptr) |
|
v_uint16x8 | v_load_expand (const uchar *ptr) |
|
v_int16x8 | v_load_expand (const schar *ptr) |
|
v_uint32x4 | v_load_expand (const ushort *ptr) |
|
v_int32x4 | v_load_expand (const short *ptr) |
|
v_uint64x2 | v_load_expand (const unsigned *ptr) |
|
v_int64x2 | v_load_expand (const int *ptr) |
|
template<typename _Tp , int n> |
v_reg< typename V_TypeTraits
< typename V_TypeTraits< _Tp >
::w_type >::w_type, n > | v_load_expand_q (const _Tp *ptr) |
|
v_uint32x4 | v_load_expand_q (const uchar *ptr) |
|
v_int32x4 | v_load_expand_q (const schar *ptr) |
|
template<typename _Tp , int n> |
void | v_load_halves (const _Tp *loptr, const _Tp *hiptr) |
|
v_uint8x16 | v_load_halves (const uchar *ptr0, const uchar *ptr1) |
|
v_int8x16 | v_load_halves (const schar *ptr0, const schar *ptr1) |
|
v_uint16x8 | v_load_halves (const ushort *ptr0, const ushort *ptr1) |
|
v_int16x8 | v_load_halves (const short *ptr0, const short *ptr1) |
|
v_uint32x4 | v_load_halves (const unsigned *ptr0, const unsigned *ptr1) |
|
v_int32x4 | v_load_halves (const int *ptr0, const int *ptr1) |
|
v_float32x4 | v_load_halves (const float *ptr0, const float *ptr1) |
|
v_uint64x2 | v_load_halves (const uint64 *ptr0, const uint64 *ptr1) |
|
v_int64x2 | v_load_halves (const int64 *ptr0, const int64 *ptr1) |
|
v_float64x2 | v_load_halves (const double *ptr0, const double *ptr1) |
|
template<typename _Tp , int n> |
v_reg< _Tp, n > | v_log (const v_reg< _Tp, n > &a) |
|
template<typename _Tp , int n> |
v_reg< _Tp, n > | v_magnitude (const v_reg< _Tp, n > &a, const v_reg< _Tp, n > &b) |
|
v_float32x4 | v_magnitude (const v_float32x4 &a, const v_float32x4 &b) |
|
v_float64x2 | v_magnitude (const v_float64x2 &a, const v_float64x2 &b) |
|
v_float32x4 | v_matmul (const v_float32x4 &v, const v_float32x4 &m0, const v_float32x4 &m1, const v_float32x4 &m2, const v_float32x4 &m3) |
|
template<typename _Tp , int n> |
v_reg< _Tp, n > | v_max (const v_reg< _Tp, n > &a, const v_reg< _Tp, n > &b) |
|
v_uint8x16 | v_max (const v_uint8x16 &a, const v_uint8x16 &b) |
|
v_int8x16 | v_max (const v_int8x16 &a, const v_int8x16 &b) |
|
v_uint16x8 | v_max (const v_uint16x8 &a, const v_uint16x8 &b) |
|
v_int16x8 | v_max (const v_int16x8 &a, const v_int16x8 &b) |
|
v_uint32x4 | v_max (const v_uint32x4 &a, const v_uint32x4 &b) |
|
v_int32x4 | v_max (const v_int32x4 &a, const v_int32x4 &b) |
|
v_float32x4 | v_max (const v_float32x4 &a, const v_float32x4 &b) |
|
v_float64x2 | v_max (const v_float64x2 &a, const v_float64x2 &b) |
|
template<typename _Tp , int n> |
v_reg< _Tp, n > | v_min (const v_reg< _Tp, n > &a, const v_reg< _Tp, n > &b) |
|
v_uint8x16 | v_min (const v_uint8x16 &a, const v_uint8x16 &b) |
|
v_int8x16 | v_min (const v_int8x16 &a, const v_int8x16 &b) |
|
v_uint16x8 | v_min (const v_uint16x8 &a, const v_uint16x8 &b) |
|
v_int16x8 | v_min (const v_int16x8 &a, const v_int16x8 &b) |
|
v_uint32x4 | v_min (const v_uint32x4 &a, const v_uint32x4 &b) |
|
v_int32x4 | v_min (const v_int32x4 &a, const v_int32x4 &b) |
|
v_float32x4 | v_min (const v_float32x4 &a, const v_float32x4 &b) |
|
v_float64x2 | v_min (const v_float64x2 &a, const v_float64x2 &b) |
|
template<typename _Tp , int n> |
void | v_minmax (const v_reg< _Tp, n > &a, const v_reg< _Tp, n > &b, v_reg< _Tp, n > &minval, v_reg< _Tp, n > &maxval) |
|
template<typename _Tp , int n> |
void | v_mul_expand (const v_reg< _Tp, n > &a, const v_reg< _Tp, n > &b, v_reg< typename V_TypeTraits< _Tp >::w_type, n/2 > &c, v_reg< typename V_TypeTraits< _Tp >::w_type, n/2 > &d) |
|
void | v_mul_expand (const v_int16x8 &a, const v_int16x8 &b, v_int32x4 &c, v_int32x4 &d) |
|
void | v_mul_expand (const v_uint16x8 &a, const v_uint16x8 &b, v_uint32x4 &c, v_uint32x4 &d) |
|
void | v_mul_expand (const v_uint32x4 &a, const v_uint32x4 &b, v_uint64x2 &c, v_uint64x2 &d) |
|
template<typename _Tp , int n> |
v_reg< _Tp, n > | v_muladd (const v_reg< _Tp, n > &a, const v_reg< _Tp, n > &b, const v_reg< _Tp, n > &c) |
|
v_float32x4 | v_muladd (const v_float32x4 &a, const v_float32x4 &b, const v_float32x4 &c) |
|
v_float64x2 | v_muladd (const v_float64x2 &a, const v_float64x2 &b, const v_float64x2 &c) |
|
v_uint8x16 | v_pack (const v_uint16x8 &a, const v_uint16x8 &b) |
|
v_int8x16 | v_pack (const v_int16x8 &a, const v_int16x8 &b) |
|
v_uint16x8 | v_pack (const v_uint32x4 &a, const v_uint32x4 &b) |
|
v_int16x8 | v_pack (const v_int32x4 &a, const v_int32x4 &b) |
|
v_uint32x4 | v_pack (const v_uint64x2 &a, const v_uint64x2 &b) |
|
v_int32x4 | v_pack (const v_int64x2 &a, const v_int64x2 &b) |
|
void | v_pack_store (schar *ptr, v_int16x8 &a) |
|
void | v_pack_store (uchar *ptr, const v_uint16x8 &a) |
|
void | v_pack_store (schar *ptr, const v_int16x8 &a) |
|
void | v_pack_store (ushort *ptr, const v_uint32x4 &a) |
|
void | v_pack_store (short *ptr, const v_int32x4 &a) |
|
void | v_pack_store (unsigned *ptr, const v_uint64x2 &a) |
|
void | v_pack_store (int *ptr, const v_int64x2 &a) |
|
v_uint8x16 | v_pack_u (const v_int16x8 &a, const v_int16x8 &b) |
|
v_uint16x8 | v_pack_u (const v_int32x4 &a, const v_int32x4 &b) |
|
void | v_pack_u_store (uchar *ptr, const v_int16x8 &a) |
|
void | v_pack_u_store (ushort *ptr, const v_int32x4 &a) |
|
__m128i | v_packq_epi32 (__m128i a) |
|
template<typename _Tp , int n> |
void | v_recombine (const v_reg< _Tp, n > &a, const v_reg< _Tp, n > &b, v_reg< _Tp, n > &low, v_reg< _Tp, n > &high) |
|
void | v_recombine (const v_uint8x16 &a, const v_uint8x16 &b, v_uint8x16 &c, v_uint8x16 &d) |
|
void | v_recombine (const v_int8x16 &a, const v_int8x16 &b, v_int8x16 &c, v_int8x16 &d) |
|
void | v_recombine (const v_uint16x8 &a, const v_uint16x8 &b, v_uint16x8 &c, v_uint16x8 &d) |
|
void | v_recombine (const v_int16x8 &a, const v_int16x8 &b, v_int16x8 &c, v_int16x8 &d) |
|
void | v_recombine (const v_uint32x4 &a, const v_uint32x4 &b, v_uint32x4 &c, v_uint32x4 &d) |
|
void | v_recombine (const v_int32x4 &a, const v_int32x4 &b, v_int32x4 &c, v_int32x4 &d) |
|
void | v_recombine (const v_float32x4 &a, const v_float32x4 &b, v_float32x4 &c, v_float32x4 &d) |
|
void | v_recombine (const v_float64x2 &a, const v_float64x2 &b, v_float64x2 &c, v_float64x2 &d) |
|
template<typename _Tp , int n> |
_Tp | v_reduce_max (const v_reg< _Tp, n > &a) |
|
unsigned | v_reduce_max (const v_uint32x4 &a) |
|
int | v_reduce_max (const v_int32x4 &a) |
|
float | v_reduce_max (const v_float32x4 &a) |
|
template<typename _Tp , int n> |
_Tp | v_reduce_min (const v_reg< _Tp, n > &a) |
|
unsigned | v_reduce_min (const v_uint32x4 &a) |
|
int | v_reduce_min (const v_int32x4 &a) |
|
float | v_reduce_min (const v_float32x4 &a) |
|
template<typename _Tp , int n> |
V_TypeTraits< _Tp >::sum_type | v_reduce_sum (const v_reg< _Tp, n > &a) |
|
unsigned | v_reduce_sum (const v_uint32x4 &a) |
|
int | v_reduce_sum (const v_int32x4 &a) |
|
float | v_reduce_sum (const v_float32x4 &a) |
|
v_float32x4 | v_reinterpret_as_f32 (const v_uint8x16 &v) |
|
v_float32x4 | v_reinterpret_as_f32 (const v_int8x16 &v) |
|
v_float32x4 | v_reinterpret_as_f32 (const v_uint16x8 &v) |
|
v_float32x4 | v_reinterpret_as_f32 (const v_int16x8 &v) |
|
v_float32x4 | v_reinterpret_as_f32 (const v_uint32x4 &v) |
|
v_float32x4 | v_reinterpret_as_f32 (const v_int32x4 &v) |
|
v_float32x4 | v_reinterpret_as_f32 (const v_uint64x2 &v) |
|
v_float32x4 | v_reinterpret_as_f32 (const v_int64x2 &v) |
|
v_float32x4 | v_reinterpret_as_f32 (const v_float32x4 &v) |
|
template<typename _Tpvec0 > |
v_float32x4 | v_reinterpret_as_f32 (const _Tpvec0 &a) |
|
template<typename _Tp0 , int n0> |
v_float32x4 | v_reinterpret_as_f32 (const v_reg< _Tp0, n0 > &a) |
|
template<typename _Tpvec0 > |
v_float64x2 | v_reinterpret_as_f64 (const _Tpvec0 &a) |
|
v_float64x2 | v_reinterpret_as_f64 (const v_uint64x2 &a) |
|
v_float64x2 | v_reinterpret_as_f64 (const v_int64x2 &a) |
|
template<typename _Tp0 , int n0> |
v_float64x2 | v_reinterpret_as_f64 (const v_reg< _Tp0, n0 > &a) |
|
template<typename _Tp , int n> |
v_reg< typename V_TypeTraits
< _Tp >::int_type, n > | v_reinterpret_as_int (const v_reg< _Tp, n > &a) |
|
v_int16x8 | v_reinterpret_as_s16 (const v_uint8x16 &v) |
|
v_int16x8 | v_reinterpret_as_s16 (const v_int8x16 &v) |
|
v_int16x8 | v_reinterpret_as_s16 (const v_uint16x8 &v) |
|
v_int16x8 | v_reinterpret_as_s16 (const v_int16x8 &v) |
|
v_int16x8 | v_reinterpret_as_s16 (const v_uint32x4 &v) |
|
v_int16x8 | v_reinterpret_as_s16 (const v_int32x4 &v) |
|
v_int16x8 | v_reinterpret_as_s16 (const v_uint64x2 &v) |
|
v_int16x8 | v_reinterpret_as_s16 (const v_int64x2 &v) |
|
v_int16x8 | v_reinterpret_as_s16 (const v_float32x4 &v) |
|
template<typename _Tpvec0 > |
v_int16x8 | v_reinterpret_as_s16 (const _Tpvec0 &a) |
|
v_int16x8 | v_reinterpret_as_s16 (const v_float64x2 &a) |
|
template<typename _Tp0 , int n0> |
v_int16x8 | v_reinterpret_as_s16 (const v_reg< _Tp0, n0 > &a) |
|
v_int32x4 | v_reinterpret_as_s32 (const v_uint8x16 &v) |
|
v_int32x4 | v_reinterpret_as_s32 (const v_int8x16 &v) |
|
v_int32x4 | v_reinterpret_as_s32 (const v_uint16x8 &v) |
|
v_int32x4 | v_reinterpret_as_s32 (const v_int16x8 &v) |
|
v_int32x4 | v_reinterpret_as_s32 (const v_uint32x4 &v) |
|
v_int32x4 | v_reinterpret_as_s32 (const v_int32x4 &v) |
|
v_int32x4 | v_reinterpret_as_s32 (const v_uint64x2 &v) |
|
v_int32x4 | v_reinterpret_as_s32 (const v_int64x2 &v) |
|
v_int32x4 | v_reinterpret_as_s32 (const v_float32x4 &v) |
|
template<typename _Tpvec0 > |
v_int32x4 | v_reinterpret_as_s32 (const _Tpvec0 &a) |
|
v_int32x4 | v_reinterpret_as_s32 (const v_float64x2 &a) |
|
template<typename _Tp0 , int n0> |
v_int32x4 | v_reinterpret_as_s32 (const v_reg< _Tp0, n0 > &a) |
|
v_int64x2 | v_reinterpret_as_s64 (const v_uint8x16 &v) |
|
v_int64x2 | v_reinterpret_as_s64 (const v_int8x16 &v) |
|
v_int64x2 | v_reinterpret_as_s64 (const v_uint16x8 &v) |
|
v_int64x2 | v_reinterpret_as_s64 (const v_int16x8 &v) |
|
v_int64x2 | v_reinterpret_as_s64 (const v_uint32x4 &v) |
|
v_int64x2 | v_reinterpret_as_s64 (const v_int32x4 &v) |
|
v_int64x2 | v_reinterpret_as_s64 (const v_uint64x2 &v) |
|
v_int64x2 | v_reinterpret_as_s64 (const v_int64x2 &v) |
|
v_int64x2 | v_reinterpret_as_s64 (const v_float32x4 &v) |
|
template<typename _Tpvec > |
v_int64x2 | v_reinterpret_as_s64 (const _Tpvec &a) |
|
v_int64x2 | v_reinterpret_as_s64 (const v_float64x2 &a) |
|
template<typename _Tp0 , int n0> |
v_uint64x2 | v_reinterpret_as_s64 (const v_reg< _Tp0, n0 > &a) |
|
v_int8x16 | v_reinterpret_as_s8 (const v_uint8x16 &v) |
|
v_int8x16 | v_reinterpret_as_s8 (const v_int8x16 &v) |
|
v_int8x16 | v_reinterpret_as_s8 (const v_uint16x8 &v) |
|
v_int8x16 | v_reinterpret_as_s8 (const v_int16x8 &v) |
|
v_int8x16 | v_reinterpret_as_s8 (const v_uint32x4 &v) |
|
v_int8x16 | v_reinterpret_as_s8 (const v_int32x4 &v) |
|
v_int8x16 | v_reinterpret_as_s8 (const v_uint64x2 &v) |
|
v_int8x16 | v_reinterpret_as_s8 (const v_int64x2 &v) |
|
v_int8x16 | v_reinterpret_as_s8 (const v_float32x4 &v) |
|
template<typename _Tpvec0 > |
v_int8x16 | v_reinterpret_as_s8 (const _Tpvec0 &a) |
|
v_int8x16 | v_reinterpret_as_s8 (const v_float64x2 &a) |
|
template<typename _Tp0 , int n0> |
v_int8x16 | v_reinterpret_as_s8 (const v_reg< _Tp0, n0 > &a) |
|
v_uint16x8 | v_reinterpret_as_u16 (const v_uint8x16 &v) |
|
v_uint16x8 | v_reinterpret_as_u16 (const v_int8x16 &v) |
|
v_uint16x8 | v_reinterpret_as_u16 (const v_uint16x8 &v) |
|
v_uint16x8 | v_reinterpret_as_u16 (const v_int16x8 &v) |
|
v_uint16x8 | v_reinterpret_as_u16 (const v_uint32x4 &v) |
|
v_uint16x8 | v_reinterpret_as_u16 (const v_int32x4 &v) |
|
v_uint16x8 | v_reinterpret_as_u16 (const v_uint64x2 &v) |
|
v_uint16x8 | v_reinterpret_as_u16 (const v_int64x2 &v) |
|
v_uint16x8 | v_reinterpret_as_u16 (const v_float32x4 &v) |
|
template<typename _Tpvec0 > |
v_uint16x8 | v_reinterpret_as_u16 (const _Tpvec0 &a) |
|
v_uint16x8 | v_reinterpret_as_u16 (const v_float64x2 &a) |
|
template<typename _Tp0 , int n0> |
v_uint16x8 | v_reinterpret_as_u16 (const v_reg< _Tp0, n0 > &a) |
|
v_uint32x4 | v_reinterpret_as_u32 (const v_uint8x16 &v) |
|
v_uint32x4 | v_reinterpret_as_u32 (const v_int8x16 &v) |
|
v_uint32x4 | v_reinterpret_as_u32 (const v_uint16x8 &v) |
|
v_uint32x4 | v_reinterpret_as_u32 (const v_int16x8 &v) |
|
v_uint32x4 | v_reinterpret_as_u32 (const v_uint32x4 &v) |
|
v_uint32x4 | v_reinterpret_as_u32 (const v_int32x4 &v) |
|
v_uint32x4 | v_reinterpret_as_u32 (const v_uint64x2 &v) |
|
v_uint32x4 | v_reinterpret_as_u32 (const v_int64x2 &v) |
|
v_uint32x4 | v_reinterpret_as_u32 (const v_float32x4 &v) |
|
template<typename _Tpvec0 > |
v_uint32x4 | v_reinterpret_as_u32 (const _Tpvec0 &a) |
|
v_uint32x4 | v_reinterpret_as_u32 (const v_float64x2 &a) |
|
template<typename _Tp0 , int n0> |
v_uint32x4 | v_reinterpret_as_u32 (const v_reg< _Tp0, n0 > &a) |
|
v_uint64x2 | v_reinterpret_as_u64 (const v_uint8x16 &v) |
|
v_uint64x2 | v_reinterpret_as_u64 (const v_int8x16 &v) |
|
v_uint64x2 | v_reinterpret_as_u64 (const v_uint16x8 &v) |
|
v_uint64x2 | v_reinterpret_as_u64 (const v_int16x8 &v) |
|
v_uint64x2 | v_reinterpret_as_u64 (const v_uint32x4 &v) |
|
v_uint64x2 | v_reinterpret_as_u64 (const v_int32x4 &v) |
|
v_uint64x2 | v_reinterpret_as_u64 (const v_uint64x2 &v) |
|
v_uint64x2 | v_reinterpret_as_u64 (const v_int64x2 &v) |
|
v_uint64x2 | v_reinterpret_as_u64 (const v_float32x4 &v) |
|
template<typename _Tpvec > |
v_uint64x2 | v_reinterpret_as_u64 (const _Tpvec &a) |
|
v_uint64x2 | v_reinterpret_as_u64 (const v_float64x2 &a) |
|
template<typename _Tp0 , int n0> |
v_uint64x2 | v_reinterpret_as_u64 (const v_reg< _Tp0, n0 > &a) |
|
v_uint8x16 | v_reinterpret_as_u8 (const v_uint8x16 &v) |
|
v_uint8x16 | v_reinterpret_as_u8 (const v_int8x16 &v) |
|
v_uint8x16 | v_reinterpret_as_u8 (const v_uint16x8 &v) |
|
v_uint8x16 | v_reinterpret_as_u8 (const v_int16x8 &v) |
|
v_uint8x16 | v_reinterpret_as_u8 (const v_uint32x4 &v) |
|
v_uint8x16 | v_reinterpret_as_u8 (const v_int32x4 &v) |
|
v_uint8x16 | v_reinterpret_as_u8 (const v_uint64x2 &v) |
|
v_uint8x16 | v_reinterpret_as_u8 (const v_int64x2 &v) |
|
v_uint8x16 | v_reinterpret_as_u8 (const v_float32x4 &v) |
|
template<typename _Tpvec0 > |
v_uint8x16 | v_reinterpret_as_u8 (const _Tpvec0 &a) |
|
v_uint8x16 | v_reinterpret_as_u8 (const v_float64x2 &a) |
|
template<typename _Tp0 , int n0> |
v_uint8x16 | v_reinterpret_as_u8 (const v_reg< _Tp0, n0 > &a) |
|
template<typename _Tp , int n> |
v_reg< typename V_TypeTraits
< _Tp >::uint_type, n > | v_reinterpret_as_uint (const v_reg< _Tp, n > &a) |
|
template<typename _Tp , int n> |
v_reg< int, n > | v_round (const v_reg< _Tp, n > &a) |
|
template<int n> |
v_reg< int, n > | v_round (const v_reg< float, n > &a) |
|
template<int n> |
v_reg< int, n *2 > | v_round (const v_reg< double, n > &a) |
|
v_int32x4 | v_round (const v_float32x4 &a) |
|
v_int32x4 | v_round (const v_float64x2 &a) |
|
template<int n> |
v_uint8x16 | v_rshr (const v_uint8x16 &a) |
|
template<int n> |
v_int8x16 | v_rshr (const v_int8x16 &a) |
|
template<int n> |
v_uint16x8 | v_rshr (const v_uint16x8 &a) |
|
template<int n> |
v_int16x8 | v_rshr (const v_int16x8 &a) |
|
template<int n> |
v_uint32x4 | v_rshr (const v_uint32x4 &a) |
|
template<int n> |
v_int32x4 | v_rshr (const v_int32x4 &a) |
|
template<int n> |
v_uint64x2 | v_rshr (const v_uint64x2 &a) |
|
template<int n> |
v_int64x2 | v_rshr (const v_int64x2 &a) |
|
template<int n> |
v_uint8x16 | v_rshr_pack (const v_uint16x8 &a, const v_uint16x8 &b) |
|
template<int n> |
v_int8x16 | v_rshr_pack (const v_int16x8 &a, const v_int16x8 &b) |
|
template<int n> |
v_uint16x8 | v_rshr_pack (const v_uint32x4 &a, const v_uint32x4 &b) |
|
template<int n> |
v_int16x8 | v_rshr_pack (const v_int32x4 &a, const v_int32x4 &b) |
|
template<int n> |
v_uint32x4 | v_rshr_pack (const v_uint64x2 &a, const v_uint64x2 &b) |
|
template<int n> |
v_int32x4 | v_rshr_pack (const v_int64x2 &a, const v_int64x2 &b) |
|
template<int n> |
void | v_rshr_pack_store (uchar *ptr, const v_uint16x8 &a) |
|
template<int n> |
void | v_rshr_pack_store (schar *ptr, const v_int16x8 &a) |
|
template<int n> |
void | v_rshr_pack_store (ushort *ptr, const v_uint32x4 &a) |
|
template<int n> |
void | v_rshr_pack_store (short *ptr, const v_int32x4 &a) |
|
template<int n> |
void | v_rshr_pack_store (unsigned *ptr, const v_uint64x2 &a) |
|
template<int n> |
void | v_rshr_pack_store (int *ptr, const v_int64x2 &a) |
|
template<int n> |
v_uint8x16 | v_rshr_pack_u (const v_int16x8 &a, const v_int16x8 &b) |
|
template<int n> |
v_uint16x8 | v_rshr_pack_u (const v_int32x4 &a, const v_int32x4 &b) |
|
template<int n> |
void | v_rshr_pack_u_store (uchar *ptr, const v_int16x8 &a) |
|
template<int n> |
void | v_rshr_pack_u_store (ushort *ptr, const v_int32x4 &a) |
|
template<typename _Tp , int n> |
v_reg< _Tp, n > | v_select (const v_reg< _Tp, n > &mask, const v_reg< _Tp, n > &a, const v_reg< _Tp, n > &b) |
|
v_uint8x16 | v_select (const v_uint8x16 &mask, const v_uint8x16 &a, const v_uint8x16 &b) |
|
v_int8x16 | v_select (const v_int8x16 &mask, const v_int8x16 &a, const v_int8x16 &b) |
|
v_uint16x8 | v_select (const v_uint16x8 &mask, const v_uint16x8 &a, const v_uint16x8 &b) |
|
v_int16x8 | v_select (const v_int16x8 &mask, const v_int16x8 &a, const v_int16x8 &b) |
|
v_uint32x4 | v_select (const v_uint32x4 &mask, const v_uint32x4 &a, const v_uint32x4 &b) |
|
v_int32x4 | v_select (const v_int32x4 &mask, const v_int32x4 &a, const v_int32x4 &b) |
|
v_float32x4 | v_select (const v_float32x4 &mask, const v_float32x4 &a, const v_float32x4 &b) |
|
v_uint64x2 | v_select (const v_uint64x2 &mask, const v_uint64x2 &a, const v_uint64x2 &b) |
|
v_int64x2 | v_select (const v_int64x2 &mask, const v_int64x2 &a, const v_int64x2 &b) |
|
v_float64x2 | v_select (const v_float64x2 &mask, const v_float64x2 &a, const v_float64x2 &b) |
|
__m128i | v_select_si128 (__m128i mask, __m128i a, __m128i b) |
|
v_float32x4 | v_setall_f32 (float val) |
|
v_float64x2 | v_setall_f64 (double val) |
|
v_int16x8 | v_setall_s16 (short val) |
|
v_int32x4 | v_setall_s32 (int val) |
|
v_uint64x2 | v_setall_s64 (int64 val) |
|
v_int8x16 | v_setall_s8 (schar val) |
|
v_uint16x8 | v_setall_u16 (ushort val) |
|
v_uint32x4 | v_setall_u32 (unsigned val) |
|
v_uint64x2 | v_setall_u64 (uint64 val) |
|
v_uint8x16 | v_setall_u8 (uchar val) |
|
v_float32x4 | v_setzero_f32 () |
|
v_float64x2 | v_setzero_f64 () |
|
v_int16x8 | v_setzero_s16 () |
|
v_int32x4 | v_setzero_s32 () |
|
v_uint64x2 | v_setzero_s64 () |
|
v_int8x16 | v_setzero_s8 () |
|
v_uint16x8 | v_setzero_u16 () |
|
v_uint32x4 | v_setzero_u32 () |
|
v_uint64x2 | v_setzero_u64 () |
|
v_uint8x16 | v_setzero_u8 () |
|
template<int n> |
v_uint8x16 | v_shl (const v_uint8x16 &a) |
|
template<int n> |
v_int8x16 | v_shl (const v_int8x16 &a) |
|
template<int n> |
v_uint16x8 | v_shl (const v_uint16x8 &a) |
|
template<int n> |
v_int16x8 | v_shl (const v_int16x8 &a) |
|
template<int n> |
v_uint32x4 | v_shl (const v_uint32x4 &a) |
|
template<int n> |
v_int32x4 | v_shl (const v_int32x4 &a) |
|
template<int n> |
v_uint64x2 | v_shl (const v_uint64x2 &a) |
|
template<int n> |
v_int64x2 | v_shl (const v_int64x2 &a) |
|
template<int n> |
v_uint8x16 | v_shr (const v_uint8x16 &a) |
|
template<int n> |
v_int8x16 | v_shr (const v_int8x16 &a) |
|
template<int n> |
v_uint16x8 | v_shr (const v_uint16x8 &a) |
|
template<int n> |
v_int16x8 | v_shr (const v_int16x8 &a) |
|
template<int n> |
v_uint32x4 | v_shr (const v_uint32x4 &a) |
|
template<int n> |
v_int32x4 | v_shr (const v_int32x4 &a) |
|
template<int n> |
v_uint64x2 | v_shr (const v_uint64x2 &a) |
|
template<int n> |
v_int64x2 | v_shr (const v_int64x2 &a) |
|
__m128i | v_sign_epi64 (__m128i a) |
|
template<typename _Tp , int n> |
int | v_signmask (const v_reg< _Tp, n > &a) |
|
int | v_signmask (const v_uint8x16 &a) |
|
int | v_signmask (const v_int8x16 &a) |
|
int | v_signmask (const v_uint16x8 &a) |
|
int | v_signmask (const v_int16x8 &a) |
|
int | v_signmask (const v_uint32x4 &a) |
|
int | v_signmask (const v_int32x4 &a) |
|
int | v_signmask (const v_float32x4 &a) |
|
int | v_signmask (const v_float64x2 &a) |
|
template<typename _Tp , int n> |
v_reg< _Tp, n > | v_sin (const v_reg< _Tp, n > &a) |
|
template<typename _Tp , int n> |
v_reg< _Tp, n > | v_sqr_magnitude (const v_reg< _Tp, n > &a, const v_reg< _Tp, n > &b) |
|
v_float32x4 | v_sqr_magnitude (const v_float32x4 &a, const v_float32x4 &b) |
|
v_float64x2 | v_sqr_magnitude (const v_float64x2 &a, const v_float64x2 &b) |
|
template<typename _Tp , int n> |
v_reg< _Tp, n > | v_sqrt (const v_reg< _Tp, n > &a) |
|
v_float32x4 | v_sqrt (const v_float32x4 &x) |
|
v_float64x2 | v_sqrt (const v_float64x2 &x) |
|
__m128i | v_srai_epi64 (__m128i a, int imm) |
|
template<typename _Tp , int n> |
void | v_store (_Tp *ptr, const v_reg< _Tp, n > &a) |
|
void | v_store (uchar *ptr, const v_uint8x16 &a) |
|
void | v_store (schar *ptr, const v_int8x16 &a) |
|
void | v_store (ushort *ptr, const v_uint16x8 &a) |
|
void | v_store (short *ptr, const v_int16x8 &a) |
|
void | v_store (unsigned *ptr, const v_uint32x4 &a) |
|
void | v_store (int *ptr, const v_int32x4 &a) |
|
void | v_store (float *ptr, const v_float32x4 &a) |
|
void | v_store (uint64 *ptr, const v_uint64x2 &a) |
|
void | v_store (int64 *ptr, const v_int64x2 &a) |
|
void | v_store (double *ptr, const v_float64x2 &a) |
|
template<typename _Tp , int n> |
void | v_store_aligned (_Tp *ptr, const v_reg< _Tp, n > &a) |
|
void | v_store_aligned (uchar *ptr, const v_uint8x16 &a) |
|
void | v_store_aligned (schar *ptr, const v_int8x16 &a) |
|
void | v_store_aligned (ushort *ptr, const v_uint16x8 &a) |
|
void | v_store_aligned (short *ptr, const v_int16x8 &a) |
|
void | v_store_aligned (unsigned *ptr, const v_uint32x4 &a) |
|
void | v_store_aligned (int *ptr, const v_int32x4 &a) |
|
void | v_store_aligned (float *ptr, const v_float32x4 &a) |
|
void | v_store_aligned (uint64 *ptr, const v_uint64x2 &a) |
|
void | v_store_aligned (int64 *ptr, const v_int64x2 &a) |
|
void | v_store_aligned (double *ptr, const v_float64x2 &a) |
|
template<typename _Tp , int n> |
void | v_store_high (_Tp *ptr, const v_reg< _Tp, n > &a) |
|
void | v_store_high (uchar *ptr, const v_uint8x16 &a) |
|
void | v_store_high (schar *ptr, const v_int8x16 &a) |
|
void | v_store_high (ushort *ptr, const v_uint16x8 &a) |
|
void | v_store_high (short *ptr, const v_int16x8 &a) |
|
void | v_store_high (unsigned *ptr, const v_uint32x4 &a) |
|
void | v_store_high (int *ptr, const v_int32x4 &a) |
|
void | v_store_high (float *ptr, const v_float32x4 &a) |
|
void | v_store_high (uint64 *ptr, const v_uint64x2 &a) |
|
void | v_store_high (int64 *ptr, const v_int64x2 &a) |
|
void | v_store_high (double *ptr, const v_float64x2 &a) |
|
template<typename _Tp , int n> |
void | v_store_interleave (_Tp *ptr, const v_reg< _Tp, n > &a, const v_reg< _Tp, n > &b, const v_reg< _Tp, n > &c) |
|
template<typename _Tp , int n> |
void | v_store_interleave (_Tp *ptr, const v_reg< _Tp, n > &a, const v_reg< _Tp, n > &b, const v_reg< _Tp, n > &c, const v_reg< _Tp, n > &d) |
|
void | v_store_interleave (uchar *ptr, const v_uint8x16 &a, const v_uint8x16 &b, const v_uint8x16 &c) |
|
void | v_store_interleave (uchar *ptr, const v_uint8x16 &a, const v_uint8x16 &b, const v_uint8x16 &c, const v_uint8x16 &d) |
|
void | v_store_interleave (schar *ptr, const v_int8x16 &a, const v_int8x16 &b, const v_int8x16 &c) |
|
void | v_store_interleave (schar *ptr, const v_int8x16 &a, const v_int8x16 &b, const v_int8x16 &c, const v_int8x16 &d) |
|
void | v_store_interleave (ushort *ptr, const v_uint16x8 &a, const v_uint16x8 &b, const v_uint16x8 &c, const v_uint16x8 &d) |
|
void | v_store_interleave (ushort *ptr, const v_uint16x8 &a, const v_uint16x8 &b, const v_uint16x8 &c) |
|
void | v_store_interleave (short *ptr, const v_int16x8 &a, const v_int16x8 &b, const v_int16x8 &c) |
|
void | v_store_interleave (short *ptr, const v_int16x8 &a, const v_int16x8 &b, const v_int16x8 &c, const v_int16x8 &d) |
|
void | v_store_interleave (unsigned *ptr, const v_uint32x4 &a, const v_uint32x4 &b, const v_uint32x4 &c) |
|
void | v_store_interleave (unsigned *ptr, const v_uint32x4 &a, const v_uint32x4 &b, const v_uint32x4 &c, const v_uint32x4 &d) |
|
void | v_store_interleave (int *ptr, const v_int32x4 &a, const v_int32x4 &b, const v_int32x4 &c) |
|
void | v_store_interleave (int *ptr, const v_int32x4 &a, const v_int32x4 &b, const v_int32x4 &c, const v_int32x4 &d) |
|
void | v_store_interleave (float *ptr, const v_float32x4 &a, const v_float32x4 &b, const v_float32x4 &c, const v_float32x4 &d) |
|
void | v_store_interleave (float *ptr, const v_float32x4 &a, const v_float32x4 &b, const v_float32x4 &c) |
|
template<typename _Tp , int n> |
void | v_store_low (_Tp *ptr, const v_reg< _Tp, n > &a) |
|
void | v_store_low (uchar *ptr, const v_uint8x16 &a) |
|
void | v_store_low (schar *ptr, const v_int8x16 &a) |
|
void | v_store_low (ushort *ptr, const v_uint16x8 &a) |
|
void | v_store_low (short *ptr, const v_int16x8 &a) |
|
void | v_store_low (unsigned *ptr, const v_uint32x4 &a) |
|
void | v_store_low (int *ptr, const v_int32x4 &a) |
|
void | v_store_low (float *ptr, const v_float32x4 &a) |
|
void | v_store_low (uint64 *ptr, const v_uint64x2 &a) |
|
void | v_store_low (int64 *ptr, const v_int64x2 &a) |
|
void | v_store_low (double *ptr, const v_float64x2 &a) |
|
template<typename _Tp , int n> |
v_reg< _Tp, n > | v_sub_wrap (const v_reg< _Tp, n > &a, const v_reg< _Tp, n > &b) |
|
v_uint8x16 | v_sub_wrap (const v_uint8x16 &a, const v_uint8x16 &b) |
|
v_int8x16 | v_sub_wrap (const v_int8x16 &a, const v_int8x16 &b) |
|
v_uint16x8 | v_sub_wrap (const v_uint16x8 &a, const v_uint16x8 &b) |
|
v_int16x8 | v_sub_wrap (const v_int16x8 &a, const v_int16x8 &b) |
|
template<typename _Tp > |
void | v_transpose4x4 (v_reg< _Tp, 4 > &a0, const v_reg< _Tp, 4 > &a1, const v_reg< _Tp, 4 > &a2, const v_reg< _Tp, 4 > &a3, v_reg< _Tp, 4 > &b0, v_reg< _Tp, 4 > &b1, v_reg< _Tp, 4 > &b2, v_reg< _Tp, 4 > &b3) |
|
void | v_transpose4x4 (const v_uint32x4 &a0, const v_uint32x4 &a1, const v_uint32x4 &a2, const v_uint32x4 &a3, v_uint32x4 &b0, v_uint32x4 &b1, v_uint32x4 &b2, v_uint32x4 &b3) |
|
void | v_transpose4x4 (const v_int32x4 &a0, const v_int32x4 &a1, const v_int32x4 &a2, const v_int32x4 &a3, v_int32x4 &b0, v_int32x4 &b1, v_int32x4 &b2, v_int32x4 &b3) |
|
void | v_transpose4x4 (const v_float32x4 &a0, const v_float32x4 &a1, const v_float32x4 &a2, const v_float32x4 &a3, v_float32x4 &b0, v_float32x4 &b1, v_float32x4 &b2, v_float32x4 &b3) |
|
template<typename _Tp , int n> |
v_reg< int, n > | v_trunc (const v_reg< _Tp, n > &a) |
|
template<int n> |
v_reg< int, n > | v_trunc (const v_reg< float, n > &a) |
|
template<int n> |
v_reg< int, n *2 > | v_trunc (const v_reg< double, n > &a) |
|
v_int32x4 | v_trunc (const v_float32x4 &a) |
|
v_int32x4 | v_trunc (const v_float64x2 &a) |
|
template<typename _Tp , int n> |
void | v_zip (const v_reg< _Tp, n > &a0, const v_reg< _Tp, n > &a1, v_reg< _Tp, n > &b0, v_reg< _Tp, n > &b1) |
|
void | v_zip (const v_uint8x16 &a0, const v_uint8x16 &a1, v_uint8x16 &b0, v_uint8x16 &b1) |
|
void | v_zip (const v_int8x16 &a0, const v_int8x16 &a1, v_int8x16 &b0, v_int8x16 &b1) |
|
void | v_zip (const v_uint16x8 &a0, const v_uint16x8 &a1, v_uint16x8 &b0, v_uint16x8 &b1) |
|
void | v_zip (const v_int16x8 &a0, const v_int16x8 &a1, v_int16x8 &b0, v_int16x8 &b1) |
|
void | v_zip (const v_uint32x4 &a0, const v_uint32x4 &a1, v_uint32x4 &b0, v_uint32x4 &b1) |
|
void | v_zip (const v_int32x4 &a0, const v_int32x4 &a1, v_int32x4 &b0, v_int32x4 &b1) |
|
void | v_zip (const v_float32x4 &a0, const v_float32x4 &a1, v_float32x4 &b0, v_float32x4 &b1) |
|
void | v_zip (const v_float64x2 &a0, const v_float64x2 &a1, v_float64x2 &b0, v_float64x2 &b1) |
|
void | validateDisparity (InputOutputArray disparity, InputArray cost, int minDisparity, int numberOfDisparities, int disp12MaxDisp=1) |
| validates disparity using the left-right check. The matrix "cost" should be computed by the stereo correspondence algorithm More...
|
|
void | vconcat (const Mat *src, size_t nsrc, OutputArray dst) |
| Applies vertical concatenation to given matrices. More...
|
|
void | vconcat (InputArray src1, InputArray src2, OutputArray dst) |
|
void | vconcat (InputArrayOfArrays src, OutputArray dst) |
|
float32x4_t | vreinterpretq_f32_f32 (float32x4_t v) |
|
int16x8_t | vreinterpretq_s16_s16 (int16x8_t v) |
|
int32x4_t | vreinterpretq_s32_s32 (int32x4_t v) |
|
int64x2_t | vreinterpretq_s64_s64 (int64x2_t v) |
|
int8x16_t | vreinterpretq_s8_s8 (int8x16_t v) |
|
uint16x8_t | vreinterpretq_u16_u16 (uint16x8_t v) |
|
uint32x4_t | vreinterpretq_u32_u32 (uint32x4_t v) |
|
uint64x2_t | vreinterpretq_u64_u64 (uint64x2_t v) |
|
uint8x16_t | vreinterpretq_u8_u8 (uint8x16_t v) |
|
int | waitKey (int delay=0) |
| Waits for a pressed key. More...
|
|
void | warpAffine (InputArray src, OutputArray dst, InputArray M, Size dsize, int flags=INTER_LINEAR, int borderMode=BORDER_CONSTANT, const Scalar &borderValue=Scalar()) |
| Applies an affine transformation to an image. More...
|
|
void | warpPerspective (InputArray src, OutputArray dst, InputArray M, Size dsize, int flags=INTER_LINEAR, int borderMode=BORDER_CONSTANT, const Scalar &borderValue=Scalar()) |
| Applies a perspective transformation to an image. More...
|
|
void | watershed (InputArray image, InputOutputArray markers) |
| Performs a marker-based image segmentation using the watershed algorithm. More...
|
|
void | winrt_imshow () |
|
void | winrt_onVisibilityChanged (bool visible) |
|
void | winrt_setFrameContainer (::Windows::UI::Xaml::Controls::Image^image) |
|
template<typename... Args> |
void | winrt_startMessageLoop (std::function< void(Args...)> &&callback, Args...args) |
|
template<typename... Args> |
void | winrt_startMessageLoop (void callback(Args...), Args...args) |
|
template void | winrt_startMessageLoop (void callback(void)) |
|