Namespaces | Enumerations | Functions
photo.hpp File Reference

Go to the source code of this file.

Namespaces

 cv
 Namespace where all the C++ OpenCV functionality resides.
 

Enumerations

enum  { cv::INPAINT_NS =CV_INPAINT_NS, cv::INPAINT_TELEA =CV_INPAINT_TELEA }
 the inpainting algorithm More...
 

Functions

CV_EXPORTS_W void cv::inpaint (InputArray src, InputArray inpaintMask, OutputArray dst, double inpaintRadius, int flags)
 restores the damaged image areas using one of the available intpainting algorithms More...
 
CV_EXPORTS_W void cv::fastNlMeansDenoising (InputArray src, OutputArray dst, float h=3, int templateWindowSize=7, int searchWindowSize=21)
 
CV_EXPORTS_W void cv::fastNlMeansDenoisingColored (InputArray src, OutputArray dst, float h=3, float hColor=3, int templateWindowSize=7, int searchWindowSize=21)
 
CV_EXPORTS_W void cv::fastNlMeansDenoisingMulti (InputArrayOfArrays srcImgs, OutputArray dst, int imgToDenoiseIndex, int temporalWindowSize, float h=3, int templateWindowSize=7, int searchWindowSize=21)
 
CV_EXPORTS_W void cv::fastNlMeansDenoisingColoredMulti (InputArrayOfArrays srcImgs, OutputArray dst, int imgToDenoiseIndex, int temporalWindowSize, float h=3, float hColor=3, int templateWindowSize=7, int searchWindowSize=21)