Click or drag to resize

XPhotoInvokeOilPainting Method

http://www.emgu.com
Oil Painting effect

Namespace:  Emgu.CV.XPhoto
Assembly:  Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntax
public static void OilPainting(
	IInputArray src,
	IOutputArray dst,
	int size,
	int dynRatio,
	ColorConversion code = ColorConversion.Bgr2Gray
)

Parameters

src
Type: Emgu.CVIInputArray
Input three-channel or one channel image (either CV_8UC3 or CV_8UC1)
dst
Type: Emgu.CVIOutputArray
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: Emgu.CV.CvEnumColorConversion
Color space conversion code(see ColorConversionCodes). Histogram will used only first plane
See Also