MAN page from Mandrake Other XITE-3.3-3.i386.rpm
CROSSSECTION
Section: C Library Functions (3)
Updated: 16 Mar 1998
Index
NAME
crossSection, crossSectionBand, colMaxArrBand, rowMaxArrBand,colMinArrBand, rowMinArrBand, rowBand, columnBand, colMaxArr,rowMaxArr, colMinArr, rowMinArr, row, column - Horizontal andvertical cross-sections, row or column of BIFF band
SYNTAX
#include <
xite/arithmetic.h>
int colMaxArrBand( IBAND band,
double** vector, long* size, double* min,
double* max );
int rowMaxArrBand( IBAND band,,
double** vector, long* size, double* min,
double* max );
int colMinArrBand( IBAND band,
double** vector, long* size, double* min,
double* max );
int rowMinArrBand( IBAND band,
double** vector, long* size, double* min,
double* max );
int columnBand( IBAND band, int col,
double** vector, long* size, double* min,
double* max );
int rowBand( IBAND band, int rowno,
double** vector, long* size, double* min,
double* max );
int colMaxArr( IMAGE img, int bandno,
double** vector, long* size, double* min,
double* max );
int rowMaxArr( IMAGE img, int bandno,
double** vector, long* size, double* min,
double* max );
int colMinArr( IMAGE img, int bandno,
double** vector, long* size, double* min,
double* max );
int rowMinArr( IMAGE img, int bandno,
double** vector, long* size, double* min,
double* max );
int column( IMAGE img, int bandno, int col,
double** vector, long* size, double* min,
double* max );
int row( IMAGE img, int bandno, int rowno,
double** vector, long* size, double* min,
double* max );
DESCRIPTION
colMaxArrBandfinds the horizontal cross-section of
band,based on column maxima. The cross-section vector/array isreturned in a vector which has
sizeelements and peakvalues
minand
max.columnBandfinds column number colfrom band.Theremaining parameters have the same meaning as forcolMaxArrBand.
The image versions of these functions behave like the bandversions, except that they operate on band number bandnoin image img.
The image versions of these functions are macros callingthe band versions. The image versions are retained forcompatibility with previous XITE versions.
All pixel types are accepted. If a band is of a complextype, absolute values are returned.
RETURN VALUE
0 => OK
1 => Band reference is NULL
2 => Illegal row or column number (for 'column' and
'row')
3 => Illegal pixeltype (for 'column' and 'row')
SEE ALSO
vectorPeak(3),
crossSection(1),
profile(3)
AUTHOR
Svein Bøe, BLAB, Ifi, UiO
Index
- NAME
- SYNTAX
- DESCRIPTION
- RETURN VALUE
- SEE ALSO
- AUTHOR
This document was created byman2html,using the manual pages.