• Home
  • Raw
  • Download

Lines Matching refs:iterations

1096         iterations = _iterations;  in MorphologyRunner()
1121 for( int i = 1; i < iterations; i++ ) in operator ()()
1129 int iterations; member in cv::MorphologyRunner
1264 const Mat& _kernel, Point anchor, int iterations, in IPPMorphOp() argument
1306 if( iterations == 0 || kernel.rows*kernel.cols == 1 ) in IPPMorphOp()
1315 ksize = Size(1+iterations*2,1+iterations*2); in IPPMorphOp()
1316 anchor = Point(iterations, iterations); in IPPMorphOp()
1318 iterations = 1; in IPPMorphOp()
1320 else if( iterations >= 1 && countNonZero(kernel) == kernel.rows*kernel.cols ) in IPPMorphOp()
1322 ksize = Size(ksize.width + (iterations-1)*(ksize.width-1), in IPPMorphOp()
1323 ksize.height + (iterations-1)*(ksize.height-1)), in IPPMorphOp()
1324 anchor = Point(anchor.x*iterations, anchor.y*iterations); in IPPMorphOp()
1327 iterations = 1; in IPPMorphOp()
1331 if( iterations > 1 ) in IPPMorphOp()
1499 Point anchor, int iterations, int op, int borderType, in ocl_morphOp() argument
1517 kernel = getStructuringElement(MORPH_RECT, Size(1+iterations*2,1+iterations*2)); in ocl_morphOp()
1518 anchor = Point(iterations, iterations); in ocl_morphOp()
1519 iterations = 1; in ocl_morphOp()
1521 else if( iterations > 1 && countNonZero(kernel) == kernel.rows*kernel.cols ) in ocl_morphOp()
1523 anchor = Point(anchor.x*iterations, anchor.y*iterations); in ocl_morphOp()
1525 Size(ksize.width + (iterations-1)*(ksize.width-1), in ocl_morphOp()
1526 ksize.height + (iterations-1)*(ksize.height-1)), in ocl_morphOp()
1528 iterations = 1; in ocl_morphOp()
1535 (iterations == 1) in ocl_morphOp()
1545 if (iterations == 0 || kernel.rows*kernel.cols == 1) in ocl_morphOp()
1588 std::vector<ocl::Kernel> kernels(iterations); in ocl_morphOp()
1589 for (int i = 0; i < iterations; i++) in ocl_morphOp()
1591 int current_op = iterations == i + 1 ? actual_op : op; in ocl_morphOp()
1612 if (iterations == 1 && src.u != dst.u) in ocl_morphOp()
1630 for (int i = 0; i < iterations; i++) in ocl_morphOp()
1660 if (haveExtraMat && iterations == i + 1) in ocl_morphOp()
1679 Point anchor, int iterations, in morphOp() argument
1690 ocl_morphOp(_src, _dst, kernel, anchor, iterations, op, borderType, borderValue) ) in morphOp()
1692 if (iterations == 0 || kernel.rows*kernel.cols == 1) in morphOp()
1700 kernel = getStructuringElement(MORPH_RECT, Size(1+iterations*2,1+iterations*2)); in morphOp()
1701 anchor = Point(iterations, iterations); in morphOp()
1702 iterations = 1; in morphOp()
1704 else if( iterations > 1 && countNonZero(kernel) == kernel.rows*kernel.cols ) in morphOp()
1706 anchor = Point(anchor.x*iterations, anchor.y*iterations); in morphOp()
1708 Size(ksize.width + (iterations-1)*(ksize.width-1), in morphOp()
1709 ksize.height + (iterations-1)*(ksize.height-1)), in morphOp()
1711 iterations = 1; in morphOp()
1717 if( IPPMorphOp(op, _src, _dst, kernel, anchor, iterations, borderType, borderValue) ) in morphOp()
1731 …if (src.data != dst.data && iterations == 1 && //NOTE: threads are not used for inplace processing in morphOp()
1738 …MorphologyRunner(src, dst, nStripes, iterations, op, kernel, anchor, borderType, borderType, borde… in morphOp()
1744 Point anchor, int iterations, in erode() argument
1747 morphOp( MORPH_ERODE, src, dst, kernel, anchor, iterations, borderType, borderValue ); in erode()
1752 Point anchor, int iterations, in dilate() argument
1755 morphOp( MORPH_DILATE, src, dst, kernel, anchor, iterations, borderType, borderValue ); in dilate()
1763 InputArray kernel, Point anchor, int iterations, in ocl_morphologyEx() argument
1774 … if (!ocl_morphOp( _src, _dst, kernel, anchor, iterations, MORPH_ERODE, borderType, borderValue )) in ocl_morphologyEx()
1778 … if (!ocl_morphOp( _src, _dst, kernel, anchor, iterations, MORPH_DILATE, borderType, borderValue )) in ocl_morphologyEx()
1782 … if (!ocl_morphOp( _src, _temp, kernel, anchor, iterations, MORPH_ERODE, borderType, borderValue )) in ocl_morphologyEx()
1784 …if (!ocl_morphOp( _temp, _dst, kernel, anchor, iterations, MORPH_DILATE, borderType, borderValue )) in ocl_morphologyEx()
1788 …if (!ocl_morphOp( _src, _temp, kernel, anchor, iterations, MORPH_DILATE, borderType, borderValue )) in ocl_morphologyEx()
1790 … if (!ocl_morphOp( _temp, _dst, kernel, anchor, iterations, MORPH_ERODE, borderType, borderValue )) in ocl_morphologyEx()
1794 … if (!ocl_morphOp( _src, temp, kernel, anchor, iterations, MORPH_ERODE, borderType, borderValue )) in ocl_morphologyEx()
1796 …if (!ocl_morphOp( _src, _dst, kernel, anchor, iterations, MORPH_DILATE, borderType, borderValue, M… in ocl_morphologyEx()
1800 … if (!ocl_morphOp( _src, _temp, kernel, anchor, iterations, MORPH_ERODE, borderType, borderValue )) in ocl_morphologyEx()
1802 …if (!ocl_morphOp( _temp, _dst, kernel, anchor, iterations, MORPH_DILATE, borderType, borderValue, … in ocl_morphologyEx()
1806 …if (!ocl_morphOp( _src, _temp, kernel, anchor, iterations, MORPH_DILATE, borderType, borderValue )) in ocl_morphologyEx()
1808 …if (!ocl_morphOp( _temp, _dst, kernel, anchor, iterations, MORPH_ERODE, borderType, borderValue, M… in ocl_morphologyEx()
1823 InputArray _kernel, Point anchor, int iterations, in morphologyEx() argument
1838 ocl_morphologyEx(_src, _dst, op, kernel, anchor, iterations, borderType, borderValue)) in morphologyEx()
1848 erode( src, dst, kernel, anchor, iterations, borderType, borderValue ); in morphologyEx()
1851 dilate( src, dst, kernel, anchor, iterations, borderType, borderValue ); in morphologyEx()
1854 erode( src, dst, kernel, anchor, iterations, borderType, borderValue ); in morphologyEx()
1855 dilate( dst, dst, kernel, anchor, iterations, borderType, borderValue ); in morphologyEx()
1858 dilate( src, dst, kernel, anchor, iterations, borderType, borderValue ); in morphologyEx()
1859 erode( dst, dst, kernel, anchor, iterations, borderType, borderValue ); in morphologyEx()
1862 erode( src, temp, kernel, anchor, iterations, borderType, borderValue ); in morphologyEx()
1863 dilate( src, dst, kernel, anchor, iterations, borderType, borderValue ); in morphologyEx()
1869 erode( src, temp, kernel, anchor, iterations, borderType, borderValue ); in morphologyEx()
1870 dilate( temp, temp, kernel, anchor, iterations, borderType, borderValue ); in morphologyEx()
1876 dilate( src, temp, kernel, anchor, iterations, borderType, borderValue ); in morphologyEx()
1877 erode( temp, temp, kernel, anchor, iterations, borderType, borderValue ); in morphologyEx()
1949 cvErode( const CvArr* srcarr, CvArr* dstarr, IplConvKernel* element, int iterations ) in cvErode() argument
1955 cv::erode( src, dst, kernel, anchor, iterations, cv::BORDER_REPLICATE ); in cvErode()
1960 cvDilate( const CvArr* srcarr, CvArr* dstarr, IplConvKernel* element, int iterations ) in cvDilate() argument
1966 cv::dilate( src, dst, kernel, anchor, iterations, cv::BORDER_REPLICATE ); in cvDilate()
1972 IplConvKernel* element, int op, int iterations ) in cvMorphologyEx() argument
1989 cv::morphologyEx( src, dst, op, kernel, anchor, iterations, cv::BORDER_REPLICATE ); in cvMorphologyEx()