Click or drag to resize
CvInvokeStylization Method
http://www.emgu.com
Stylization aims to produce digital imagery with a wide variety of effects not focused on photorealism. Edge-aware filters are ideal for stylization, as they can abstract regions of low contrast while preserving, or enhancing, high-contrast features.

Namespace: Emgu.CV
Assembly: Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.2.0.2682 (3.2.0.2682)
Syntax
public static void Stylization(
	IInputArray src,
	IOutputArray dst,
	float sigmaS = 60f,
	float sigmaR = 0.45f
)

Parameters

src
Type: Emgu.CVIInputArray
Input 8-bit 3-channel image.
dst
Type: Emgu.CVIOutputArray
Output image with the same size and type as src.
sigmaS (Optional)
Type: SystemSingle
Range between 0 to 200.
sigmaR (Optional)
Type: SystemSingle
Range between 0 to 1.
See Also