Lines Matching refs:CV_EXPORTS
55 class CV_EXPORTS TS;
57 CV_EXPORTS int64 readSeed(const char* str);
59 CV_EXPORTS void randUni( RNG& rng, Mat& a, const Scalar& param1, const Scalar& param2 );
72 CV_EXPORTS const char* getTypeName( int type );
73 CV_EXPORTS int typeByName( const char* type_name );
75 CV_EXPORTS string vec2str(const string& sep, const int* v, size_t nelems);
86 CV_EXPORTS double getMinVal(int depth);
87 CV_EXPORTS double getMaxVal(int depth);
89 CV_EXPORTS Size randomSize(RNG& rng, double maxSizeLog);
90 CV_EXPORTS void randomSize(RNG& rng, int minDims, int maxDims, double maxSizeLog, vector<int>& sz);
91 CV_EXPORTS int randomType(RNG& rng, int typeMask, int minChannels, int maxChannels);
92 CV_EXPORTS Mat randomMat(RNG& rng, Size size, int type, double minVal, double maxVal, bool useRoi);
93 CV_EXPORTS Mat randomMat(RNG& rng, const vector<int>& size, int type, double minVal, double maxVal, bool useRoi);
94 CV_EXPORTS void add(const Mat& a, double alpha, const Mat& b, double beta,
96 CV_EXPORTS void multiply(const Mat& a, const Mat& b, Mat& c, double alpha=1);
97 CV_EXPORTS void divide(const Mat& a, const Mat& b, Mat& c, double alpha=1);
99 CV_EXPORTS void convert(const Mat& src, cv::OutputArray dst, int dtype, double alpha=1, double beta=0);
100 CV_EXPORTS void copy(const Mat& src, Mat& dst, const Mat& mask=Mat(), bool invertMask=false);
101 CV_EXPORTS void set(Mat& dst, const Scalar& gamma, const Mat& mask=Mat());
104 CV_EXPORTS void extract( const Mat& a, Mat& plane, int coi );
105 CV_EXPORTS void insert( const Mat& plane, Mat& a, int coi );
109 CV_EXPORTS int check( const Mat& data, double min_val, double max_val, vector<int>* idx );
112 CV_EXPORTS void patchZeros( Mat& mat, double level );
114 CV_EXPORTS void transpose(const Mat& src, Mat& dst);
115 CV_EXPORTS void erode(const Mat& src, Mat& dst, const Mat& _kernel, Point anchor=Point(-1,-1),
117 CV_EXPORTS void dilate(const Mat& src, Mat& dst, const Mat& _kernel, Point anchor=Point(-1,-1),
119 CV_EXPORTS void filter2D(const Mat& src, Mat& dst, int ddepth, const Mat& kernel,
122 CV_EXPORTS void copyMakeBorder(const Mat& src, Mat& dst, int top, int bottom, int left, int right,
124 CV_EXPORTS Mat calcSobelKernel2D( int dx, int dy, int apertureSize, int origin=0 );
125 CV_EXPORTS Mat calcLaplaceKernel2D( int aperture_size );
127 CV_EXPORTS void initUndistortMap( const Mat& a, const Mat& k, Size sz, Mat& mapx, Mat& mapy );
129 CV_EXPORTS void minMaxLoc(const Mat& src, double* minval, double* maxval,
131 CV_EXPORTS double norm(InputArray src, int normType, InputArray mask=noArray());
132 CV_EXPORTS double norm(InputArray src1, InputArray src2, int normType, InputArray mask=noArray());
133 CV_EXPORTS Scalar mean(const Mat& src, const Mat& mask=Mat());
134 CV_EXPORTS double PSNR(InputArray src1, InputArray src2);
136 CV_EXPORTS bool cmpUlps(const Mat& data, const Mat& refdata, int expMaxDiff, double* realMaxDiff, vector<int>* idx);
142 CV_EXPORTS int cmpEps( const Mat& data, const Mat& refdata, double* max_diff,
147 CV_EXPORTS int cmpEps2( TS* ts, const Mat& data, const Mat& refdata, double success_err_level,
150 CV_EXPORTS int cmpEps2_64f( TS* ts, const double* val, const double* refval, int len,
153 CV_EXPORTS void logicOp(const Mat& src1, const Mat& src2, Mat& dst, char c);
154 CV_EXPORTS void logicOp(const Mat& src, const Scalar& s, Mat& dst, char c);
155 CV_EXPORTS void min(const Mat& src1, const Mat& src2, Mat& dst);
156 CV_EXPORTS void min(const Mat& src, double s, Mat& dst);
157 CV_EXPORTS void max(const Mat& src1, const Mat& src2, Mat& dst);
158 CV_EXPORTS void max(const Mat& src, double s, Mat& dst);
160 CV_EXPORTS void compare(const Mat& src1, const Mat& src2, Mat& dst, int cmpop);
161 CV_EXPORTS void compare(const Mat& src, double s, Mat& dst, int cmpop);
162 CV_EXPORTS void gemm(const Mat& src1, const Mat& src2, double alpha,
164 CV_EXPORTS void transform( const Mat& src, Mat& dst, const Mat& transmat, const Mat& shift );
165 CV_EXPORTS double crossCorr(const Mat& src1, const Mat& src2);
167 struct CV_EXPORTS MatInfo
173 CV_EXPORTS std::ostream& operator << (std::ostream& out, const MatInfo& m);
175 struct CV_EXPORTS MatComparator
194 class CV_EXPORTS BaseTest
278 struct CV_EXPORTS TSParams
293 class CV_EXPORTS TS
437 class CV_EXPORTS ArrayTest : public BaseTest
474 class CV_EXPORTS BadArgTest : public BaseTest
526 struct CV_EXPORTS DefaultRngAuto
542 CV_EXPORTS void fillGradient(Mat& img, int delta = 5);
543 CV_EXPORTS void smoothBorder(Mat& img, const Scalar& color, int delta = 3);
545 CV_EXPORTS void printVersionInfo(bool useStdOut = true);