Home
last modified time | relevance | path

Searched refs:_src (Results 1 – 25 of 171) sorted by relevance

1234567

/external/opencv3/modules/cudaimgproc/src/
Dcolor.cpp82 typedef void (*gpu_func_t)(const GpuMat& _src, GpuMat& _dst, Stream& stream);
84 void BGR_to_RGB(InputArray _src, OutputArray _dst, int, Stream& stream) in BGR_to_RGB() argument
89 GpuMat src = _src.getGpuMat(); in BGR_to_RGB()
100 void BGR_to_BGRA(InputArray _src, OutputArray _dst, int, Stream& stream) in BGR_to_BGRA() argument
105 GpuMat src = _src.getGpuMat(); in BGR_to_BGRA()
116 void BGR_to_RGBA(InputArray _src, OutputArray _dst, int, Stream& stream) in BGR_to_RGBA() argument
121 GpuMat src = _src.getGpuMat(); in BGR_to_RGBA()
132 void BGRA_to_BGR(InputArray _src, OutputArray _dst, int, Stream& stream) in BGRA_to_BGR() argument
137 GpuMat src = _src.getGpuMat(); in BGRA_to_BGR()
148 void BGRA_to_RGB(InputArray _src, OutputArray _dst, int, Stream& stream) in BGRA_to_RGB() argument
[all …]
/external/autotest/client/site_tests/hardware_UsbBasicFileOperations/
Dhardware_UsbBasicFileOperations.py14 _src, _dst = None, None variable in hardware_UsbBasicFileOperations
25 self._src = autotemp.tempfile(unique_id='tmpfile',
31 storage_mod.create_file(self._src.name, size)
38 src_md5 = storage_mod.checksum_file(self._src.name)
42 f = open(self._src.name, 'rb')
65 utils.force_copy(self._src.name, self._dst.name)
80 os.remove(self._src.name)
86 if os.path.isfile(self._src.name):
94 if os.path.isfile(self._src.name):
103 storage_mod.create_file(self._src.name, size)
[all …]
/external/opencv3/modules/imgproc/test/
Dtest_thresh.cpp122 static void test_threshold( const Mat& _src, Mat& _dst, in test_threshold() argument
126 int depth = _src.depth(), cn = _src.channels(); in test_threshold()
127 int width_n = _src.cols*cn, height = _src.rows; in test_threshold()
156 const uchar* src = _src.ptr<uchar>(i); in test_threshold()
163 const short* src = _src.ptr<short>(i); in test_threshold()
170 const float* src = _src.ptr<float>(i); in test_threshold()
182 const uchar* src = _src.ptr<uchar>(i); in test_threshold()
189 const short* src = _src.ptr<short>(i); in test_threshold()
196 const float* src = _src.ptr<float>(i); in test_threshold()
208 const uchar* src = _src.ptr<uchar>(i); in test_threshold()
[all …]
Dtest_imgwarp_strict.cpp356 void resize_1d(const Mat& _src, Mat& _dst, int dy, const dim& _dim);
512 void CV_Resize_Test::resize_1d(const Mat& _src, Mat& _dst, int dy, const dim& _dim) in resize_1d() argument
520 const float* yS = _src.ptr<float>(dy); in resize_1d()
534 size_t elemsize = _src.elemSize(); in resize_1d()
542 Mat _extended_src_row(1, _src.cols + ksize * 2, _src.type()); in resize_1d()
543 const uchar* srow = _src.ptr(dy); in resize_1d()
544 memcpy(_extended_src_row.ptr() + elemsize * ksize, srow, _src.step); in resize_1d()
548 …memcpy(_extended_src_row.ptr() + (ksize + k) * elemsize + _src.step, srow + _src.step - elemsize, … in resize_1d()
827 void CV_Remap_Test::remap_nearest(const Mat& _src, Mat& _dst) in remap_nearest() argument
829 CV_Assert(_src.depth() == CV_32F && _dst.type() == _src.type()); in remap_nearest()
[all …]
Dtest_bilateral_filter.cpp76 Mat _src; member in cvtest::CV_BilateralFilterTest
82 cvtest::BaseTest(), _src(), _parallel_dst(), _d() in CV_BilateralFilterTest()
243 _src.create(size, type); in prepare_test_case()
245 rng.fill(_src, RNG::UNIFORM, 0, 256); in prepare_test_case()
257 if (_src.depth() == CV_32F) in validate_test_results()
258 reference_bilateral_filter(_src, reference_dst, _d, _sigma_color, _sigma_space); in validate_test_results()
261 int type = _src.type(); in validate_test_results()
262 _src.convertTo(reference_src, CV_32F); in validate_test_results()
281 bilateralFilter(_src, _parallel_dst, _d, _sigma_color, _sigma_space); in run_func()
/external/opencv3/modules/cudaarithm/src/cuda/
Dsum.cu62 void sumImpl(const GpuMat& _src, GpuMat& _dst, const GpuMat& mask, Stream& stream) in sumImpl() argument
67 const GpuMat_<src_type>& src = (const GpuMat_<src_type>&) _src; in sumImpl()
77 void sumAbsImpl(const GpuMat& _src, GpuMat& _dst, const GpuMat& mask, Stream& stream) in sumAbsImpl() argument
82 const GpuMat_<src_type>& src = (const GpuMat_<src_type>&) _src; in sumAbsImpl()
92 void sumSqrImpl(const GpuMat& _src, GpuMat& _dst, const GpuMat& mask, Stream& stream) in sumSqrImpl() argument
97 const GpuMat_<src_type>& src = (const GpuMat_<src_type>&) _src; in sumSqrImpl()
107 void cv::cuda::calcSum(InputArray _src, OutputArray _dst, InputArray _mask, Stream& stream) in calcSum() argument
109 typedef void (*func_t)(const GpuMat& _src, GpuMat& _dst, const GpuMat& mask, Stream& stream); in calcSum()
121 const GpuMat src = getInputMat(_src, stream); in calcSum()
137 cv::Scalar cv::cuda::sum(InputArray _src, InputArray _mask) in sum() argument
[all …]
Dminmax.cu62 void minMaxImpl(const GpuMat& _src, const GpuMat& mask, GpuMat& _dst, Stream& stream) in minMaxImpl() argument
64 const GpuMat_<T>& src = (const GpuMat_<T>&) _src; in minMaxImpl()
87 void cv::cuda::findMinMax(InputArray _src, OutputArray _dst, InputArray _mask, Stream& stream) in findMinMax() argument
89 typedef void (*func_t)(const GpuMat& _src, const GpuMat& mask, GpuMat& _dst, Stream& stream); in findMinMax()
101 const GpuMat src = getInputMat(_src, stream); in findMinMax()
118 void cv::cuda::minMax(InputArray _src, double* minVal, double* maxVal, InputArray _mask) in minMax() argument
123 findMinMax(_src, dst, _mask, stream); in minMax()
139 void findMaxAbs(InputArray _src, OutputArray _dst, InputArray _mask, Stream& stream);
146 void findMaxAbsImpl(const GpuMat& _src, const GpuMat& mask, GpuMat& _dst, Stream& stream) in findMaxAbsImpl() argument
148 const GpuMat_<T>& src = (const GpuMat_<T>&) _src; in findMaxAbsImpl()
[all …]
Dcountnonzero.cu62 void countNonZeroImpl(const GpuMat& _src, GpuMat& _dst, Stream& stream) in countNonZeroImpl() argument
64 const GpuMat_<T>& src = (const GpuMat_<T>&) _src; in countNonZeroImpl()
71 void cv::cuda::countNonZero(InputArray _src, OutputArray _dst, Stream& stream) in countNonZero() argument
85 GpuMat src = getInputMat(_src, stream); in countNonZero()
98 int cv::cuda::countNonZero(InputArray _src) in countNonZero() argument
105 countNonZero(_src, buf, stream); in countNonZero()
Dminmaxloc.cu62 …void minMaxLocImpl(const GpuMat& _src, const GpuMat& mask, GpuMat& _valBuf, GpuMat& _locBuf, Strea… in minMaxLocImpl() argument
64 const GpuMat_<T>& src = (const GpuMat_<T>&) _src; in minMaxLocImpl()
75 void cv::cuda::findMinMaxLoc(InputArray _src, OutputArray _minMaxVals, OutputArray _loc, InputArray… in findMinMaxLoc() argument
77 …typedef void (*func_t)(const GpuMat& _src, const GpuMat& mask, GpuMat& _valBuf, GpuMat& _locBuf, S… in findMinMaxLoc()
89 const GpuMat src = getInputMat(_src, stream); in findMinMaxLoc()
126 void cv::cuda::minMaxLoc(InputArray _src, double* minVal, double* maxVal, Point* minLoc, Point* max… in minMaxLoc() argument
131 findMinMaxLoc(_src, minMaxVals, locVals, _mask, stream); in minMaxLoc()
140 Size size = _src.size(); in minMaxLoc()
Dmath.cu84 void cv::cuda::abs(InputArray _src, OutputArray _dst, Stream& stream) in abs() argument
98 GpuMat src = getInputMat(_src, stream); in abs()
129 void cv::cuda::sqr(InputArray _src, OutputArray _dst, Stream& stream) in sqr() argument
143 GpuMat src = getInputMat(_src, stream); in sqr()
166 void cv::cuda::sqrt(InputArray _src, OutputArray _dst, Stream& stream) in sqrt() argument
180 GpuMat src = getInputMat(_src, stream); in sqrt()
212 void cv::cuda::exp(InputArray _src, OutputArray _dst, Stream& stream) in exp() argument
226 GpuMat src = getInputMat(_src, stream); in exp()
249 void cv::cuda::log(InputArray _src, OutputArray _dst, Stream& stream) in log() argument
263 GpuMat src = getInputMat(_src, stream); in log()
[all …]
Dreduce.cu62 void reduceToRowImpl(const GpuMat& _src, GpuMat& _dst, int reduceOp, Stream& stream) in reduceToRowImpl() argument
64 const GpuMat_<T>& src = (const GpuMat_<T>&) _src; in reduceToRowImpl()
88 void reduceToColumnImpl_(const GpuMat& _src, GpuMat& _dst, int reduceOp, Stream& stream) in reduceToColumnImpl_() argument
90 const GpuMat_<T>& src = (const GpuMat_<T>&) _src; in reduceToColumnImpl_()
129 void cv::cuda::reduce(InputArray _src, OutputArray _dst, int dim, int reduceOp, int dtype, Stream& … in reduce() argument
131 GpuMat src = getInputMat(_src, stream); in reduce()
144 typedef void (*func_t)(const GpuMat& _src, GpuMat& _dst, int reduceOp, Stream& stream); in reduce()
222 typedef void (*func_t)(const GpuMat& _src, GpuMat& _dst, int reduceOp, Stream& stream); in reduce()
/external/mesa3d/src/gallium/state_trackers/d3d1x/gd3d1x/
Dsm4_to_tgsi.cpp138 struct ureg_src _src(unsigned i) in _src() function
236 #define OP1_(d, g) case SM4_OPCODE_##d: ureg_##g(ureg, _dst(), _src(1)); break
237 #define OP2_(d, g) case SM4_OPCODE_##d: ureg_##g(ureg, _dst(), _src(1), _src(2)); break
238 #define OP3_(d, g) case SM4_OPCODE_##d: ureg_##g(ureg, _dst(), _src(1), _src(2), _src(3)); break
318 ureg_CMP(ureg, _dst(), ureg_negate(ureg_abs(_src(1))), _src(2), _src(3)); in translate_insns()
324 ureg_RSQ(ureg, t, _src(1)); in translate_insns()
332 struct ureg_src v = _src(2); in translate_insns()
342 ureg_KIL(ureg, _src(0)); in translate_insns()
351 ureg_BREAKC(ureg, _src(0)); in translate_insns()
358 ureg_IF(ureg, _src(0), &label); in translate_insns()
[all …]
/external/opencv3/modules/imgproc/src/
Dclahe.cpp53 static bool calcLut(cv::InputArray _src, cv::OutputArray _dst, in calcLut() argument
70 cv::UMat src = _src.getUMat(); in calcLut()
92 static bool transform(cv::InputArray _src, cv::OutputArray _dst, cv::InputArray _lut, in transform() argument
104 cv::UMat src = _src.getUMat(); in transform()
352 void CLAHE_Impl::apply(cv::InputArray _src, cv::OutputArray _dst) in apply() argument
354 CV_Assert( _src.type() == CV_8UC1 || _src.type() == CV_16UC1 ); in apply()
357 …bool useOpenCL = cv::ocl::useOpenCL() && _src.isUMat() && _src.dims()<=2 && _src.type() == CV_8UC1; in apply()
360 int histSize = _src.type() == CV_8UC1 ? 256 : 4096; in apply()
365 if (_src.size().width % tilesX_ == 0 && _src.size().height % tilesY_ == 0) in apply()
367 tileSize = cv::Size(_src.size().width / tilesX_, _src.size().height / tilesY_); in apply()
[all …]
Dthresh.cpp50 thresh_8u( const Mat& _src, Mat& _dst, uchar thresh, uchar maxval, int type ) in thresh_8u() argument
54 Size roi = _src.size(); in thresh_8u()
55 roi.width *= _src.channels(); in thresh_8u()
56 size_t src_step = _src.step; in thresh_8u()
59 if( _src.isContinuous() && _dst.isContinuous() ) in thresh_8u()
67 …if (tegra::useTegra() && tegra::thresh_8u(_src, _dst, roi.width, roi.height, thresh, maxval, type)) in thresh_8u()
80 …if (_src.data == _dst.data && ippiThreshold_GT_8u_C1IR(_dst.ptr(), (int)dst_step, sz, thresh) >= 0) in thresh_8u()
86 …if (ippiThreshold_GT_8u_C1R(_src.ptr(), (int)src_step, _dst.ptr(), (int)dst_step, sz, thresh) >= 0) in thresh_8u()
95 …if (_src.data == _dst.data && ippiThreshold_LTVal_8u_C1IR(_dst.ptr(), (int)dst_step, sz, thresh+1,… in thresh_8u()
101 …if (ippiThreshold_LTVal_8u_C1R(_src.ptr(), (int)src_step, _dst.ptr(), (int)dst_step, sz, thresh+1,… in thresh_8u()
[all …]
Dderiv.cpp193 static bool IPPDerivScharr(InputArray _src, OutputArray _dst, int ddepth, int dx, int dy, double sc… in IPPDerivScharr() argument
204 int stype = _src.type(), sdepth = CV_MAT_DEPTH(stype), cn = CV_MAT_CN(stype); in IPPDerivScharr()
209 Mat src = _src.getMat(); in IPPDerivScharr()
227 _dst.create( _src.size(), dtype); in IPPDerivScharr()
307 static bool IPPDerivScharr(InputArray _src, OutputArray _dst, int ddepth, int dx, int dy, double sc…
316 Mat src = _src.getMat(), dst = _dst.getMat();
411 static bool IPPDerivSobel(InputArray _src, OutputArray _dst, int ddepth, int dx, int dy, int ksize,… in IPPDerivSobel() argument
417 if (1 != _src.channels()) in IPPDerivSobel()
422 Mat src = _src.getMat(), dst = _dst.getMat(); in IPPDerivSobel()
555 void cv::Sobel( InputArray _src, OutputArray _dst, int ddepth, int dx, int dy, in Sobel() argument
[all …]
Dcorner.cpp378 static bool extractCovData(InputArray _src, UMat & Dx, UMat & Dy, int depth, in extractCovData() argument
381 UMat src = _src.getUMat(); in extractCovData()
424 Sobel(_src, Dx, CV_32F, 1, 0, aperture_size, scale, 0, borderType); in extractCovData()
425 Sobel(_src, Dy, CV_32F, 0, 1, aperture_size, scale, 0, borderType); in extractCovData()
429 Scharr(_src, Dx, CV_32F, 1, 0, scale, 0, borderType); in extractCovData()
430 Scharr(_src, Dy, CV_32F, 0, 1, scale, 0, borderType); in extractCovData()
437 static bool ocl_cornerMinEigenValVecs(InputArray _src, OutputArray _dst, int block_size, in ocl_cornerMinEigenValVecs() argument
446 int type = _src.type(), depth = CV_MAT_DEPTH(type); in ocl_cornerMinEigenValVecs()
463 if (!extractCovData(_src, Dx, Dy, depth, (float)scale, aperture_size, borderType)) in ocl_cornerMinEigenValVecs()
473 _dst.createSameSize(_src, CV_32FC1); in ocl_cornerMinEigenValVecs()
[all …]
Dmorph.cpp280 int operator()(const uchar** _src, uchar* _dst, int dststep, int count, int width) const in operator ()()
289 CV_Assert( ((size_t)_src[i] & 15) == 0 ); in operator ()()
291 const float** src = (const float**)_src; in operator ()()
456 int operator()(uchar** _src, int nz, uchar* _dst, int width) const in operator ()()
461 const float** src = (const float**)_src; in operator ()()
698 void operator()(const uchar** _src, uchar* dst, int dststep, int count, int width) in operator ()()
701 const T** src = (const T**)_src; in operator ()()
705 int i0 = vecOp(_src, dst, dststep, count, width); in operator ()()
1087 MorphologyRunner(Mat _src, Mat _dst, int _nStripes, int _iterations, in MorphologyRunner() argument
1092 src = _src; in MorphologyRunner()
[all …]
Ddistransform.cpp70 distanceTransform_3x3( const Mat& _src, Mat& _temp, Mat& _dist, const float* metrics ) in distanceTransform_3x3() argument
78 const uchar* src = _src.ptr(); in distanceTransform_3x3()
81 int srcstep = (int)(_src.step/sizeof(src[0])); in distanceTransform_3x3()
84 Size size = _src.size(); in distanceTransform_3x3()
143 distanceTransform_5x5( const Mat& _src, Mat& _temp, Mat& _dist, const float* metrics ) in distanceTransform_5x5() argument
152 const uchar* src = _src.ptr(); in distanceTransform_5x5()
155 int srcstep = (int)(_src.step/sizeof(src[0])); in distanceTransform_5x5()
158 Size size = _src.size(); in distanceTransform_5x5()
233 distanceTransformEx_5x5( const Mat& _src, Mat& _temp, Mat& _dist, Mat& _labels, const float* metric… in distanceTransformEx_5x5() argument
243 const uchar* src = _src.ptr(); in distanceTransformEx_5x5()
[all …]
/external/libvpx/libvpx/
Dy4minput.c189 const unsigned char *_src, int _c_w, int _c_h) { in y4m_42xmpeg2_42xjpeg_helper() argument
196 _dst[x] = (unsigned char)OC_CLAMPI(0, (4 * _src[0] - 17 * _src[OC_MAXI(x - 1, 0)] + in y4m_42xmpeg2_42xjpeg_helper()
197 … 114 * _src[x] + 35 * _src[OC_MINI(x + 1, _c_w - 1)] - 9 * _src[OC_MINI(x + 2, _c_w - 1)] + in y4m_42xmpeg2_42xjpeg_helper()
198 _src[OC_MINI(x + 3, _c_w - 1)] + 64) >> 7, 255); in y4m_42xmpeg2_42xjpeg_helper()
201 _dst[x] = (unsigned char)OC_CLAMPI(0, (4 * _src[x - 2] - 17 * _src[x - 1] + in y4m_42xmpeg2_42xjpeg_helper()
202 … 114 * _src[x] + 35 * _src[x + 1] - 9 * _src[x + 2] + _src[x + 3] + 64) >> 7, 255); in y4m_42xmpeg2_42xjpeg_helper()
205 _dst[x] = (unsigned char)OC_CLAMPI(0, (4 * _src[x - 2] - 17 * _src[x - 1] + in y4m_42xmpeg2_42xjpeg_helper()
206 … 114 * _src[x] + 35 * _src[OC_MINI(x + 1, _c_w - 1)] - 9 * _src[OC_MINI(x + 2, _c_w - 1)] + in y4m_42xmpeg2_42xjpeg_helper()
207 _src[_c_w - 1] + 64) >> 7, 255); in y4m_42xmpeg2_42xjpeg_helper()
210 _src += _c_w; in y4m_42xmpeg2_42xjpeg_helper()
[all …]
/external/opencv3/modules/cudaarithm/src/
Dreductions.cpp89 void normL2(cv::InputArray _src, cv::OutputArray _dst, cv::InputArray _mask, Stream& stream);
91 void findMaxAbs(cv::InputArray _src, cv::OutputArray _dst, cv::InputArray _mask, Stream& stream);
95 void cv::cuda::calcNorm(InputArray _src, OutputArray dst, int normType, InputArray mask, Stream& st… in calcNorm() argument
99 GpuMat src = getInputMat(_src, stream); in calcNorm()
117 double cv::cuda::norm(InputArray _src, int normType, InputArray _mask) in norm() argument
122 calcNorm(_src, dst, normType, _mask, stream); in norm()
135 void cv::cuda::meanStdDev(InputArray _src, OutputArray _dst, Stream& stream) in meanStdDev() argument
140 const GpuMat src = getInputMat(_src, stream); in meanStdDev()
167 void cv::cuda::meanStdDev(InputArray _src, Scalar& mean, Scalar& stddev) in meanStdDev() argument
172 meanStdDev(_src, dst, stream); in meanStdDev()
[all …]
/external/opencv3/modules/photo/src/
Ddenoising.cpp104 void cv::fastNlMeansDenoising( InputArray _src, OutputArray _dst, float h, in fastNlMeansDenoising() argument
107 fastNlMeansDenoising(_src, _dst, std::vector<float>(1, h), in fastNlMeansDenoising()
111 void cv::fastNlMeansDenoising( InputArray _src, OutputArray _dst, const std::vector<float>& h, in fastNlMeansDenoising() argument
114 int hn = (int)h.size(), type = _src.type(), depth = CV_MAT_DEPTH(type), cn = CV_MAT_CN(type); in fastNlMeansDenoising()
117 Size src_size = _src.size(); in fastNlMeansDenoising()
118 CV_OCL_RUN(_src.dims() <= 2 && (_src.isUMat() || _dst.isUMat()) && in fastNlMeansDenoising()
120 ocl_fastNlMeansDenoising(_src, _dst, &h[0], hn, in fastNlMeansDenoising()
123 Mat src = _src.getMat(); in fastNlMeansDenoising()
168 void cv::fastNlMeansDenoisingColored( InputArray _src, OutputArray _dst, in fastNlMeansDenoisingColored() argument
172 int type = _src.type(), depth = CV_MAT_DEPTH(type), cn = CV_MAT_CN(type); in fastNlMeansDenoisingColored()
[all …]
Dnpr.cpp52 void cv::edgePreservingFilter(InputArray _src, OutputArray _dst, int flags, float sigma_s, float si… in edgePreservingFilter() argument
54 Mat I = _src.getMat(); in edgePreservingFilter()
74 void cv::detailEnhance(InputArray _src, OutputArray _dst, float sigma_s, float sigma_r) in detailEnhance() argument
76 Mat I = _src.getMat(); in detailEnhance()
119 void cv::pencilSketch(InputArray _src, OutputArray _dst1, OutputArray _dst2, float sigma_s, float s… in pencilSketch() argument
121 Mat I = _src.getMat(); in pencilSketch()
143 void cv::stylization(InputArray _src, OutputArray _dst, float sigma_s, float sigma_r) in stylization() argument
145 Mat I = _src.getMat(); in stylization()
Dseamless_cloning.cpp50 void cv::seamlessClone(InputArray _src, InputArray _dst, InputArray _mask, Point p, OutputArray _bl… in seamlessClone() argument
52 const Mat src = _src.getMat(); in seamlessClone()
117 void cv::colorChange(InputArray _src, InputArray _mask, OutputArray _dst, float r, float g, float b) in colorChange() argument
119 Mat src = _src.getMat(); in colorChange()
143 void cv::illuminationChange(InputArray _src, InputArray _mask, OutputArray _dst, float a, float b) in illuminationChange() argument
146 Mat src = _src.getMat(); in illuminationChange()
169 void cv::textureFlattening(InputArray _src, InputArray _mask, OutputArray _dst, in textureFlattening() argument
173 Mat src = _src.getMat(); in textureFlattening()
/external/opencv3/modules/core/src/
Dcopy.cpp56 copyMask_(const uchar* _src, size_t sstep, const uchar* mask, size_t mstep, uchar* _dst, size_t dst… in copyMask_() argument
58 for( ; size.height--; mask += mstep, _src += sstep, _dst += dstep ) in copyMask_()
60 const T* src = (const T*)_src; in copyMask_()
83 copyMask_<uchar>(const uchar* _src, size_t sstep, const uchar* mask, size_t mstep, uchar* _dst, siz… in copyMask_() argument
88 … if (ippiCopy_8u_C1MR(_src, (int)sstep, _dst, (int)dstep, ippiSize(size), mask, (int)mstep) >= 0) in copyMask_()
97 for( ; size.height--; mask += mstep, _src += sstep, _dst += dstep ) in copyMask_()
99 const uchar* src = (const uchar*)_src; in copyMask_()
133 copyMask_<ushort>(const uchar* _src, size_t sstep, const uchar* mask, size_t mstep, uchar* _dst, si… in copyMask_() argument
138 …if (ippiCopy_16u_C1MR((const Ipp16u *)_src, (int)sstep, (Ipp16u *)_dst, (int)dstep, ippiSize(size)… in copyMask_()
147 for( ; size.height--; mask += mstep, _src += sstep, _dst += dstep ) in copyMask_()
[all …]
Dlda.cpp41 static Mat argsort(InputArray _src, bool ascending=true) in argsort() argument
43 Mat src = _src.getMat(); in argsort()
88 static void sortMatrixColumnsByIndices(InputArray _src, InputArray _indices, OutputArray _dst) { in sortMatrixColumnsByIndices() argument
92 Mat src = _src.getMat(); in sortMatrixColumnsByIndices()
112 Mat _src = src.getMat(); in isSymmetric_() local
113 if(_src.cols != _src.rows) in isSymmetric_()
115 for (int i = 0; i < _src.rows; i++) { in isSymmetric_()
116 for (int j = 0; j < _src.cols; j++) { in isSymmetric_()
117 _Tp a = _src.at<_Tp> (i, j); in isSymmetric_()
118 _Tp b = _src.at<_Tp> (j, i); in isSymmetric_()
[all …]

1234567