|
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 (常量 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()) |
| 执行非局部均值去噪,不进行任何简化,因而速度较慢。
|
|