Transform img: Difference between revisions
Jump to navigation
Jump to search
imported>Scott |
imported>Scott No edit summary |
||
Line 22: | Line 22: | ||
===See Also=== | ===See Also=== | ||
[[cropimage]], [[flipud_img]], [[rot90_img]] | [[cropimage]], [[flipud_img]], [[rot90_img]], [[transpose_img]] |
Latest revision as of 09:43, 16 October 2009
Purpose
Flips or rotates a DataSet image.
Synopsis
- out = transform_img(in,action)
Description
TRANSFORM_IMG is a generic image transformation function which applies any one of several standard image transformation operations to the image-mode of the DataSet.
Inputs
- in = image type DataSet object.
- action = which is one of the following strings:
- 'flipud' : mirror the image in the vertical direction.
- 'fliplr' : mirror the image in the horizontal direction.
- '90' : rotate 90 degrees in a counter-clockwise direction.
- '-90' : rotate 90 degrees in a clockwise direction.
- '180' : rotate 180 degrees.