C#
C++/CLI
Java
public int[] GetModalityLutData()
public int[] getModalityLutData()
public:
array<int>^ GetModalityLutData();
This method returns an integer array which represents the "LUT Data".
This method will retrieve the "LUT Data" (0028,3006) under the "Modality LUT Sequence" (0028,3000), if the sequence exists in the Data Set.
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:\LEADTOOLS22\Resources\Images";
}
GetModalityLutAttributes Method