Home
last modified time | relevance | path

Searched refs:sameSize (Results 1 – 8 of 8) sorted by relevance

/external/opencv3/modules/imgproc/src/
Daccum.cpp851 CV_Assert( _src.sameSize(_dst) && dcn == scn ); in accumulate()
852 CV_Assert( _mask.empty() || (_src.sameSize(_mask) && _mask.type() == CV_8U) ); in accumulate()
936 CV_Assert( _src.sameSize(_dst) && dcn == scn ); in accumulateSquare()
937 CV_Assert( _mask.empty() || (_src.sameSize(_mask) && _mask.type() == CV_8U) ); in accumulateSquare()
1020 CV_Assert( _src1.sameSize(_src2) && stype == _src2.type() ); in accumulateProduct()
1021 CV_Assert( _src1.sameSize(_dst) && dcn == scn ); in accumulateProduct()
1022 CV_Assert( _mask.empty() || (_src1.sameSize(_mask) && _mask.type() == CV_8U) ); in accumulateProduct()
1108 CV_Assert( _src.sameSize(_dst) && dcn == scn ); in accumulateWeighted()
1109 CV_Assert( _mask.empty() || (_src.sameSize(_mask) && _mask.type() == CV_8U) ); in accumulateWeighted()
Dfeatureselect.cpp271 CV_Assert( _mask.empty() || (_mask.type() == CV_8UC1 && _mask.sameSize(_image)) ); in goodFeaturesToTrack()
/external/opencv3/modules/core/src/
Darithm.cpp1559 !psrc1->sameSize(*psrc2) || type1 != type2 ) in binary_op()
1578 CV_Assert( psrc1->sameSize(*psrc2) && type1 == type2 ); in binary_op()
1589 CV_Assert( (mtype == CV_8U || mtype == CV_8S) && _mask.sameSize(*psrc1)); in binary_op()
1591 reallocate = !_dst.sameSize(*psrc1) || _dst.type() != type1; in binary_op()
2043 CV_Assert( (mtype == CV_8UC1 || mtype == CV_8SC1) && _mask.sameSize(*psrc1) ); in arithm_op()
2044 reallocate = !_dst.sameSize(*psrc1) || _dst.type() != dtype; in arithm_op()
4899 if (!haveScalar && (!_src1.sameSize(_src2) || type1 != type2)) in ocl_compare()
4993 || !_src1.sameSize(_src2) in compare()
Dumatrix.cpp909 CV_Assert(m.sameSize(*this) && m.type() == type()); in dot()
Dstat.cpp2997 CV_Assert( _src1.sameSize(_src2) && _src1.type() == _src2.type() ); in norm()
Dmatrix.cpp1624 bool _InputArray::sameSize(const _InputArray& arr) const in sameSize() function in cv::_InputArray
Dconvert.cpp1432 CV_Assert( _src.sameSize(_dst) && sdepth == ddepth ); in insertChannel()
/external/opencv3/modules/core/include/opencv2/core/
Dmat.hpp208 bool sameSize(const _InputArray& arr) const;