ITK/DocumentationGraphics: Difference between revisions
From KitwarePublic
< ITK
Jump to navigationJump to search
Daviddoria (talk | contribs) No edit summary |
Daviddoria (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
Decided Images | |||
{| class="wikitable sortable" border="1" cellpadding="5" cellspacing="0" | {| class="wikitable sortable" border="1" cellpadding="5" cellspacing="0" | ||
|- | |- | ||
Line 4: | Line 5: | ||
! style="width: 70%;" scope="col" | Image description | ! style="width: 70%;" scope="col" | Image description | ||
|- | |- | ||
| | |MaskImageFilter || Input image, mask, output image. | ||
|- | |- | ||
| | |AddImageFilter || Two images with numbers in their pixels. The output image is the sum. | ||
|- | |- | ||
| | |AbsImageFilter || An image with +/- numbers in its pixels. The output image is the abs(number). | ||
|- | |- | ||
|ProjectionImageFilter || Squashing a 2D image into a horizontal 1D image and showing the pixel values were added down the columns. | |ProjectionImageFilter || Squashing a 2D image into a horizontal 1D image and showing the pixel values were added down the columns. | ||
|- | |- | ||
| | |itkRescaleIntensityImageFilter || Input/output "number line". Draw a mapping between the low values and the high values of the input/output ranges. | ||
|} | |||
Work in Progress | |||
{| class="wikitable sortable" border="1" cellpadding="5" cellspacing="0" | |||
|- | |||
! style="width: 30%;" scope="col" | Class | |||
! style="width: 70%;" scope="col" | Image description | |||
|- | |||
|FloodFilledFunctionConditionalConstIterator || Numbered pixels indicating the order of the traversal. (Need to look up how this is done) | |||
|- | |- | ||
| | |LabelMapToImageFilter|| An image of an image grid with numbers in the pixels. A corresponding image of the grayscale image that was created from these numbers/labels. Is this correct? | ||
|- | |- | ||
| | |NeighborhoodIterator || Some of this may be in the UserGuide already? | ||
|- | |- | ||
|itk::Image || An ITK image with with its corresponding properties and the way it is represented and treated in the ITK. | |itk::Image || An ITK image with with its corresponding properties and the way it is represented and treated in the ITK. (A good diagram of this is in the user guide) | ||
|- | |- | ||
|itk::RGBPixel || ITK RGB pixel type and the way it is represented. | |itk::RGBPixel || ITK RGB pixel type and the way it is represented. | ||
Line 24: | Line 35: | ||
|itk::Vector || ITK vector pixel type and the way it is represented. | |itk::Vector || ITK vector pixel type and the way it is represented. | ||
|- | |- | ||
|itk::PointSet || Set of points in an itk::Image. | |itk::PointSet || Set of points in an itk::Image. (Is this in an itk::Image??) | ||
|- | |- | ||
|itk:: | |itk::Mesh || Set of points on a grid in the itk::Image. (Is this in an itk::Image??) | ||
|- | |- | ||
| | |itk::SpatialObject || An object with different shapes used to do object manipulations. (This is an abstract class, right?) | ||
|- | |- | ||
| | |Geometrical Transformations || The way a pixel in one image is transformed to another location. Which classes? | ||
|- | |- | ||
|itkResampleImageFilter || Resampling with a transformation, interpolator and other components. | |itkResampleImageFilter || Resampling with a transformation, interpolator and other components. |
Revision as of 01:58, 5 April 2011
Decided Images
Class | Image description |
---|---|
MaskImageFilter | Input image, mask, output image. |
AddImageFilter | Two images with numbers in their pixels. The output image is the sum. |
AbsImageFilter | An image with +/- numbers in its pixels. The output image is the abs(number). |
ProjectionImageFilter | Squashing a 2D image into a horizontal 1D image and showing the pixel values were added down the columns. |
itkRescaleIntensityImageFilter | Input/output "number line". Draw a mapping between the low values and the high values of the input/output ranges. |
Work in Progress
Class | Image description |
---|---|
FloodFilledFunctionConditionalConstIterator | Numbered pixels indicating the order of the traversal. (Need to look up how this is done) |
LabelMapToImageFilter | An image of an image grid with numbers in the pixels. A corresponding image of the grayscale image that was created from these numbers/labels. Is this correct? |
NeighborhoodIterator | Some of this may be in the UserGuide already? |
itk::Image | An ITK image with with its corresponding properties and the way it is represented and treated in the ITK. (A good diagram of this is in the user guide) |
itk::RGBPixel | ITK RGB pixel type and the way it is represented. |
itk::Vector | ITK vector pixel type and the way it is represented. |
itk::PointSet | Set of points in an itk::Image. (Is this in an itk::Image??) |
itk::Mesh | Set of points on a grid in the itk::Image. (Is this in an itk::Image??) |
itk::SpatialObject | An object with different shapes used to do object manipulations. (This is an abstract class, right?) |
Geometrical Transformations | The way a pixel in one image is transformed to another location. Which classes? |
itkResampleImageFilter | Resampling with a transformation, interpolator and other components. |
itk::ImageToImageMetric | Similarity between two images based on attributes like intensity or image statistics. |
itk::Optimizer | ITK optimizers. Using a search pattern in the search space to find an optimal value. |