OpenCV 4.12.0
開源計算機視覺
載入中...
搜尋中...
無匹配項
cuda.hpp 檔案參考
cuda.hpp 的包含依賴關係圖

名稱空間

名稱空間  cv
 
名稱空間  cv::cuda
 

函式

void cv::cuda::fastNlMeansDenoising (const GpuMat &src, GpuMat &dst, float h, int search_window=21, int block_size=7, Stream &stream=Stream::Null())
 
void cv::cuda::fastNlMeansDenoising (InputArray src, OutputArray dst, float h, int search_window=21, int block_size=7, Stream &stream=Stream::Null())
 使用非區域性均值去噪演算法執行影像去噪 http://www.ipol.im/pub/algo/bcm_non_local_means_denoising,並進行了一些計算最佳化。 噪聲預計為高斯白噪聲。
 
void cv::cuda::fastNlMeansDenoisingColored (const GpuMat &src, GpuMat &dst, float h_luminance, float photo_render, int search_window=21, int block_size=7, Stream &stream=Stream::Null())
 
void cv::cuda::fastNlMeansDenoisingColored (InputArray src, OutputArray dst, float h_luminance, float photo_render, int search_window=21, int block_size=7, Stream &stream=Stream::Null())
 彩色影像的 fastNlMeansDenoising 函式的修改版本。
 
void cv::cuda::nonLocalMeans (const GpuMat &src, GpuMat &dst, float h, int search_window=21, int block_size=7, int borderMode=BORDER_DEFAULT, Stream &stream=Stream::Null())
 
void cv::cuda::nonLocalMeans (InputArray src, OutputArray dst, float h, int search_window=21, int block_size=7, int borderMode=BORDER_DEFAULT, Stream &stream=Stream::Null())
 執行純非區域性均值去噪,沒有任何簡化,因此速度不快。