| /OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-aarch64/include/opencv2/videostab/ |
| H A D | inpainting.hpp | 76 virtual void inpaint(int idx, Mat &frame, Mat &mask) = 0; 81 virtual void setFrames(const std::vector<Mat> &val) { frames_ = &val; } in setFrames() 82 virtual const std::vector<Mat>& frames() const { return *frames_; } in frames() 84 virtual void setMotions(const std::vector<Mat> &val) { motions_ = &val; } in setMotions() 85 virtual const std::vector<Mat>& motions() const { return *motions_; } in motions() 87 virtual void setStabilizedFrames(const std::vector<Mat> &val) { stabilizedFrames_ = &val; } in setStabilizedFrames() 88 virtual const std::vector<Mat>& stabilizedFrames() const { return *stabilizedFrames_; } in stabilizedFrames() 90 …virtual void setStabilizationMotions(const std::vector<Mat> &val) { stabilizationMotions_ = &val; } in setStabilizationMotions() 91 virtual const std::vector<Mat>& stabilizationMotions() const { return *stabilizationMotions_; } in stabilizationMotions() 96 const std::vector<Mat> *frames_; [all …]
|
| H A D | stabilizer.hpp | 102 Mat nextStabilizedFrame(); 104 virtual void setUp(const Mat &firstFrame); 105 virtual Mat estimateMotion() = 0; 106 virtual Mat estimateStabilizationMotion() = 0; 108 virtual Mat postProcessFrame(const Mat &frame); 122 Mat frameMask_; 126 Mat preProcessedFrame_; 128 Mat inpaintingMask_; 129 Mat finalFrame_; 130 std::vector<Mat> frames_; [all …]
|
| H A D | wobble_suppression.hpp | 70 virtual void suppress(int idx, const Mat &frame, Mat &result) = 0; 78 virtual void setMotions(const std::vector<Mat> &val) { motions_ = &val; } in setMotions() 79 virtual const std::vector<Mat>& motions() const { return *motions_; } in motions() 81 virtual void setMotions2(const std::vector<Mat> &val) { motions2_ = &val; } in setMotions2() 82 virtual const std::vector<Mat>& motions2() const { return *motions2_; } in motions2() 84 …virtual void setStabilizationMotions(const std::vector<Mat> &val) { stabilizationMotions_ = &val; } in setStabilizationMotions() 85 virtual const std::vector<Mat>& stabilizationMotions() const { return *stabilizationMotions_; } in stabilizationMotions() 90 const std::vector<Mat> *motions_; 91 const std::vector<Mat> *motions2_; 92 const std::vector<Mat> *stabilizationMotions_; [all …]
|
| H A D | global_motion.hpp | 77 CV_EXPORTS Mat estimateGlobalMotionLeastSquares( 90 CV_EXPORTS Mat estimateGlobalMotionRansac( 120 virtual Mat estimate(InputArray points0, InputArray points1, bool *ok = 0) = 0; 142 virtual Mat estimate(InputArray points0, InputArray points1, bool *ok = 0) CV_OVERRIDE; 158 virtual Mat estimate(InputArray points0, InputArray points1, bool *ok = 0) CV_OVERRIDE; 183 virtual Mat estimate(const Mat &frame0, const Mat &frame1, bool *ok = 0) = 0; 197 virtual Mat estimate(const Mat &frame0, const Mat &frame1, bool *ok = 0) CV_OVERRIDE; 211 virtual Mat estimate(const Mat &frame0, const Mat &frame1, bool *ok = 0) CV_OVERRIDE; 238 virtual Mat estimate(const Mat &frame0, const Mat &frame1, bool *ok = 0) CV_OVERRIDE; 239 Mat estimate(InputArray frame0, InputArray frame1, bool *ok = 0); [all …]
|
| H A D | motion_stabilizing.hpp | 66 int size, const std::vector<Mat> &motions, std::pair<int,int> range, 67 Mat *stabilizationMotions) = 0; 77 int size, const std::vector<Mat> &motions, std::pair<int,int> range, 78 Mat *stabilizationMotions) CV_OVERRIDE; 89 virtual Mat stabilize( 90 int idx, const std::vector<Mat> &motions, std::pair<int,int> range) = 0; 93 int size, const std::vector<Mat> &motions, std::pair<int,int> range, 94 Mat *stabilizationMotions) CV_OVERRIDE; 106 virtual Mat stabilize( 107 int idx, const std::vector<Mat> &motions, std::pair<int,int> range) CV_OVERRIDE; [all …]
|
| H A D | deblurring.hpp | 57 CV_EXPORTS float calcBlurriness(const Mat &frame); 69 virtual void deblur(int idx, Mat &frame) = 0; 74 virtual void setFrames(const std::vector<Mat> &val) { frames_ = &val; } in setFrames() 75 virtual const std::vector<Mat>& frames() const { return *frames_; } in frames() 77 virtual void setMotions(const std::vector<Mat> &val) { motions_ = &val; } in setMotions() 78 virtual const std::vector<Mat>& motions() const { return *motions_; } in motions() 85 const std::vector<Mat> *frames_; 86 const std::vector<Mat> *motions_; 93 virtual void deblur(int /*idx*/, Mat &/*frame*/) CV_OVERRIDE {} in deblur() argument 104 virtual void deblur(int idx, Mat &frame) CV_OVERRIDE;
|
| /OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/ |
| H A D | mat.hpp | 187 _InputArray(const Mat& m); 189 _InputArray(const std::vector<Mat>& vec); 209 template<std::size_t _Nm> _InputArray(const std::array<Mat, _Nm>& arr); 217 Mat getMat(int idx=-1) const; 218 Mat getMat_(int idx=-1) const; 220 void getMatVector(std::vector<Mat>& mv) const; 312 _OutputArray(Mat& m); 313 _OutputArray(std::vector<Mat>& vec); 330 _OutputArray(const Mat& m); 331 _OutputArray(const std::vector<Mat>& vec); [all …]
|
| H A D | mat.inl.hpp | 88 inline _InputArray::_InputArray(const Mat& m) { init(MAT+ACCESS_READ, &m); } in _InputArray() 89 inline _InputArray::_InputArray(const std::vector<Mat>& vec) { init(STD_VECTOR_MAT+ACCESS_READ, &ve… in _InputArray() 103 _InputArray::_InputArray(const std::array<Mat, _Nm>& arr) in _InputArray() argument 176 inline Mat _InputArray::getMat(int i) const in getMat() 179 return *(const Mat*)obj; in getMat() 198 inline _OutputArray::_OutputArray(Mat& m) { init(MAT+ACCESS_WRITE, &m); } in _OutputArray() 199 inline _OutputArray::_OutputArray(std::vector<Mat>& vec) { init(STD_VECTOR_MAT+ACCESS_WRITE, &vec);… in _OutputArray() 213 _OutputArray::_OutputArray(std::array<Mat, _Nm>& arr) in _OutputArray() argument 255 _OutputArray::_OutputArray(const std::array<Mat, _Nm>& arr) in _OutputArray() argument 291 inline _OutputArray::_OutputArray(const Mat& m) in _OutputArray() [all …]
|
| H A D | eigen.hpp | 67 Mat _src(src.cols(), src.rows(), traits::Type<_Tp>::value, in eigen2cv() 73 Mat _src(src.rows(), src.cols(), traits::Type<_Tp>::value, in eigen2cv() 95 void cv2eigen( const Mat& src, in cv2eigen() 101 const Mat _dst(src.cols, src.rows, traits::Type<_Tp>::value, in cv2eigen() 111 Mat(src.t()).convertTo(_dst, _dst.type()); in cv2eigen() 115 const Mat _dst(src.rows, src.cols, traits::Type<_Tp>::value, in cv2eigen() 128 const Mat _dst(_cols, _rows, traits::Type<_Tp>::value, in cv2eigen() 134 const Mat _dst(_rows, _cols, traits::Type<_Tp>::value, in cv2eigen() 136 Mat(src).copyTo(_dst); in cv2eigen() 141 void cv2eigen( const Mat& src, in cv2eigen() [all …]
|
| H A D | operations.hpp | 255 CV_MAT_AUG_OPERATOR (+=, cv::add(a,b,a), Mat, Mat) in add() 256 CV_MAT_AUG_OPERATOR (+=, cv::add(a,b,a), Mat, Scalar) in add() 257 CV_MAT_AUG_OPERATOR_T(+=, cv::add(a,b,a), Mat_<_Tp>, Mat) in add() 261 CV_MAT_AUG_OPERATOR (-=, cv::subtract(a,b,a), Mat, Mat) in add() 262 CV_MAT_AUG_OPERATOR (-=, cv::subtract(a,b,a), Mat, Scalar) in add() 263 CV_MAT_AUG_OPERATOR_T(-=, cv::subtract(a,b,a), Mat_<_Tp>, Mat) in add() 267 CV_MAT_AUG_OPERATOR (*=, cv::gemm(a, b, 1, Mat(), 0, a, 0), Mat, Mat) in add() 268 CV_MAT_AUG_OPERATOR_T(*=, cv::gemm(a, b, 1, Mat(), 0, a, 0), Mat_<_Tp>, Mat) in add() 269 CV_MAT_AUG_OPERATOR_T(*=, cv::gemm(a, b, 1, Mat(), 0, a, 0), Mat_<_Tp>, Mat_<_Tp>) in add() 270 CV_MAT_AUG_OPERATOR (*=, a.convertTo(a, -1, b), Mat, double) in add() [all …]
|
| /OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-armhf/include/opencv2/core/ |
| H A D | mat.hpp | 187 _InputArray(const Mat& m); 189 _InputArray(const std::vector<Mat>& vec); 209 template<std::size_t _Nm> _InputArray(const std::array<Mat, _Nm>& arr); 217 Mat getMat(int idx=-1) const; 218 Mat getMat_(int idx=-1) const; 220 void getMatVector(std::vector<Mat>& mv) const; 312 _OutputArray(Mat& m); 313 _OutputArray(std::vector<Mat>& vec); 330 _OutputArray(const Mat& m); 331 _OutputArray(const std::vector<Mat>& vec); [all …]
|
| H A D | mat.inl.hpp | 88 inline _InputArray::_InputArray(const Mat& m) { init(MAT+ACCESS_READ, &m); } in _InputArray() 89 inline _InputArray::_InputArray(const std::vector<Mat>& vec) { init(STD_VECTOR_MAT+ACCESS_READ, &ve… in _InputArray() 103 _InputArray::_InputArray(const std::array<Mat, _Nm>& arr) in _InputArray() argument 176 inline Mat _InputArray::getMat(int i) const in getMat() 179 return *(const Mat*)obj; in getMat() 198 inline _OutputArray::_OutputArray(Mat& m) { init(MAT+ACCESS_WRITE, &m); } in _OutputArray() 199 inline _OutputArray::_OutputArray(std::vector<Mat>& vec) { init(STD_VECTOR_MAT+ACCESS_WRITE, &vec);… in _OutputArray() 213 _OutputArray::_OutputArray(std::array<Mat, _Nm>& arr) in _OutputArray() argument 255 _OutputArray::_OutputArray(const std::array<Mat, _Nm>& arr) in _OutputArray() argument 291 inline _OutputArray::_OutputArray(const Mat& m) in _OutputArray() [all …]
|
| H A D | eigen.hpp | 67 Mat _src(src.cols(), src.rows(), traits::Type<_Tp>::value, in eigen2cv() 73 Mat _src(src.rows(), src.cols(), traits::Type<_Tp>::value, in eigen2cv() 95 void cv2eigen( const Mat& src, in cv2eigen() 101 const Mat _dst(src.cols, src.rows, traits::Type<_Tp>::value, in cv2eigen() 111 Mat(src.t()).convertTo(_dst, _dst.type()); in cv2eigen() 115 const Mat _dst(src.rows, src.cols, traits::Type<_Tp>::value, in cv2eigen() 128 const Mat _dst(_cols, _rows, traits::Type<_Tp>::value, in cv2eigen() 134 const Mat _dst(_rows, _cols, traits::Type<_Tp>::value, in cv2eigen() 136 Mat(src).copyTo(_dst); in cv2eigen() 141 void cv2eigen( const Mat& src, in cv2eigen() [all …]
|
| H A D | operations.hpp | 255 CV_MAT_AUG_OPERATOR (+=, cv::add(a,b,a), Mat, Mat) in add() 256 CV_MAT_AUG_OPERATOR (+=, cv::add(a,b,a), Mat, Scalar) in add() 257 CV_MAT_AUG_OPERATOR_T(+=, cv::add(a,b,a), Mat_<_Tp>, Mat) in add() 261 CV_MAT_AUG_OPERATOR (-=, cv::subtract(a,b,a), Mat, Mat) in add() 262 CV_MAT_AUG_OPERATOR (-=, cv::subtract(a,b,a), Mat, Scalar) in add() 263 CV_MAT_AUG_OPERATOR_T(-=, cv::subtract(a,b,a), Mat_<_Tp>, Mat) in add() 267 CV_MAT_AUG_OPERATOR (*=, cv::gemm(a, b, 1, Mat(), 0, a, 0), Mat, Mat) in add() 268 CV_MAT_AUG_OPERATOR_T(*=, cv::gemm(a, b, 1, Mat(), 0, a, 0), Mat_<_Tp>, Mat) in add() 269 CV_MAT_AUG_OPERATOR_T(*=, cv::gemm(a, b, 1, Mat(), 0, a, 0), Mat_<_Tp>, Mat_<_Tp>) in add() 270 CV_MAT_AUG_OPERATOR (*=, a.convertTo(a, -1, b), Mat, double) in add() [all …]
|
| /OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-aarch64/include/opencv2/core/ |
| H A D | mat.hpp | 187 _InputArray(const Mat& m); 189 _InputArray(const std::vector<Mat>& vec); 209 template<std::size_t _Nm> _InputArray(const std::array<Mat, _Nm>& arr); 217 Mat getMat(int idx=-1) const; 218 Mat getMat_(int idx=-1) const; 220 void getMatVector(std::vector<Mat>& mv) const; 312 _OutputArray(Mat& m); 313 _OutputArray(std::vector<Mat>& vec); 330 _OutputArray(const Mat& m); 331 _OutputArray(const std::vector<Mat>& vec); [all …]
|
| H A D | mat.inl.hpp | 88 inline _InputArray::_InputArray(const Mat& m) { init(MAT+ACCESS_READ, &m); } in _InputArray() 89 inline _InputArray::_InputArray(const std::vector<Mat>& vec) { init(STD_VECTOR_MAT+ACCESS_READ, &ve… in _InputArray() 103 _InputArray::_InputArray(const std::array<Mat, _Nm>& arr) in _InputArray() argument 176 inline Mat _InputArray::getMat(int i) const in getMat() 179 return *(const Mat*)obj; in getMat() 198 inline _OutputArray::_OutputArray(Mat& m) { init(MAT+ACCESS_WRITE, &m); } in _OutputArray() 199 inline _OutputArray::_OutputArray(std::vector<Mat>& vec) { init(STD_VECTOR_MAT+ACCESS_WRITE, &vec);… in _OutputArray() 213 _OutputArray::_OutputArray(std::array<Mat, _Nm>& arr) in _OutputArray() argument 255 _OutputArray::_OutputArray(const std::array<Mat, _Nm>& arr) in _OutputArray() argument 291 inline _OutputArray::_OutputArray(const Mat& m) in _OutputArray() [all …]
|
| H A D | eigen.hpp | 67 Mat _src(src.cols(), src.rows(), traits::Type<_Tp>::value, in eigen2cv() 73 Mat _src(src.rows(), src.cols(), traits::Type<_Tp>::value, in eigen2cv() 95 void cv2eigen( const Mat& src, in cv2eigen() 101 const Mat _dst(src.cols, src.rows, traits::Type<_Tp>::value, in cv2eigen() 111 Mat(src.t()).convertTo(_dst, _dst.type()); in cv2eigen() 115 const Mat _dst(src.rows, src.cols, traits::Type<_Tp>::value, in cv2eigen() 128 const Mat _dst(_cols, _rows, traits::Type<_Tp>::value, in cv2eigen() 134 const Mat _dst(_rows, _cols, traits::Type<_Tp>::value, in cv2eigen() 136 Mat(src).copyTo(_dst); in cv2eigen() 141 void cv2eigen( const Mat& src, in cv2eigen() [all …]
|
| H A D | operations.hpp | 255 CV_MAT_AUG_OPERATOR (+=, cv::add(a,b,a), Mat, Mat) in add() 256 CV_MAT_AUG_OPERATOR (+=, cv::add(a,b,a), Mat, Scalar) in add() 257 CV_MAT_AUG_OPERATOR_T(+=, cv::add(a,b,a), Mat_<_Tp>, Mat) in add() 261 CV_MAT_AUG_OPERATOR (-=, cv::subtract(a,b,a), Mat, Mat) in add() 262 CV_MAT_AUG_OPERATOR (-=, cv::subtract(a,b,a), Mat, Scalar) in add() 263 CV_MAT_AUG_OPERATOR_T(-=, cv::subtract(a,b,a), Mat_<_Tp>, Mat) in add() 267 CV_MAT_AUG_OPERATOR (*=, cv::gemm(a, b, 1, Mat(), 0, a, 0), Mat, Mat) in add() 268 CV_MAT_AUG_OPERATOR_T(*=, cv::gemm(a, b, 1, Mat(), 0, a, 0), Mat_<_Tp>, Mat) in add() 269 CV_MAT_AUG_OPERATOR_T(*=, cv::gemm(a, b, 1, Mat(), 0, a, 0), Mat_<_Tp>, Mat_<_Tp>) in add() 270 CV_MAT_AUG_OPERATOR (*=, a.convertTo(a, -1, b), Mat, double) in add() [all …]
|
| /OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-aarch64/include/opencv2/stitching/detail/ |
| H A D | seam_finders.hpp | 142 ImagePairLess(const std::vector<Mat> &images, const std::vector<Point> &corners) in ImagePairLess() 159 const Mat *src_; 179 const Mat &image1, const Mat &image2, Point tl1, Point tl2, Mat &mask1, Mat &mask2); 186 const Mat &image1, const Mat &image2, Point tl1, Point tl2, Mat &mask1, Mat &mask2); 188 void computeGradients(const Mat &image1, const Mat &image2); 197 const Mat &image1, const Mat &image2, Point tl1, Point tl2, 201 const Mat &image1, const Mat &image2, Point tl1, Point tl2, int comp, 268 …void setGraphWeightsColor(const cv::Mat &img1, const cv::Mat &img2, const cv::Mat &mask1, const cv… 269 … cv::Mat &terminals, cv::Mat &leftT, cv::Mat &rightT, cv::Mat &top, cv::Mat &bottom); 270 …void setGraphWeightsColorGrad(const cv::Mat &img1, const cv::Mat &img2, const cv::Mat &dx1, const … [all …]
|
| H A D | motion_estimators.hpp | 132 const Mat refinementMask() const { return refinement_mask_.clone(); } in refinementMask() 133 void setRefinementMask(const Mat &mask) in setRefinementMask() 157 setRefinementMask(Mat::ones(3, 3, CV_8U)); in BundleAdjusterBase() 181 virtual void calcError(Mat &err) = 0; 187 virtual void calcJacobian(Mat &jac) = 0; 190 Mat refinement_mask_; 208 Mat cam_params_; 230 void calcError(Mat &) CV_OVERRIDE {} in calcError() argument 231 void calcJacobian(Mat &) CV_OVERRIDE {} in calcJacobian() argument 249 void calcError(Mat &err) CV_OVERRIDE; [all …]
|
| /OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-aarch64/include/opencv2/video/ |
| H A D | tracking.hpp | 255 CV_EXPORTS_W Mat estimateRigidTransform( InputArray src, InputArray dst, bool fullAffine); 256 CV_EXPORTS_W Mat estimateRigidTransform( InputArray src, InputArray dst, bool fullAffine, int ransa… 364 CV_WRAP const Mat& predict( const Mat& control = Mat() ); 370 CV_WRAP const Mat& correct( const Mat& measurement ); 372 CV_PROP_RW Mat statePre; //!< predicted state (x'(k)): x(k)=A*x(k-1)+B*u(k) 373 CV_PROP_RW Mat statePost; //!< corrected state (x(k)): x(k)=x'(k)+K(k)*(z(k)-H*x'(k)) 374 CV_PROP_RW Mat transitionMatrix; //!< state transition matrix (A) 375 CV_PROP_RW Mat controlMatrix; //!< control matrix (B) (not used if there is no control) 376 CV_PROP_RW Mat measurementMatrix; //!< measurement matrix (H) 377 CV_PROP_RW Mat processNoiseCov; //!< process noise covariance matrix (Q) [all …]
|
| /OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-armhf/include/opencv2/video/ |
| H A D | tracking.hpp | 255 CV_EXPORTS_W Mat estimateRigidTransform( InputArray src, InputArray dst, bool fullAffine); 256 CV_EXPORTS_W Mat estimateRigidTransform( InputArray src, InputArray dst, bool fullAffine, int ransa… 364 CV_WRAP const Mat& predict( const Mat& control = Mat() ); 370 CV_WRAP const Mat& correct( const Mat& measurement ); 372 CV_PROP_RW Mat statePre; //!< predicted state (x'(k)): x(k)=A*x(k-1)+B*u(k) 373 CV_PROP_RW Mat statePost; //!< corrected state (x(k)): x(k)=x'(k)+K(k)*(z(k)-H*x'(k)) 374 CV_PROP_RW Mat transitionMatrix; //!< state transition matrix (A) 375 CV_PROP_RW Mat controlMatrix; //!< control matrix (B) (not used if there is no control) 376 CV_PROP_RW Mat measurementMatrix; //!< measurement matrix (H) 377 CV_PROP_RW Mat processNoiseCov; //!< process noise covariance matrix (Q) [all …]
|
| /OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-aarch64/include/opencv2/ |
| H A D | ml.hpp | 159 CV_WRAP virtual Mat getSamples() const = 0; 160 CV_WRAP virtual Mat getMissing() const = 0; 174 CV_WRAP virtual Mat getTrainSamples(int layout=ROW_SAMPLE, 183 CV_WRAP virtual Mat getTrainResponses() const = 0; 191 CV_WRAP virtual Mat getTrainNormCatResponses() const = 0; 192 CV_WRAP virtual Mat getTestResponses() const = 0; 193 CV_WRAP virtual Mat getTestNormCatResponses() const = 0; 194 CV_WRAP virtual Mat getResponses() const = 0; 195 CV_WRAP virtual Mat getNormCatResponses() const = 0; 196 CV_WRAP virtual Mat getSampleWeights() const = 0; [all …]
|
| /OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-aarch64/include/opencv2/dnn/ |
| H A D | dnn.hpp | 108 std::vector<Mat> blobs; //!< List of learned parameters stored as blobs. 142 BackendWrapper(int targetId, const cv::Mat& m); 184 CV_PROP_RW std::vector<Mat> blobs; 195 virtual void finalize(const std::vector<Mat*> &input, std::vector<Mat> &output); 213 …virtual void forward(std::vector<Mat*> &input, std::vector<Mat> &output, std::vector<Mat> &interna… 234 void finalize(const std::vector<Mat> &inputs, CV_OUT std::vector<Mat> &outputs); 240 CV_DEPRECATED std::vector<Mat> finalize(const std::vector<Mat> &inputs); 245 … CV_DEPRECATED CV_WRAP void run(const std::vector<Mat> &inputs, CV_OUT std::vector<Mat> &outputs, 246 CV_IN_OUT std::vector<Mat> &internals); 293 const std::vector<Mat*> &inputs, [all …]
|
| /OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/OpenCV-android-sdk/sdk/native/jni/include/opencv2/ |
| H A D | core.hpp | 245 CV_EXPORTS void swap(Mat& a, Mat& b); 909 CV_EXPORTS void merge(const Mat* mv, size_t count, OutputArray dst); 934 CV_EXPORTS void split(const Mat& src, Mat* mvbegin); 983 CV_EXPORTS void mixChannels(const Mat* src, size_t nsrcs, Mat* dst, size_t ndsts, 1109 CV_EXPORTS Mat repeat(const Mat& src, int ny, int nx); 1132 CV_EXPORTS void hconcat(const Mat* src, size_t nsrc, OutputArray dst); 1194 CV_EXPORTS void vconcat(const Mat* src, size_t nsrc, OutputArray dst); 1428 CV_EXPORTS void min(const Mat& src1, const Mat& src2, Mat& dst); 1449 CV_EXPORTS void max(const Mat& src1, const Mat& src2, Mat& dst); 1967 CV_EXPORTS void calcCovarMatrix( const Mat* samples, int nsamples, Mat& covar, Mat& mean, [all …]
|