|
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) |
| 对每个数组元素应用固定阈值。
|
|