public class ImageFeaturePoints extends java.lang.Object implements com.esri.arcgis.interop.RemoteObjRef, IImageFeaturePoints
Description 'The Image Feature Point collection class.' Generator Options: PromptForTypeLibraries = False ClashPrefix = esri_ LowerCaseMemberNames = True IDispatchOnly = False RetryOnReject = False AwtForOcxs = True ArraysAsObjects = False DontRenameSameMethods = False ImplementConflictingInterfaces = True ReuseMethods = True RenameConflictingInterfaceMethods = True GenBeanInfo = True GenerateJavadoc =
IID, IID3fd7cb64_f18f_4380_b128_135206147e75, xxDummy
Constructor and Description |
---|
ImageFeaturePoints()
Constructs a ImageFeaturePoints using ArcGIS Engine.
|
ImageFeaturePoints(java.lang.Object obj)
Deprecated.
As of ArcGIS 9.2, replaced by normal Java casts.
ImageFeaturePoints theImageFeaturePoints = (ImageFeaturePoints) obj; |
Modifier and Type | Method and Description |
---|---|
void |
add(IImageFeaturePoint pFeaturePoint)
Adds a image feature point.
|
boolean |
equals(java.lang.Object o)
Compare this object with another
|
IPnt |
getCellSize()
The cell size at which feature points are extracted.
|
static java.lang.String |
getClsid()
getClsid.
|
int |
getCount()
The image feature point count.
|
IImageFeaturePoint |
getElement(int index)
The image feature point at the specified position.
|
IEnvelope |
getExtent()
The extent within which feature points are extracted.
|
int |
getImageID()
The feature points' image ID.
|
com.esri.arcgis.interop.Dispatch |
getJintegraDispatch()
Gets a reference to a com.esri.arcgis.interop.Dispatch which can be used to access the COM object that support for this
interface indicates the implementing class references.
|
int |
hashCode()
the hashcode for this object
|
void |
insert(int index,
IImageFeaturePoint pFeaturePoint)
Adds a image feature point at the specified position.
|
void |
mapToPixel(IImageFeaturePoint pFeaturePoint,
double[] column,
double[] row)
Converts a feature point's location from map (x, y) to pixel (colum, row).
|
void |
pixelToMap(double column,
double row,
IImageFeaturePoint pFeaturePoint)
Converts a feature point's location from pixel (colum, row) to map (x, y).
|
void |
project(ISpatialReference pSpatialReference)
Projects image feature points to a given spatial reference.
|
void |
release()
Release this COM object reference
|
void |
remove(int index)
Removes the image feature point at the specified position.
|
void |
removeAll()
Removes all image feature points.
|
void |
setCellSize(IPnt ppCellsize)
The cell size at which feature points are extracted.
|
void |
setExtent(IEnvelope ppExtent)
The extent within which feature points are extracted.
|
void |
setImageID(int pImageID)
The feature points' image ID.
|
public ImageFeaturePoints() throws java.io.IOException, java.net.UnknownHostException
java.io.IOException
- if there are interop problemsjava.net.UnknownHostException
- if there are interop problemspublic ImageFeaturePoints(java.lang.Object obj) throws java.io.IOException
ImageFeaturePoints theImageFeaturePoints = (ImageFeaturePoints) obj;
obj
to ImageFeaturePoints
.obj
- an object returned from ArcGIS Engine or Serverjava.io.IOException
- if there are interop problemspublic static java.lang.String getClsid()
public boolean equals(java.lang.Object o)
equals
in class java.lang.Object
public int hashCode()
hashCode
in class java.lang.Object
public com.esri.arcgis.interop.Dispatch getJintegraDispatch()
getJintegraDispatch
in interface com.esri.arcgis.interop.RemoteObjRef
public void release()
release
in interface com.esri.arcgis.interop.RemoteObjRef
public int getCount() throws java.io.IOException, AutomationException
getCount
in interface IImageFeaturePoints
java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.public IImageFeaturePoint getElement(int index) throws java.io.IOException, AutomationException
getElement
in interface IImageFeaturePoints
index
- The index (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.public void remove(int index) throws java.io.IOException, AutomationException
remove
in interface IImageFeaturePoints
index
- The index (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.public void removeAll() throws java.io.IOException, AutomationException
removeAll
in interface IImageFeaturePoints
java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.public void add(IImageFeaturePoint pFeaturePoint) throws java.io.IOException, AutomationException
add
in interface IImageFeaturePoints
pFeaturePoint
- A reference to a com.esri.arcgis.datasourcesraster.IImageFeaturePoint (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.public void insert(int index, IImageFeaturePoint pFeaturePoint) throws java.io.IOException, AutomationException
insert
in interface IImageFeaturePoints
index
- The index (in)pFeaturePoint
- A reference to a com.esri.arcgis.datasourcesraster.IImageFeaturePoint (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.public int getImageID() throws java.io.IOException, AutomationException
getImageID
in interface IImageFeaturePoints
java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.public void setImageID(int pImageID) throws java.io.IOException, AutomationException
setImageID
in interface IImageFeaturePoints
pImageID
- The pImageID (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.public IEnvelope getExtent() throws java.io.IOException, AutomationException
getExtent
in interface IImageFeaturePoints
java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.public void setExtent(IEnvelope ppExtent) throws java.io.IOException, AutomationException
setExtent
in interface IImageFeaturePoints
ppExtent
- A reference to a com.esri.arcgis.geometry.IEnvelope (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.public IPnt getCellSize() throws java.io.IOException, AutomationException
getCellSize
in interface IImageFeaturePoints
java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.public void setCellSize(IPnt ppCellsize) throws java.io.IOException, AutomationException
setCellSize
in interface IImageFeaturePoints
ppCellsize
- A reference to a com.esri.arcgis.geodatabase.IPnt (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.public void mapToPixel(IImageFeaturePoint pFeaturePoint, double[] column, double[] row) throws java.io.IOException, AutomationException
mapToPixel
in interface IImageFeaturePoints
pFeaturePoint
- A reference to a com.esri.arcgis.datasourcesraster.IImageFeaturePoint (in)column
- The column (out: use single element array)row
- The row (out: use single element array)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.public void pixelToMap(double column, double row, IImageFeaturePoint pFeaturePoint) throws java.io.IOException, AutomationException
pixelToMap
in interface IImageFeaturePoints
column
- The column (in)row
- The row (in)pFeaturePoint
- A reference to a com.esri.arcgis.datasourcesraster.IImageFeaturePoint (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.public void project(ISpatialReference pSpatialReference) throws java.io.IOException, AutomationException
project
in interface IImageFeaturePoints
pSpatialReference
- A reference to a com.esri.arcgis.geometry.ISpatialReference (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.