Leadtools.Dicom.Common
LEAD Technologies, Inc

GetImage Method

Example 





The Leadtools.Dicom.DicomDataSet that contains the image orientation vectors
An item in the Data Set.
The zero-based index of the frame to load.
Value that represents the resulting image pixel depth. Possible values are:
Value Meaning
0 Keep the original file's pixel depth (do not convert).
1 to 8 The specified bits per pixel in the resulting image.
12 12 bits per pixel in the resulting image.
16 16 bits per pixel in the resulting image.
24 24 bits per pixel in the resulting image.
32 32 bits per pixel in the resulting image.
This value is ignored.
Flags that control the behavior of this method.
An Leadtools.Dicom.Common.DataTypes.OrientationConfiguration that will be applied to the current view perspective.
Returns the Leadtools.RasterImage contained in the Leadtools.Dicom.DicomDataSet, but with the Leadtools.RasterViewPerspective changed accordingly from applying a Leadtools.Dicom.Common.DataTypes.PlaneOrientation to a given Leadtools.RasterViewPerspective.
Syntax
'Declaration
 
<ExtensionAttribute()>
Public Shared Function GetImage( _
   ByVal ds As DicomDataSet, _
   ByVal element As DicomElement, _
   ByVal index As Integer, _
   ByVal bitsPerPixel As Integer, _
   ByVal order As RasterByteOrder, _
   ByVal flags As DicomGetImageFlags, _
   ByVal orientation As OrientationConfiguration _
) As RasterImage
'Usage
 
Dim ds As DicomDataSet
Dim element As DicomElement
Dim index As Integer
Dim bitsPerPixel As Integer
Dim order As RasterByteOrder
Dim flags As DicomGetImageFlags
Dim orientation As OrientationConfiguration
Dim value As RasterImage
 
value = DicomExtensions.GetImage(ds, element, index, bitsPerPixel, order, flags, orientation)
ExtensionAttribute()
 function Leadtools.Dicom.Common.Extensions.DicomExtensions.GetImage( 
   ds ,
   element ,
   index ,
   bitsPerPixel ,
   order ,
   flags ,
   orientation 
)

Parameters

ds
The Leadtools.Dicom.DicomDataSet that contains the image orientation vectors
element
An item in the Data Set.
index
The zero-based index of the frame to load.
bitsPerPixel
Value that represents the resulting image pixel depth. Possible values are:
Value Meaning
0 Keep the original file's pixel depth (do not convert).
1 to 8 The specified bits per pixel in the resulting image.
12 12 bits per pixel in the resulting image.
16 16 bits per pixel in the resulting image.
24 24 bits per pixel in the resulting image.
32 32 bits per pixel in the resulting image.
order
This value is ignored.
flags
Flags that control the behavior of this method.
orientation
An Leadtools.Dicom.Common.DataTypes.OrientationConfiguration that will be applied to the current view perspective.

Return Value

The image of a Pixel Data element.
Remarks

This method will load any image from ds, using element as the parent element to begin the search, where the element searched for is the Leadtools.Dicom.DicomTag.PixelData element. The resulting image has its Leadtools.RasterViewPerspective changed accordingly from applying a Leadtools.Dicom.Common.DataTypes.PlaneOrientation to a given Leadtools.RasterViewPerspective.

The input view perspective is define by two values: the original Leadtools.RasterViewPerspective contained in ds, and a row and column orientation vector (which are read from the ds by searching for the Leadtools.Dicom.DicomElement that has a tag of Leadtools.Dicom.DicomTag.ImageOrientationPatient which contains the orientation vectors.).

Note that the orientation contains three lists of conditions (one for each 3D axis) that can be applied to the image contained in the ds if the condition is met.

Example
Copy CodeCopy Code  
Public Sub GetImageExample()
      Dim dicomFileCoronal As String = Path.Combine(LEAD_VARS.ImagesDir, "image3.dcm")
      Dim ds As New DicomDataSet()
      ds.Load(dicomFileCoronal, DicomDataSetLoadFlags.None)

      ' Create a new coronal PlaneOrientation that corresponds to a horizontal flip
      Dim poCoronal As New PlaneOrientation()
      poCoronal.Name = "Coronal or Frontal"
      poCoronal.Top = OrientationAxis.Inferior
      poCoronal.Right = OrientationAxis.Right
      poCoronal.Condition = New TagValueOrientationCondition(DicomTag.ImageOrientationPatient, Nothing)
      If (Not poCoronal.IsValid(Plane.Coronal)) Then
         MessageBox.Show("Invalid PlaneOrientation for Coronal")
         Return
      End If

      ' Create a new sagittal PlaneOrientation that corresponds to a Rotate90
      Dim poSaggital As New PlaneOrientation()
      poSaggital.Name = "Saggital"
      poSaggital.Top = OrientationAxis.Anterior
      poSaggital.Right = OrientationAxis.Inferior
      poSaggital.Condition = New TagValueOrientationCondition(0, Nothing)
      If (Not poSaggital.IsValid(Plane.Sagittal)) Then
         MessageBox.Show("Invalid PlaneOrientation for Sagittal")
         Return
      End If

      ' Create a new Axial that corresponds to a Rotate180
      Dim poAxial As New PlaneOrientation()
      poAxial.Name = "Axial"
      poAxial.Top = OrientationAxis.Posterior
      poAxial.Right = OrientationAxis.Left
      poAxial.Condition = New TagValueOrientationCondition(0, Nothing)
      If (Not poAxial.IsValid(Plane.Axial)) Then
         MessageBox.Show("Invalid PlaneOrientation for Axial")
         Return
      End If

      ' Setup the OrientationConfiguration
      Dim oc As New OrientationConfiguration()
      oc.Coronal.Add(poCoronal)
      oc.Sagittal.Add(poSaggital)
      oc.Axial.Add(poAxial)
      If (Not oc.IsValid()) Then
         MessageBox.Show("Invalid OrientationConfiguration")
         Return
      End If

      ' Find the image from the dataset with the new view perspective
      ' RasterViewPerspective newViewPerspective = ds.GetNewViewPerspective(RasterViewPerspective.TopLeft, oc);
      Dim image As RasterImage = ds.GetImage(Nothing, 0, 0, RasterByteOrder.Gray, DicomGetImageFlags.None, oc)

      ' New view perspective should be BottomLeft
      Dim newViewPerspective As RasterViewPerspective = image.ViewPerspective
      MessageBox.Show("newViewPerspective should be BottomLeft" & Constants.vbLf & "Actual newViewPerspective is " & newViewPerspective.ToString())
   End Sub

Public NotInheritable Class LEAD_VARS
   Public Const ImagesDir As String = "C:\Users\Public\Documents\LEADTOOLS Images"
End Class
public void GetImageExample()
   {
      DicomEngine.Startup();
      string dicomFileCoronal = Path.Combine(LEAD_VARS.ImagesDir ,"Image3.dcm");
      DicomDataSet ds = new DicomDataSet();
      ds.Load(dicomFileCoronal, DicomDataSetLoadFlags.None);

      // Create a new coronal PlaneOrientation that corresponds to a horizontal flip
      PlaneOrientation poCoronal = new PlaneOrientation();
      poCoronal.Name = "Coronal or Frontal";
      poCoronal.Top = OrientationAxis.Inferior;
      poCoronal.Right = OrientationAxis.Right;
      poCoronal.Condition = new TagValueOrientationCondition(DicomTag.ImageOrientationPatient, null);
      if (!poCoronal.IsValid(Plane.Coronal))
      {
         MessageBox.Show("Invalid PlaneOrientation for Coronal");
         return;
      }

      // Create a new sagittal PlaneOrientation that corresponds to a Rotate90
      PlaneOrientation poSaggital = new PlaneOrientation();
      poSaggital.Name = "Saggital";
      poSaggital.Top = OrientationAxis.Anterior;
      poSaggital.Right = OrientationAxis.Inferior;
      poSaggital.Condition = new TagValueOrientationCondition(0, null);
      if (!poSaggital.IsValid(Plane.Sagittal))
      {
         MessageBox.Show("Invalid PlaneOrientation for Sagittal");
         return;
      }

      // Create a new Axial that corresponds to a Rotate180
      PlaneOrientation poAxial = new PlaneOrientation();
      poAxial.Name = "Axial";
      poAxial.Top = OrientationAxis.Posterior;
      poAxial.Right = OrientationAxis.Left;
      poAxial.Condition = new TagValueOrientationCondition(0, null);
      if (!poAxial.IsValid(Plane.Axial))
      {
         MessageBox.Show("Invalid PlaneOrientation for Axial");
         return;
      }

      // Setup the OrientationConfiguration
      OrientationConfiguration oc = new OrientationConfiguration();
      oc.Coronal.Add(poCoronal);
      oc.Sagittal.Add(poSaggital);
      oc.Axial.Add(poAxial);
      if (!oc.IsValid())
      {
         MessageBox.Show("Invalid OrientationConfiguration");
         return;
      }

      // Find the image from the dataset with the new view perspective
      // RasterViewPerspective newViewPerspective = ds.GetNewViewPerspective(RasterViewPerspective.TopLeft, oc);
      RasterImage image = ds.GetImage(null, 0, 0, RasterByteOrder.Gray, DicomGetImageFlags.None, oc);

      // New view perspective should be BottomLeft
      RasterViewPerspective newViewPerspective = image.ViewPerspective;
      MessageBox.Show("newViewPerspective should be BottomLeft\nActual newViewPerspective is " + newViewPerspective.ToString());

      DicomEngine.Shutdown();
   }

static class LEAD_VARS
{
   public const string ImagesDir = @"C:\Users\Public\Documents\LEADTOOLS Images";
}
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

DicomExtensions Class
DicomExtensions Members

 

 


Products | Support | Contact Us | Copyright Notices

© 2006-2012 All Rights Reserved. LEAD Technologies, Inc.

Leadtools.Dicom.Common requires a Document or Medical toolkit license and unlock key. For more information, refer to: Imaging Pro/Document/Medical Features