Search Results for

    Show / Hide Table of Contents

    Struct TermCriteria

    Represents a termination criteria for iterative algorithms.

    Namespace: OpenCV.Net
    Assembly: OpenCV.Net.dll
    Syntax
    public struct TermCriteria

    Constructors

    | Improve this Doc View Source

    TermCriteria(TermCriteriaType, Int32, Double)

    Initializes a new instance of the TermCriteria structure with the specified termination mode, maximum number of iterations and required accuracy.

    Declaration
    public TermCriteria(TermCriteriaType type, int maxIter, double epsilon)
    Parameters
    Type Name Description
    TermCriteriaType type

    The particular combination of criteria to use.

    Int32 maxIter

    The maximum number of iterations.

    Double epsilon

    The minimum required accuracy.

    Fields

    | Improve this Doc View Source

    Epsilon

    The minimum required accuracy.

    Declaration
    public double Epsilon
    Field Value
    Type Description
    Double
    | Improve this Doc View Source

    MaxIter

    The maximum number of iterations.

    Declaration
    public int MaxIter
    Field Value
    Type Description
    Int32
    | Improve this Doc View Source

    Type

    Specifies the particular combination of criteria to use.

    Declaration
    public TermCriteriaType Type
    Field Value
    Type Description
    TermCriteriaType
    • Improve this Doc
    • View Source
    In This Article
    Back to top Generated by DocFX