Provides access to members that control an image tie point collection.
Members
Name | Description | |
---|---|---|
AddPoints | Adds a list of match points. | |
Compute | Computes tiepoints. | |
Init | Initializes a tie point collection with a tie point table. | |
LoadFrom | Loads tie points from a control point table. | |
Resolution | The tie point resolution. | |
SaveTo | Saves all tie points to a given tie point table. | |
Thin | Thins/removes extra tie points using a nCols*nRows grid with a given density. |
ITiePointOperation2.LoadFrom Method
Loads tie points from a control point table.
Public Sub LoadFrom ( _
ByVal pPointTable As ITable, _
ByVal pQueryFilter As IQueryFilter, _
ByVal zFieldName As String, _
ByVal TagFieldName As String, _
ByVal pDEM As IRaster _
)
public void LoadFrom (
ITable pPointTable,
IQueryFilter pQueryFilter,
string zFieldName,
string TagFieldName,
IRaster pDEM
);
ITiePointOperation2.Resolution Property
The tie point resolution.
Public Property Resolution As Double
public double Resolution {get; set;}
ITiePointOperation2.Thin Method
Thins/removes extra tie points using a nCols*nRows grid with a given density.
Public Sub Thin ( _
ByVal pExtent As IEnvelope, _
ByVal nCols As Integer, _
ByVal nRows As Integer, _
ByVal density As Integer _
)
public void Thin (
IEnvelope pExtent,
int nCols,
int nRows,
int density
);
Inherited Interfaces
Interfaces | Description |
---|---|
ITiePointOperation | Provides access to members that control an image tie point operation. |
Classes that implement ITiePointOperation2
Classes | Description |
---|---|
TiePointCollection | The Image Tie point collection class. |