←Select platform

GetModalityLutData Method

Summary
Retrieves "LUT Data" for a "Modality LUT Sequence".
Syntax
C#
C++/CLI
Java
public int[] GetModalityLutData() 
public int[] getModalityLutData() 
public: 
array<int>^ GetModalityLutData();  

Return Value

This method returns an integer array which represents the "LUT Data".

Remarks

This method will retrieve the "LUT Data" (0028,3006) under the "Modality LUT Sequence" (0028,3000), if the sequence exists in the Data Set.

Example
C#
using Leadtools; 
using Leadtools.Dicom; 
 
 
public void TestGetModalityLutAttributes() 
{ 
   string dicomFileName = Path.Combine(LEAD_VARS.ImagesDir, "DICOM", "image3.dcm"); 
   //Make sure to initialize the DICOM engine, this needs to be done only once  
   //In the whole application 
   DicomEngine.Startup(); 
   using (DicomDataSet ds = new DicomDataSet()) 
   { 
      //Load DICOM File 
      ds.Load(dicomFileName, DicomDataSetLoadFlags.None); 
      DicomModalityLutAttributes modalityLutAttributes = ds.GetModalityLutAttributes(); 
      if (modalityLutAttributes != null && modalityLutAttributes.IsModalityLutSequence) 
      { 
         int[] ModalityLutData = ds.GetModalityLutData(); 
      } 
   } 
   DicomEngine.Shutdown(); 
} 
 
static class LEAD_VARS 
{ 
   public const string ImagesDir = @"C:\LEADTOOLS23\Resources\Images"; 
} 
Requirements

Target Platforms

Help Version 23.0.2024.2.29
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2024 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Dicom Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.