![]() |
OpenCV 4.12.0
開源計算機視覺
|
函式 | |
| void | createRLEImage (const std::vector< cv::Point3i > &runs, OutputArray res, Size size=Size(0, 0)) |
| 從行程向量(列開始,列結束,行)建立行程編碼影像 | |
| void | dilate (InputArray rlSrc, OutputArray rlDest, InputArray rlKernel, Point anchor=Point(0, 0)) |
| 透過使用特定的結構元素來膨脹行程編碼的二值影像。 | |
| void | erode (InputArray rlSrc, OutputArray rlDest, InputArray rlKernel, bool bBoundaryOn=true, Point anchor=Point(0, 0)) |
| 透過使用特定的結構元素來腐蝕行程編碼的二值影像。 | |
| cv::Mat | getStructuringElement (int shape, Size ksize) |
| 返回指定大小和形狀的行程長度編碼結構元素。 | |
| bool | isRLMorphologyPossible (InputArray rlStructuringElement) |
| 檢查自定義結構元素是否可以用於行程長度形態學操作。(它必須由每行單個行程的連續陣列組成) | |
| void | morphologyEx (InputArray rlSrc, OutputArray rlDest, int op, InputArray rlKernel, bool bBoundaryOnForErosion=true, Point anchor=Point(0, 0)) |
| 將形態學操作應用於行程編碼的二值影像。 | |
| void | paint (InputOutputArray image, InputArray rlSrc, const cv::Scalar &value) |
| 將行程長度編碼的二值影像繪製到影像中。 | |
| void | threshold (InputArray src, OutputArray rlDest, double thresh, int type) |
| 對每個陣列元素應用固定級別的閾值。 | |