Click or drag to resize

CvXPhotoOilPainting Method

oilPainting. See the book @cite Holzmann1988 for details.

Namespace:  OpenCvSharp.XPhoto
Assembly:  OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax
public static void OilPainting(
	InputArray src,
	OutputArray dst,
	int size,
	int dynRatio,
	ColorConversionCodes code = ColorConversionCodes.BGR2GRAY
)

Parameters

src
Type: OpenCvSharpInputArray
Input three-channel or one channel image (either CV_8UC3 or CV_8UC1)
dst
Type: OpenCvSharpOutputArray
Output image of the same size and type as src.
size
Type: SystemInt32
neighbouring size is 2-size+1
dynRatio
Type: SystemInt32
image is divided by dynRatio before histogram processing
code (Optional)
Type: OpenCvSharpColorConversionCodes
color space conversion code(see ColorConversionCodes). Histogram will used only first plane
See Also