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", "MLUT.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";
}
GetModalityLutAttributes Method
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document