ITK/Examples: Difference between revisions
From KitwarePublic
< ITK
Jump to navigationJump to search
Hjmjohnson (talk | contribs) (Add warning box to top of this page) |
Hjmjohnson (talk | contribs) No edit summary |
||
Line 2: | Line 2: | ||
Recent examples that are up to date with ITK version 5 can be found at [https://itk.org/ITKExamples ITK Examples]}} | Recent examples that are up to date with ITK version 5 can be found at [https://itk.org/ITKExamples ITK Examples]}} | ||
==CMake Techniques== | ==CMake Techniques== |
Revision as of 23:13, 29 May 2019
CMake Techniques
Example Name | ITK Classes Demonstrated | Description |
---|---|---|
Check if a specific module is present | ||
Check for ITK4 |
Visualization
Example Name | ITK Classes Demonstrated | Description |
---|---|---|
Display an image | QuickView |
Simple Operations
Mathematical Operations
Example Name | ITK Classes Demonstrated | Description |
---|---|---|
Create a covariant vector | CovariantVector | This is the object which should be used to represent a mathematical vector. |
Compute the norm of a covariant vector | CovariantVector | In-place and non-inplace norms. |
Matrix | Matrix | |
Matrix inverse | Matrix | |
Mathematical constant pi = 3.14 | Math | |
Dot product (inner product) of two vectors | Vector | |
Amoeba Optimization | AmoebaOptimizer | Optimizing a function using itk::AmoebaOptimizer. |
Levenberg-Marquardt Optimization | LevenbergMarquardtOptimizer | Optimizing a function using itk::LevenbergMarquardtOptimizer. |
Trigonometric Filters
Example Name | ITK Classes Demonstrated | Description |
---|---|---|
Compute the sine of each pixel. | SinImageFilter | |
Compute the arctangent of each pixel. | Atan2ImageFilter |
Image Functions
Point Set
Example Name | ITK Classes Demonstrated | Description |
---|---|---|
Create a PointSet | PointSet | |
Read a PointSet | PointSet | |
Write a PointSet | PointSet | |
Get the bounding box of a PointSet | PointSet |
Input/Output (IO)
Example Name | ITK Classes Demonstrated | Description |
---|---|---|
Read an image file with an unknown number of components | ImageFileReader,VectorImage | |
Convert a C-style array to an itkImage | ImportImageFilter | |
Read an image file without knowing its type before hand | ImageFileReader | Dimensions (information) without reading data |
Write an image | ImageFileWriter | |
Read an image | ImageFileReader | |
Write a TIFF image | TIFFImageIO | This is a general demonstration of how to use a specific writer rather than relying on the ImageFileWriter to choose for you. |
Display an ITK image | ImageToVTKImageFilter | |
Write a transform to a file | TransformFileWriter | |
Read a transform from a file | TransformFileReader | |
Register a non-default transform with the transform factory | TransformFactory | |
Create a 3D volume from a series of 2D images | ImageSeriesReader | Uses NumericSeriesFileNames to generate a list of file names |
DICOM
Example Name | ITK Classes Demonstrated | Description |
---|---|---|
Resample a DICOM series | GDCMImageIO | Resample a DICOM series with user-specified spacing. |
Blob Detection, Labeling, and Properties
Correlation
Image Processing
Vector Images
Example Name | ITK Classes Demonstrated | Description |
---|---|---|
Compute the magnitude of each pixel in a vector image to produce a magnitude image | VectorMagnitudeImageFilter | |
Create a vector image | VectorImage | An image with an ND vector at each pixel |
Create a vector image from a collection of scalar images | ComposeImageFilter | Combine, layer |
View a component of a vector image as if it were a scalar image | VectorImageToImageAdaptor | |
Extract a component/channel of a vector image | VectorIndexSelectionCastImageFilter | This works with VectorImage as well as Image<Vector> |
Translate a vector image | TranslationTransform, VectorResampleImageFilter | |
Join images, stacking their components | JoinImageFilter | concatenate, channels |
Stack scalar images into a VectorImage | ImageToVectorImageFilter | |
NeighborhoodIterator on a VectorImage | VectorImage NeighborhoodIterator | |
Cast a VectorImage to another type of VectorImage | VectorImage |
Iterating Over (Traversing) An Image
Kernels
Image Edges, Gradients, and Derivatives
Smoothing
Morphology
Example Name | ITK Classes Demonstrated | Description |
---|---|---|
Erode a binary image | BinaryErodeImageFilter | |
Dilate a binary image | BinaryDilateImageFilter | |
Prune a binary image | BinaryPruningImageFilter | |
Opening a binary image | BinaryMorphologicalOpeningImageFilter | |
Closing a binary image | BinaryMorphologicalClosingImageFilter | |
Dilate a grayscale image | GrayscaleDilateImageFilter | |
Erode a grayscale image | GrayscaleErodeImageFilter | |
Erode a binary image using a flat (box) structuring element | FlatStructuringElement | |
Generate structuring elements with accurate area | FlatStructuringElement | In itkFlatStructuringElement, setting the foregroundHasAccurateArea flag to true will generate structuring elements with more accurate areas, which can be especially important when morphological operations are intended to remove or retain objects of particular sizes. |
An elliptical structuring element | BinaryBallStructuringElement |
Curves
Example Name | ITK Classes Demonstrated | Description |
---|---|---|
Compute the mean distance between all points of two curves | ContourMeanDistanceImageFilter | |
A data structure for a piece-wise linear curve | PolyLineParametricPath |
Spectral Analysis
Utilities
Statistics
Spatial Objects
Example Name | ITK Classes Demonstrated | Description |
---|---|---|
Convert a spatial object to an image | SpatialObjectToImageFilter | |
Ellipse | EllipseSpatialObject | Circle, dot |
Line spatial object | LineSpatialObject, LineSpatialObjectPoint | Specify a piecewise-linear object by specifying points along the line. |
Plane spatial object | PlaneSpatialObject | |
Blob | BlobSpatialObject |
Inspection
Example Name | ITK Classes Demonstrated | Description |
---|---|---|
Combine two images by alternating blocks of a checkerboard pattern | CheckerBoardImageFilter | |
Printing a pixel value to the console | GetPixel |
Metrics
Example Name | ITK Classes Demonstrated | Description |
---|---|---|
Compute the mean squares metric between two images | MeanSquaresImageToImageMetric |
Image Registration
Image Segmentation
Meshes
Example Name | ITK Classes Demonstrated | Description |
---|---|---|
Read and Write a Mesh | MeshFileReader | Read and write an itk::Mesh using a variety of file formats. |
Decimation | ||
Add points and edges | ||
Compute normals of a mesh | QuadEdgeMeshNormalFilter | |
Planar parameterization of a mesh | ParameterizationQuadEdgeMeshFilter | Compute linear parameterization of a mesh homeomorphic to a disk on the plane |
Subdivide an itk::QuadEdgeMesh | LoopTriangleCellSubdivisionQuadEdgeMeshFilter | Perform a loop triangle cell subdivision on a spherical quad edge mesh. |
Calculate Area and Volume of an itk::SimplexMesh | SimplexMeshVolumeCalculator | Calculate the area and volume of an itk::SimplexMesh. |
Convert an itk::Mesh to a vtkUnstructuredGrid | ||
Write an itk::Mesh to a vtp (vtkPolyData) file | VTKPolyDataWriter | |
Working with PointData and CellData | Mesh | Associate point and cell data with a mesh. |
Need Demo
This section consists of examples which compile and work, but a good demonstration image must be selected and added.
Example Name | ITK Classes Demonstrated | Description |
---|---|---|
Adaptive histogram equalization | AdaptiveHistogramEqualizationImageFilter |
Wish List
Included in the ITK Repository
Example Name | ITK Classes Demonstrated | Description |
---|---|---|
Image registration |
Matlab
Example Name | ITK Classes Demonstrated | Description |
---|
Developer Examples
Problems
Small Problems
Big Problems
Example Name | ITK Classes Demonstrated | Description |
---|---|---|
Find the best position of the moving image in the fixed image. | MeanSquaresImageToImageMetric | Output (0,0) is incorrect. |
Compute and display the gradient of an image | GradientImageFilter | Blank output on the screen (the filter works fine). There should be a "DisplayVectorImage" added to itkQuickView that draws vector glyphs at specified pixels of an image. |