|
| void | cv::ximgproc::rl::createRLEImage (const std::vector< cv::Point3i > &runs, OutputArray res, Size size=Size(0, 0)) |
| | 从行程向量(列开始,列结束,行)创建行程长度编码图像
|
| |
| void | cv::ximgproc::rl::dilate (InputArray rlSrc, OutputArray rlDest, InputArray rlKernel, Point anchor=Point(0, 0)) |
| | 通过使用特定的结构元素来膨胀行程长度编码的二值图像。
|
| |
| void | cv::ximgproc::rl::erode (InputArray rlSrc, OutputArray rlDest, InputArray rlKernel, bool bBoundaryOn=true, Point anchor=Point(0, 0)) |
| | 通过使用特定的结构元素来腐蚀行程长度编码的二值图像。
|
| |
| cv::Mat | cv::ximgproc::rl::getStructuringElement (int shape, Size ksize) |
| | 返回指定大小和形状的行程长度编码结构元素。
|
| |
| bool | cv::ximgproc::rl::isRLMorphologyPossible (InputArray rlStructuringElement) |
| | 检查自定义结构元素是否可以用于行程长度形态学运算。(它必须由每行单个行程的连续数组组成)
|
| |
| void | cv::ximgproc::rl::morphologyEx (InputArray rlSrc, OutputArray rlDest, int op, InputArray rlKernel, bool bBoundaryOnForErosion=true, Point anchor=Point(0, 0)) |
| | 将形态学运算应用于行程长度编码的二值图像。
|
| |
| void | cv::ximgproc::rl::paint (InputOutputArray image, InputArray rlSrc, const cv::Scalar &value) |
| | 将行程长度编码的二值图像绘制到图像中。
|
| |
| void | cv::ximgproc::rl::threshold (InputArray src, OutputArray rlDest, double thresh, int type) |
| | 对每个数组元素应用固定级别的阈值。
|
| |