NDF_BLOCK

Obtain an NDF section containing a block of adjacent pixels

Description:

The routine returns an identifier for an NDF section describing a "block" of adjacent pixels selected from an initial NDF. The routine divides the original NDF logically into a series of such blocks, each of which does not exceed a specified maximum number of pixels in each dimension. The routines IBLOCK argument allows one of these blocks to be selected; an NDF section for it is then returned.

Invocation

CALL NDF_BLOCK( INDF1, NDIM, MXDIM, IBLOCK, INDF2, STATUS )

Arguments

INDF1 = INTEGER (Given)
Identifier for the initial NDF.
NDIM = INTEGER (Given)
Number of maximum dimension sizes.
MXDIM( NDIM ) = INTEGER (Given)
Array specifying the maximum size of a block in pixels along each dimension.
IBLOCK = INTEGER (Given)
Number of the block required (the first block is numbered 1).
INDF2 = INTEGER (Returned)
Identifier for an NDF section describing the block.
STATUS = INTEGER (Given and Returned)
The global status.

Notes: