Package ij.util
Class DicomTools
- java.lang.Object
-
- ij.util.DicomTools
-
public class DicomTools extends java.lang.ObjectDICOM utilities
-
-
Constructor Summary
Constructors Constructor Description DicomTools()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static java.lang.StringgetTag(ImagePlus imp, java.lang.String id)Returns the value (as a string) of the specified DICOM tag id (in the form "0018,0050") of the specified image or stack slice.static java.lang.StringgetTagName(java.lang.String id)Returns the name of the specified DICOM tag id.static doublegetVoxelDepth(ImageStack stack)Calculates the voxel depth of the specified DICOM stack based on the distance between the first and last slices.static ImageStacksort(ImageStack stack)Sorts a DICOM stack by image number.
-
-
-
Method Detail
-
sort
public static ImageStack sort(ImageStack stack)
Sorts a DICOM stack by image number.
-
getVoxelDepth
public static double getVoxelDepth(ImageStack stack)
Calculates the voxel depth of the specified DICOM stack based on the distance between the first and last slices.
-
getTag
public static java.lang.String getTag(ImagePlus imp, java.lang.String id)
Returns the value (as a string) of the specified DICOM tag id (in the form "0018,0050") of the specified image or stack slice. Returns null if the tag id is not found.
-
getTagName
public static java.lang.String getTagName(java.lang.String id)
Returns the name of the specified DICOM tag id.
-
-