IRAF help page for package images, program magnify

from NOAO magnify -- interpolate two dimensional imagesUSAGE PARAMETERSDESCRIPTIONEXAMPLESSEE ALSO

magnify -- interpolate two dimensional images


USAGE

magnify input output xmag ymag

PARAMETERS

PARAMETERS

input

List of one or two dimensional images to be magnified. Image sections are allowed. Images with an axis containing only one pixel are not magnified.

output

List of output image names. If the output image name is the same as the input image name then the magnified image replaces the input image.

xmag, ymag

The magnification factors for the first and second image dimensions respectively. The magnifications need not be integers. Magnifications greater than 1 increase the size of the image while negative magnifications less than -1 decrease the size by the specified factor. Magnifications between -1 and 1 are interpreted as reciprocal magnifications.

x1 = INDEF, x2 = INDEF

The starting and ending coordinates in x in the input image which become the first and last pixel in x in the magnified image. The values need not be integers. If indefinite the values default to the first and last pixel in x of the input image; i.e. a value of 1 and nx.

y1 = INDEF, y2 = INDEF

The starting and ending coordinates in y in the input image which become the first and last pixel in y in the magnified image. The values need not be integers. If indefinite the values default to the first and last pixel in y of the input image; i.e. a value of 1 and ny.

dx = INDEF, dy = INDEF

The intervals between the output pixels in terms of the input image. The values need not be integers. If these values are specified they override the magnification factors.

interpolation = linear

Two dimensional interpolation type to be used. The choices are "nearest" neighbor, "linear" bilinear, "poly3" bicubic polynomial, "poly5" biquintic polynomial, and "spline3" bicubic spline.

boundary = constant

Boundary extension type for references to pixels outside the bounds of the input image. The choices are "constant", "nearest" edge, "reflect" back into the image, and "wrap" around to the other side.

constant = 0.

Constant value for constant boundary extension.

fluxconserve = yes

Preserve the total image flux.

logfile = STDOUT

Log file for recording information about the magnification. A null logfile may be used to turn off log information.


DESCRIPTION

The list of input images are expanded or contracted by interpolation to form the output images. The output image names are specified by the output list. The number of output image names must be the same as the number of input images. An output image name may be the same as the corresponding input image in which case the magnified image replaces the input image. The input images must be one or two dimensional and each axis must be of at least length 2 (i.e. there have to be distinct endpoints between which to interpolate).

The magnification factor determines the pixel step size or interval. Positive magnifications are related to the step size as the reciprocal; for example a magnification of 2.5 implies a step size of .4 and a magnification of .2 implies a step size of 5. Negative magnifications are related to the step size as the absolute value; for example a magnification of -2.2 implies a step size of 2.2. This definition frees the user from dealing with reciprocals and irrational numbers. Note that the step size may be specified directly with the parameters dx and dy, in which case the magnification factor is not required.

If fluxconserve = yes, the magnification is approximately flux conserving in that the image values are scaled by the ratio of the output to the input pixel areas; i.e dx * dy.

In the default case with only the magnifications specified the full image is expanded or contracted. By specifying additional parameters the size and origin of the output image may be changed. Only those parameters to be fixed need to be specified and the values of the remaining parameters are either determined from these values or default as indicated in the PARAMETERS section.

The user may select the type of two dimensional interpolation and boundary extension to be used. Note that the image interpolation is performed on the boundary extended input image. Thus, boundary extensions which are discontinuous (constant and wrap) may introduce interpolation errors.


EXAMPLES

1. To expand an image by a factor of 2.5:

cl> magnify imagein imageout 2.5 2.5

2. To subsample the the lines of an image in steps of 3.5:

cl> magnify imagein imageout dx=3.5 dy=1

3. To magnify the central part of an image by 2 into a 11 by 31 image:

	cl> magnify imagein imageout 2 2 x1=25.3 x2=30.3 
	>>> y1=20 y2=35

4. To use a higher order interpolator with wrap around boundary extension:

	cl> magnify imagein imageout 2 2 x1=-10 y1=-10 
	>>> interpolation=spline3 boundary=wrap

It is important to remember that the magnification affects the pixel intervals! This means that the number of pixels in an expanded image is not simply a multiple of the original number. The following example illustrates this point. Begin with an image which is 100 by 10. This means the x coordinates run between 1 and 100 and the y coordinates run between 1 and 10 with a pixel interval of 1.

Let's magnify the x axis by 0.5 and the y axis by 2. The output pixel intervals, in terms of the input pixel intervals, are then 2 and 0.5. This means the output x pixels are at 1, 3, 5, etc. and output y pixels are at 1, 1.5, 2, 2.5, etc., again in terms of the input pixel coordinates. The last output x pixel is then at 99 in the input coordinates and the number of pixels is 50. For the y axis the last output pixel is at 10 in the input coordinates and the number of pixels between 1 and 10 in intervals of 0.5 is 19! Thus, the final image is 50 by 19 and not 50 by 20 which you would get if you multiplied the axis lengths by the magnification factors.

A more complex example is given above in which x1=25.3, x2=30.3, y1=20, and y2=35 with magnification factors of 2. It is important to understand why the output image is 11 by 31 and what the pixel coordinates are in terms of the input pixel coordinates.


SEE ALSO

imshift, blkavg, rotate, imlintran, register, geotran, geomap,


This page automatically generated from the iraf .hlp file. If you would like your local iraf package .hlp files converted into HTML please contact Dave Mills at NOAO.

dmills@noao.edu