Click or drag to resize

Cv2Stylization Method

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:  OpenCvSharp
Assembly:  OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax
public static void Stylization(
	InputArray src,
	OutputArray dst,
	float sigmaS = 60f,
	float sigmaR = 0.45f
)

Parameters

src
Type: OpenCvSharpInputArray
Input 8-bit 3-channel image.
dst
Type: OpenCvSharpOutputArray
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