|
| 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) |
| | 對每個陣列元素應用固定級別的閾值。
|
| |