[mmSTRING] [Up] [mmMaxTree] Data Types

mmCoord
Image pixel coordinates

Description

The pixel coordinates data type is an int32 vector of up to three values depending on the image dimensionality: 1D: [column]; 2D: [row,column]; 3D: [depth,row,column]. The top-left pixel of a 2D image is at the coordinates [0,0]. The center pixel of a structuring element is at coordinates [0,0] increasing from left to right and top to down.

Examples

In the example below, a one pixel structuring element centered at the origin [0,0] is translated one row down and two columns to the left:

b = mmsetrans(mmbinary([1]),[1,-2])
print mmseshow(b)
[[False False False False False]
 [False False False False False]
 [ True False False False False]]

See also

mmSE Toolbox structuring element type
mmsetrans Translate a structuring element
[mmSTRING] [Up] [mmMaxTree]