Imports Leadtools
Imports Leadtools.Dicom
Public Sub TestDicomImage()
Dim dicomFileName As String = Path.Combine(LEAD_VARS.ImagesDir, "IMAGE3.dcm")
'Make sure to initialize the DICOM engine, this needs to be done only once
'In the whole application
DicomEngine.Startup()
Dim ds As DicomDataSet = New DicomDataSet()
Using (ds)
'Load DICOM File
ds.Load(dicomFileName, DicomDataSetLoadFlags.None)
Dim pixelDataElement As DicomElement = ds.FindFirstElement(Nothing, DicomTag.PixelData, True)
If pixelDataElement Is Nothing Then
MessageBox.Show("This dataset is missing the pixel data element", "Sample")
Return
End If
If ds.GetImageCount(pixelDataElement) = 0 Then
MessageBox.Show("This dataset has no images", "Sample")
Return
End If
Dim imageInformation As DicomImageInformation = ds.GetImageInformation(pixelDataElement, 0)
If imageInformation Is Nothing Then
MessageBox.Show("Can't retrieve image information", "Sample")
Return
End If
' Over here we can access the different properties of the DicomImageInformation class to get some
' of the image attributes such as bits allocated (DicomImageInformation. BitsAllocated)
Dim image As RasterImage = ds.GetImage(pixelDataElement, 0, 0, RasterByteOrder.Gray, DicomGetImageFlags.AllowRangeExpansion Or _
DicomGetImageFlags.AutoApplyModalityLut Or DicomGetImageFlags.AutoApplyVoiLut)
If image Is Nothing Then
MessageBox.Show("Can't retrieve image", "Sample")
Return
End If
'If the image has more than one frame then we can call DicomDataSet.GetImages to get all the frames
Dim ds1 As DicomDataSet = New DicomDataSet()
Using (ds1)
ds1.Initialize(DicomClassType.DXImageStoragePresentation, DicomDataSetInitializeType.ExplicitVRLittleEndian)
Dim pixelDataElement1 As DicomElement = ds1.FindFirstElement(Nothing, DicomTag.PixelData, True)
If Not pixelDataElement1 Is Nothing Then
ds1.SetImage(pixelDataElement1, image, DicomImageCompressionType.None, DicomImagePhotometricInterpretationType.Monochrome2, 16, 2, _
DicomSetImageFlags.AutoSetVoiLut)
'If we have more than one frame then we can call DicomDataSet.SetImages
'This is an alternative way to set the image, I will first delete the
'existing image and then call DicomDataSet.InsertImage
ds1.DeleteImage(pixelDataElement1, 0, 1)
pixelDataElement1 = ds1.InsertElement(Nothing, False, DicomTag.PixelData, DicomVRType.UN, False, 0)
ds1.InsertImage(pixelDataElement1, image, 0, DicomImageCompressionType.None, DicomImagePhotometricInterpretationType.Monochrome2, 16, 2, _
DicomSetImageFlags.AutoSetVoiLut)
'If we have more than one frame then we can call DicomDataSet.InsertImages
ds1.Save(Path.Combine(LEAD_VARS.ImagesDir, "Test.dcm"), DicomDataSetSaveFlags.None)
End If
End Using
'Load DICOM File
ds.Load(dicomFileName, DicomDataSetLoadFlags.None)
End Using
DicomEngine.Shutdown()
End Sub
Public NotInheritable Class LEAD_VARS
Public Const ImagesDir As String = "C:\Users\Public\Documents\LEADTOOLS Images"
End Class
using Leadtools;
using Leadtools.Dicom;
public void TestDicomImage()
{
string dicomFileName = Path.Combine(LEAD_VARS.ImagesDir, "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);
DicomElement pixelDataElement = ds.FindFirstElement(null, DicomTag.PixelData, true);
if (pixelDataElement == null)
{
MessageBox.Show("This dataset is missing the pixel data element", "Sample");
return;
}
if (ds.GetImageCount(pixelDataElement) == 0)
{
MessageBox.Show("This dataset has no images", "Sample");
return;
}
DicomImageInformation imageInformation = ds.GetImageInformation(pixelDataElement, 0);
if (imageInformation == null)
{
MessageBox.Show("Can't retrieve image information", "Sample");
return;
}
// Over here we can access the different properties of the DicomImageInformation class to get some
// of the image attributes such as bits allocated (DicomImageInformation. BitsAllocated)
RasterImage image = ds.GetImage(pixelDataElement,
0,
0,
RasterByteOrder.Gray,
DicomGetImageFlags.AllowRangeExpansion | DicomGetImageFlags.AutoApplyModalityLut | DicomGetImageFlags.AutoApplyVoiLut);
if (image == null)
{
MessageBox.Show("Can't retrieve image", "Sample");
return;
}
//If the image has more than one frame then we can call DicomDataSet.GetImages to get all the frames
using (DicomDataSet ds1 = new DicomDataSet())
{
ds1.Initialize(DicomClassType.DXImageStoragePresentation, DicomDataSetInitializeType.ExplicitVRLittleEndian);
DicomElement pixelDataElement1 = ds1.FindFirstElement(null, DicomTag.PixelData, true);
if (pixelDataElement1 != null)
{
ds1.SetImage(pixelDataElement1,
image,
DicomImageCompressionType.None,
DicomImagePhotometricInterpretationType.Monochrome2,
16,
2,
DicomSetImageFlags.AutoSetVoiLut);
//If we have more than one frame then we can call DicomDataSet.SetImages
//This is an alternative way to set the image, I will first delete the
//existing image and then call DicomDataSet.InsertImage
ds1.DeleteElement(pixelDataElement1);
pixelDataElement1 = ds1.InsertElement(null, false, DicomTag.PixelData, DicomVRType.UN, false, 0);
ds1.InsertImage(pixelDataElement1,
image,
0,
DicomImageCompressionType.None,
DicomImagePhotometricInterpretationType.Monochrome2,
16,
2,
DicomSetImageFlags.AutoSetVoiLut);
//If we have more than one frame then we can call DicomDataSet.InsertImages
ds1.Save(Path.Combine(LEAD_VARS.ImagesDir, "Test.dcm"), DicomDataSetSaveFlags.None);
}
}
//Load DICOM File
ds.Load(dicomFileName, DicomDataSetLoadFlags.None);
}
DicomEngine.Shutdown();
}
static class LEAD_VARS
{
public const string ImagesDir = @"C:\Users\Public\Documents\LEADTOOLS Images";
}
using Leadtools.Dicom.Constants;
using Leadtools;
using Leadtools.Dicom;
public async Task TestDicomImage()
{
//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
string filePath = @"Assets\IMAGE3.dcm";
StorageFile file = await Tools.AppInstallFolder.GetFileAsync(filePath);
ILeadStream stream = LeadStreamFactory.Create(file);
bool success = await ds.LoadAsync(stream, DicomDataSetLoadFlags.None);
Debug.Assert(success);
ds.DeleteVoiLut();
DicomElement pixelDataElement = ds.FindFirstElement(null, DicomTagConstants.PixelData, true);
if (pixelDataElement == null)
{
Debug.WriteLine("TestDicomImage: This dataset is missing the pixel data element");
return;
}
if (ds.GetImageCount(pixelDataElement) == 0)
{
Debug.WriteLine("TestDicomImage: This dataset has no images");
return;
}
DicomImageInformation imageInformation = ds.GetImageInformation(pixelDataElement, 0);
if (imageInformation == null)
{
Debug.WriteLine("TestDicomImage: Can't retrieve image information");
return;
}
// Over here we can access the different properties of the DicomImageInformation class to get some
// of the image attributes such as bits allocated (DicomImageInformation. BitsAllocated)
RasterImage image = ds.GetImage(pixelDataElement,
0,
0,
DicomGetImageFlags.AllowRangeExpansion | DicomGetImageFlags.AutoApplyModalityLut | DicomGetImageFlags.AutoApplyVoiLut);
if (image == null)
{
Debug.WriteLine("Can't retrieve image");
return;
}
//If the image has more than one frame then we can call DicomDataSet.GetImages to get all the frames
using (DicomDataSet ds1 = new DicomDataSet())
{
ds1.Initialize(DicomClassType.DXImageStoragePresentation, DicomDataSetInitializeType.ExplicitVRLittleEndian);
DicomElement pixelDataElement1 = ds1.FindFirstElement(null, DicomTagConstants.PixelData, true);
if (pixelDataElement1 != null)
{
ds1.SetImage(pixelDataElement1,
image,
DicomImageCompressionType.None,
DicomImagePhotometricInterpretationType.Monochrome2,
16,
2,
DicomSetImageFlags.AutoSetVoiLut);
//If we have more than one frame then we can call DicomDataSet.SetImages
//This is an alternative way to set the image, I will first delete the
//existing image and then call DicomDataSet.InsertImage
ds1.DeleteElement(pixelDataElement1);
pixelDataElement1 = ds1.InsertElement(null, false, DicomTagConstants.PixelData, DicomVRType.UN, false, 0);
ds1.InsertImage(pixelDataElement1,
image,
0,
DicomImageCompressionType.None,
DicomImagePhotometricInterpretationType.Monochrome2,
16,
2,
DicomSetImageFlags.AutoSetVoiLut);
//If we have more than one frame then we can call DicomDataSet.InsertImages
string dicomFileNameOutput = "Test.dcm";
StorageFile saveFile = await Tools.AppLocalFolder.CreateFileAsync(dicomFileNameOutput);
ILeadStream streamOutput = LeadStreamFactory.Create(saveFile);
using (IDisposable disposableOUT = streamOutput as IDisposable)
{
await ds.SaveAsync(streamOutput, DicomDataSetSaveFlags.None);
}
}
}
//Load DICOM File
filePath = @"Test.dcm";
file = await Tools.AppLocalFolder.GetFileAsync(filePath);
stream = LeadStreamFactory.Create(file);
success = await ds.LoadAsync(stream, DicomDataSetLoadFlags.None);
Debug.Assert(success); ds.DeleteVoiLut();
}
DicomEngine.Shutdown();
}
using Leadtools;
using Leadtools.Dicom;
using Leadtools.Examples;
public void TestDicomImage(Stream dicomStream, Stream outputStream)
{
//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(dicomStream, DicomDataSetLoadFlags.None);
DicomElement pixelDataElement = ds.FindFirstElement(null, DicomTag.PixelData, true);
if (pixelDataElement == null)
{
Debug.WriteLine("This dataset is missing the pixel data element", "Sample");
return;
}
if (ds.GetImageCount(pixelDataElement) == 0)
{
Debug.WriteLine("This dataset has no images", "Sample");
return;
}
DicomImageInformation imageInformation = ds.GetImageInformation(pixelDataElement, 0);
if (imageInformation == null)
{
Debug.WriteLine("Can't retrieve image information", "Sample");
return;
}
// Over here we can access the different properties of the DicomImageInformation class to get some
// of the image attributes such as bits allocated (DicomImageInformation. BitsAllocated)
RasterImage image = ds.GetImage(pixelDataElement,
0,
0,
RasterByteOrder.Gray,
DicomGetImageFlags.AllowRangeExpansion | DicomGetImageFlags.AutoApplyModalityLut | DicomGetImageFlags.AutoApplyVoiLut);
if (image == null)
{
Debug.WriteLine("Can't retrieve image", "Sample");
return;
}
//If the image has more than one frame then we can call DicomDataSet.GetImages to get all the frames
using (DicomDataSet ds1 = new DicomDataSet())
{
ds1.Initialize(DicomClassType.DXImageStoragePresentation, DicomDataSetInitializeType.ExplicitVRLittleEndian);
DicomElement pixelDataElement1 = ds1.FindFirstElement(null, DicomTag.PixelData, true);
if (pixelDataElement1 != null)
{
ds1.SetImage(pixelDataElement1,
image,
DicomImageCompressionType.None,
DicomImagePhotometricInterpretationType.Monochrome2,
16,
2,
DicomSetImageFlags.AutoSetVoiLut);
//If we have more than one frame then we can call DicomDataSet.SetImages
//This is an alternative way to set the image, I will first delete the
//existing image and then call DicomDataSet.InsertImage
ds1.DeleteImage(pixelDataElement1, 0, 1);
pixelDataElement1 = ds1.InsertElement(null, false, DicomTag.PixelData, DicomVRType.UN, false, 0);
ds1.InsertImage(pixelDataElement1,
image,
0,
DicomImageCompressionType.None,
DicomImagePhotometricInterpretationType.Monochrome2,
16,
2,
DicomSetImageFlags.AutoSetVoiLut);
//If we have more than one frame then we can call DicomDataSet.InsertImages
ds1.Save(outputStream, DicomDataSetSaveFlags.None);
}
}
//Load DICOM File
ds.Load(dicomStream, DicomDataSetLoadFlags.None);
}
DicomEngine.Shutdown();
}
Imports Leadtools
Imports Leadtools.Dicom
Public Sub TestDicomImage(ByVal dicomStream As Stream, ByVal outputStream As Stream)
'Make sure to initialize the DICOM engine, this needs to be done only once
'In the whole application
DicomEngine.Startup()
Using ds As DicomDataSet = New DicomDataSet()
'Load DICOM File
ds.Load(dicomStream, DicomDataSetLoadFlags.None)
Dim pixelDataElement As DicomElement = ds.FindFirstElement(Nothing, DicomTag.PixelData, True)
If pixelDataElement Is Nothing Then
Debug.WriteLine("This dataset is missing the pixel data element", "Sample")
Return
End If
If ds.GetImageCount(pixelDataElement) = 0 Then
Debug.WriteLine("This dataset has no images", "Sample")
Return
End If
Dim imageInformation As DicomImageInformation = ds.GetImageInformation(pixelDataElement, 0)
If imageInformation Is Nothing Then
Debug.WriteLine("Can't retrieve image information", "Sample")
Return
End If
' Over here we can access the different properties of the DicomImageInformation class to get some
' of the image attributes such as bits allocated (DicomImageInformation. BitsAllocated)
Dim image As RasterImage = ds.GetImage(pixelDataElement, 0, 0, RasterByteOrder.Gray, DicomGetImageFlags.AllowRangeExpansion Or _
DicomGetImageFlags.AutoApplyModalityLut Or _
DicomGetImageFlags.AutoApplyVoiLut)
If image Is Nothing Then
Debug.WriteLine("Can't retrieve image", "Sample")
Return
End If
'If the image has more than one frame then we can call DicomDataSet.GetImages to get all the frames
Using ds1 As DicomDataSet = New DicomDataSet()
ds1.Initialize(DicomClassType.DXImageStoragePresentation, DicomDataSetInitializeType.ExplicitVRLittleEndian)
Dim pixelDataElement1 As DicomElement = ds1.FindFirstElement(Nothing, DicomTag.PixelData, True)
If Not pixelDataElement1 Is Nothing Then
ds1.SetImage(pixelDataElement1, _
image, _
DicomImageCompressionType.None, _
DicomImagePhotometricInterpretationType.Monochrome2, _
16, _
2, _
DicomSetImageFlags.AutoSetVoiLut)
'If we have more than one frame then we can call DicomDataSet.SetImages
'This is an alternative way to set the image, I will first delete the
'existing image and then call DicomDataSet.InsertImage
ds1.DeleteImage(pixelDataElement1, 0, 1)
pixelDataElement1 = ds1.InsertElement(Nothing, False, DicomTag.PixelData, DicomVRType.UN, False, 0)
ds1.InsertImage(pixelDataElement1, _
image, _
0, _
DicomImageCompressionType.None, _
DicomImagePhotometricInterpretationType.Monochrome2, _
16, _
2, _
DicomSetImageFlags.AutoSetVoiLut)
'If we have more than one frame then we can call DicomDataSet.InsertImages
ds1.Save(outputStream, DicomDataSetSaveFlags.None)
End If
End Using
'Load DICOM File
ds.Load(dicomStream, DicomDataSetLoadFlags.None)
End Using
DicomEngine.Shutdown()
End Sub