public class HistogramSpecification extends java.lang.Object implements com.esri.arcgis.interop.RemoteObjRef, IHistogramSpecification, IStockFrequencyDistributionHistogram, IPixelFilter
Description 'A class for histogram specification.' 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, IID978bbc66_4461_44bc_a068_0572a7f2d828, xxDummy
IID, IIDea83381d_c3a8_4677_931e_62671af63b19, xxDummy
IID, IID90e3de9d_4fff_4575_b833_3ad29a57eeca, xxDummy
Constructor and Description |
---|
HistogramSpecification()
Constructs a HistogramSpecification using ArcGIS Engine.
|
HistogramSpecification(java.lang.Object obj)
Deprecated.
As of ArcGIS 9.2, replaced by normal Java casts.
HistogramSpecification theHistogramSpecification = (HistogramSpecification) obj; |
Modifier and Type | Method and Description |
---|---|
boolean |
equals(java.lang.Object o)
Compare this object with another
|
void |
filter(IPixelBlock pBlock)
Filters a pixel block.
|
void |
getCenterPosition(int[] atColumn,
int[] atRow)
Gets center position of the filter.
|
static java.lang.String |
getClsid()
getClsid.
|
IArray |
getInputHistogram()
The collection of histograms that describe the distribution of input values.
|
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.
|
java.lang.Object |
getLookup(int iBand)
Returns the look-up array for the requested band for remapping pixel values.
|
IRasterHistogram |
getNormalDistribution(int nBins,
double mean,
double stdDev)
Returns a histogram containing a specified number of bins describing a normal/gaussian distribution with a specified mean and standard deviation.
|
void |
getSize(int[] columns,
int[] rows)
Gets dimension of the filter.
|
IArray |
getTargetHistogram()
The collection of target histograms that describe the desired distribution of output values.
|
IRasterHistogram |
getUniformDistribution(int nBins)
Returns a histogram containing a specified number of bins describing a uniform distribution.
|
int |
hashCode()
the hashcode for this object
|
void |
release()
Release this COM object reference
|
void |
setInputHistogramByRef(IArray ppInputHistograms)
The collection of histograms that describe the distribution of input values.
|
void |
setTargetHistogramByRef(IArray ppTargetHistograms)
The collection of target histograms that describe the desired distribution of output values.
|
void |
update()
Recalculates the look-up that maps input values -- having a distribution described by the input histograms -- to output values that have a distribution described by the target histograms.
|
public HistogramSpecification() throws java.io.IOException, java.net.UnknownHostException
java.io.IOException
- if there are interop problemsjava.net.UnknownHostException
- if there are interop problemspublic HistogramSpecification(java.lang.Object obj) throws java.io.IOException
HistogramSpecification theHistogramSpecification = (HistogramSpecification) obj;
obj
to HistogramSpecification
.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 void setInputHistogramByRef(IArray ppInputHistograms) throws java.io.IOException, AutomationException
setInputHistogramByRef
in interface IHistogramSpecification
ppInputHistograms
- A reference to a com.esri.arcgis.system.IArray (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.public IArray getInputHistogram() throws java.io.IOException, AutomationException
getInputHistogram
in interface IHistogramSpecification
java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.public void setTargetHistogramByRef(IArray ppTargetHistograms) throws java.io.IOException, AutomationException
setTargetHistogramByRef
in interface IHistogramSpecification
ppTargetHistograms
- A reference to a com.esri.arcgis.system.IArray (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.public IArray getTargetHistogram() throws java.io.IOException, AutomationException
getTargetHistogram
in interface IHistogramSpecification
java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.public void update() throws java.io.IOException, AutomationException
update
in interface IHistogramSpecification
java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.public java.lang.Object getLookup(int iBand) throws java.io.IOException, AutomationException
getLookup
in interface IHistogramSpecification
iBand
- The iBand (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.public IRasterHistogram getNormalDistribution(int nBins, double mean, double stdDev) throws java.io.IOException, AutomationException
getNormalDistribution
in interface IStockFrequencyDistributionHistogram
nBins
- The nBins (in)mean
- The mean (in)stdDev
- The stdDev (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.public IRasterHistogram getUniformDistribution(int nBins) throws java.io.IOException, AutomationException
getUniformDistribution
in interface IStockFrequencyDistributionHistogram
nBins
- The nBins (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.public void getSize(int[] columns, int[] rows) throws java.io.IOException, AutomationException
getSize
in interface IPixelFilter
columns
- The columns (in/out: use single element array)rows
- The rows (in/out: use single element array)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.public void getCenterPosition(int[] atColumn, int[] atRow) throws java.io.IOException, AutomationException
getCenterPosition
in interface IPixelFilter
atColumn
- The atColumn (in/out: use single element array)atRow
- The atRow (in/out: use single element array)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.public void filter(IPixelBlock pBlock) throws java.io.IOException, AutomationException
filter
in interface IPixelFilter
pBlock
- A reference to a com.esri.arcgis.geodatabase.IPixelBlock (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.