Python cv2.fastNlMeansDenoisingColored() Examples

The following are 1 code examples of cv2.fastNlMeansDenoisingColored(). You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may also want to check out all available functions/classes of the module cv2 , or try the search function .
Example #1
Source File: squeeze.py    From EvadeML-Zoo with MIT License 5 votes vote down vote up
def non_local_means_color_py(imgs, search_window, block_size, photo_render):
    import cv2
    ret_imgs = opencv_wrapper(imgs, cv2.fastNlMeansDenoisingColored, [None,photo_render,photo_render,block_size,search_window])
    return ret_imgs