Table of Contents

Enum SacModelType

Namespace
OpenCvSharp
Assembly
OpenCvSharp.dll

Type of the sample consensus model used by SACSegmentation.

public enum SacModelType

Fields

SAC_MODEL_PLANE = 0

The 3D PLANE model coefficients in list [a, b, c, d], corresponding to the coefficients of equation ax + by + cz + d = 0.

SAC_MODEL_SPHERE = 1

The 3D SPHERE model coefficients in list [center_x, center_y, center_z, radius], corresponding to the coefficients of equation (x - center_x)^2 + (y - center_y)^2 + (z - center_z)^2 = radius^2.