IImageMatchPoints Interface

Provides access to the properties of a list of image match points.

Members

Name Description
Method Add Adds a image match point.
Read-only property Count The image match point count.
Read-only property Element The image match point at the specified position.
Read/write property FromImageID The match points' From image ID.
Method Insert Adds a image match point at the specified position.
Method Remove Removes the image match point at the specified position.
Method RemoveAll Removes all image match points.
Read/write property ToImageID The match points' To image ID.

IImageMatchPoints.Add Method

Adds a image match point.

Public Sub Add ( _
    ByVal pMatchPoint As IImageMatchPoint _
)
public void Add (
    IImageMatchPoint pMatchPoint
);

IImageMatchPoints.Count Property

The image match point count.

Public ReadOnly Property Count As Integer
public int Count {get;}

IImageMatchPoints.Element Property

The image match point at the specified position.

Public Function get_Element ( _
    ByVal Index As Integer _
) As IImageMatchPoint
public IImageMatchPoint get_Element (
    int Index
);

IImageMatchPoints.FromImageID Property

The match points' From image ID.

Public Property FromImageID As Integer
public int FromImageID {get; set;}

IImageMatchPoints.Insert Method

Adds a image match point at the specified position.

Public Sub Insert ( _
    ByVal Index As Integer, _
    ByVal pMatchPoint As IImageMatchPoint _
)
public void Insert (
    int Index,
    IImageMatchPoint pMatchPoint
);

IImageMatchPoints.Remove Method

Removes the image match point at the specified position.

Public Sub Remove ( _
    ByVal Index As Integer _
)
public void Remove (
    int Index
);

IImageMatchPoints.RemoveAll Method

Removes all image match points.

Public Sub RemoveAll ( _
)
public void RemoveAll (
);

IImageMatchPoints.ToImageID Property

The match points' To image ID.

Public Property ToImageID As Integer
public int ToImageID {get; set;}

Classes that implement IImageMatchPoints

Classes Description
ImageMatchPoints The Image Match Point collection class.

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.