OpenCV 4.12.0
開源計算機視覺
載入中...
搜尋中...
無匹配項
run_length_morphology.hpp 檔案參考
#include <opencv2/core.hpp>
run_length_morphology.hpp 的包含依賴關係圖
此圖顯示了直接或間接包含此檔案的檔案

名稱空間

名稱空間  cv
 
名稱空間  virtual cv::ximgproc::FastLineDetector::~FastLineDetector
 
名稱空間  cv::ximgproc::rl
 

函式

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