OpenCV 4.11.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())
 执行纯非局部均值降噪,没有任何简化,因此速度不快。