Search Results for

    Show / Hide Table of Contents

    Class Contour

    Represents a polygonal contour.

    Inheritance
    Object
    CVHandle
    Seq
    Contour
    Inherited Members
    Seq.Storage
    Seq.Kind
    Seq.ElementSize
    Seq.Count
    Seq.HPrev
    Seq.HNext
    Seq.VPrev
    Seq.VNext
    Seq.SetBlockSize(Int32)
    Seq.Push()
    Seq.Push<TElement>(TElement[])
    Seq.PushFront()
    Seq.PushFront<TElement>(TElement[])
    Seq.Pop()
    Seq.Pop<TElement>(TElement)
    Seq.Pop<TElement>(TElement[])
    Seq.PopFront()
    Seq.PopFront<TElement>(TElement)
    Seq.PopFront<TElement>(TElement[])
    Seq.Insert<TElement>(Int32, TElement)
    Seq.Insert(Int32, Seq)
    Seq.Insert(Int32, Arr)
    Seq.Remove(Int32)
    Seq.Remove(SeqSlice)
    Seq.Clear()
    Seq.GetElement(Int32)
    Seq.GetElementIndex(IntPtr)
    Seq.CopyTo<TElement>(TElement[])
    Seq.CopyTo<TElement>(TElement[], SeqSlice)
    Seq.ToArray<TElement>()
    Seq.Slice(SeqSlice, MemStorage, Boolean)
    Seq.Clone(MemStorage)
    Seq.Sort<TElement>(Comparison<TElement>)
    Seq.Search<TElement>(TElement, Comparison<TElement>, Boolean)
    Seq.Invert()
    Seq.Partition<TElement>(MemStorage, Seq, Func<TElement, TElement, Boolean>)
    Seq.ReleaseHandle()
    Namespace: OpenCV.Net
    Assembly: OpenCV.Net.dll
    Syntax
    public class Contour : Seq

    Properties

    | Improve this Doc View Source

    HeaderSize

    Gets the size of the Contour header, in bytes.

    Declaration
    public static int HeaderSize { get; }
    Property Value
    Type Description
    Int32
    | Improve this Doc View Source

    Rect

    Gets the bounding rectangle of the contour.

    Declaration
    public Rect Rect { get; }
    Property Value
    Type Description
    Rect

    Methods

    | Improve this Doc View Source

    FromSeq(Seq)

    Initializes a new Contour instance from a compatible Seq.

    Declaration
    public static Contour FromSeq(Seq seq)
    Parameters
    Type Name Description
    Seq seq

    A Seq instance representing a polygonal contour.

    Returns
    Type Description
    Contour

    A new Contour header for the specified seq.

    • Improve this Doc
    • View Source
    In This Article
    Back to top Generated by DocFX