Leadtools.Dicom Namespace > DicomDataSet Class > SetWindow Method : SetWindow(Int32,Int32,DicomWindowAttributes,DicomSetImageFlags) Method |
public void SetWindow( int frameIndex, int index, DicomWindowAttributes attributes, DicomSetImageFlags flags )
'Declaration Public Overloads Sub SetWindow( _ ByVal frameIndex As Integer, _ ByVal index As Integer, _ ByVal attributes As DicomWindowAttributes, _ ByVal flags As DicomSetImageFlags _ )
'Usage Dim instance As DicomDataSet Dim frameIndex As Integer Dim index As Integer Dim attributes As DicomWindowAttributes Dim flags As DicomSetImageFlags instance.SetWindow(frameIndex, index, attributes, flags)
public void SetWindow( int frameIndex, int index, DicomWindowAttributes attributes, DicomSetImageFlags flags )
public void setWindow(int frameIndex, int index, DicomWindowAttributes attributes, int dicomSetImageFlags)
function Leadtools.Dicom.DicomDataSet.SetWindow(Int32,Int32,DicomWindowAttributes,DicomSetImageFlags)( frameIndex , index , attributes , flags )
public: void SetWindow( int frameIndex, int index, DicomWindowAttributes^ attributes, DicomSetImageFlags flags )
This method will set the attributes that describe window center and window width.
If "Window Center" (0028,1050) does not already exist in the Data Set, this method will insert it and set its value to DicomWindowAttributes.WindowCenter.
If "Window Width" (0028,1051) does not already exist in the Data Set, this method will isnert it and set its value to DicomWindowAttributes.WindowWidth.
The Multi-frame Functional Groups module may have a Shared Functional Groups Sequence item, and/or a Per-frame Functional Groups Sequence item. Either of these items may have a Frame VOI LUT Sequence (0028,9132) item. The uFlags parameter can be used to add or modify existing information in the Frame VOI LUT Sequence.Tag | Name |
(0028,1050) | Window Center |
(0028,1051) | Window Width |
(0028,1055) | Window Center & Width Explanation |
Imports Leadtools Imports Leadtools.Dicom ''' Private Sub DicomDataSet_SetWindowExample() Dim ds As DicomDataSet = New DicomDataSet() Dim flags As DicomDataSetInitializeFlags = DicomDataSetInitializeFlags.ExplicitVR Or DicomDataSetInitializeFlags.LittleEndian Or _ DicomDataSetInitializeFlags.AddMandatoryElementsOnly Or DicomDataSetInitializeFlags.AddMandatoryModulesOnly ' Initialize with class that supports multiframe functional groups ds.Initialize(DicomClassType.EnhancedMRImageStorage, flags) ' Delete these items -- they will get added again later in the sample ' * Shared Functional Group2 Sequence ' * Per-frame Functional Group2 Sequence Dim element As DicomElement = ds.FindFirstElement(Nothing, DicomTag.PerFrameFunctionalGroupsSequence, False) If Not element Is Nothing Then ds.DeleteElement(element) End If element = ds.FindFirstElement(Nothing, DicomTag.SharedFunctionalGroupsSequence, False) If Not element Is Nothing Then ds.DeleteElement(element) End If ' Add a VOI LUT on 0th frame Dim windowAttributes As DicomWindowAttributes = New DicomWindowAttributes() windowAttributes.WindowCenter = 32767 windowAttributes.WindowWidth = 65535 windowAttributes.Explanation = "frame 0" ds.SetWindow(0, 0, windowAttributes, DicomSetImageFlags.MfgVoiLutPerFrame) ' Add a second VOI LUT on the 1st frame windowAttributes.WindowCenter = 32000 windowAttributes.WindowWidth = 60000 windowAttributes.Explanation = "frame 1" ds.SetWindow(1, 0, windowAttributes, DicomSetImageFlags.MfgVoiLutPerFrame) ' Retrieve the modality LUT attributes from second frame (frameIndex == 1) Dim windowAttributes2 As DicomWindowAttributes = ds.GetWindow(1, 0) Dim sMsg As String = String.Format("Window Center: {0}" & Constants.vbLf & "WindowWidth: {1}" & Constants.vbLf & "Explanation {2}", _ windowAttributes.WindowCenter, windowAttributes.WindowWidth, windowAttributes.Explanation) MessageBox.Show(sMsg) ' Finally, delete the second VOI LUT ds.DeleteWindow(1, DicomSetImageFlags.None) ' Save the file ds.Save(Path.Combine(LEAD_VARS.ImagesDir, "Test.dcm"), DicomDataSetSaveFlags.None) 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; /// void DicomDataSet_SetWindowExample() { DicomDataSet ds = new DicomDataSet(); DicomDataSetInitializeFlags flags = DicomDataSetInitializeFlags.ExplicitVR | DicomDataSetInitializeFlags.LittleEndian | DicomDataSetInitializeFlags.AddMandatoryElementsOnly | DicomDataSetInitializeFlags.AddMandatoryModulesOnly ; // Initialize with class that supports multiframe functional groups ds.Initialize(DicomClassType.EnhancedMRImageStorage, flags); // Delete these items -- they will get added again later in the sample // * Shared Functional Group2 Sequence // * Per-frame Functional Group2 Sequence DicomElement element = ds.FindFirstElement(null, DicomTag.PerFrameFunctionalGroupsSequence, false); if (element != null) ds.DeleteElement(element); element = ds.FindFirstElement(null, DicomTag.SharedFunctionalGroupsSequence, false); if (element != null) ds.DeleteElement(element); // Add a VOI LUT on 0th frame DicomWindowAttributes windowAttributes = new DicomWindowAttributes(); windowAttributes.WindowCenter = 32767; windowAttributes.WindowWidth = 65535; windowAttributes.Explanation = "frame 0"; ds.SetWindow(0, 0, windowAttributes, DicomSetImageFlags.MfgVoiLutPerFrame); // Add a second VOI LUT on the 1st frame windowAttributes.WindowCenter = 32000; windowAttributes.WindowWidth = 60000; windowAttributes.Explanation = "frame 1"; ds.SetWindow(1, 0, windowAttributes, DicomSetImageFlags.MfgVoiLutPerFrame); // Retrieve the modality LUT attributes from second frame (frameIndex == 1) DicomWindowAttributes windowAttributes2 = ds.GetWindow(1,0); string sMsg = string.Format("Window Center: {0}\nWindowWidth: {1}\nExplanation {2}", windowAttributes.WindowCenter, windowAttributes.WindowWidth, windowAttributes.Explanation); MessageBox.Show(sMsg); // Finally, delete the second VOI LUT ds.DeleteWindow(1, DicomSetImageFlags.None); // Save the file ds.Save(Path.Combine(LEAD_VARS.ImagesDir, "Test.dcm"), DicomDataSetSaveFlags.None); } static class LEAD_VARS { public const string ImagesDir = @"C:\Users\Public\Documents\LEADTOOLS Images"; }
using Leadtools.Dicom.Constants; using Leadtools; using Leadtools.Dicom; /// async Task DicomDataSet_SetWindowExample() { DicomDataSet ds = new DicomDataSet(); DicomDataSetInitializeFlags flags = DicomDataSetInitializeFlags.ExplicitVR | DicomDataSetInitializeFlags.LittleEndian | DicomDataSetInitializeFlags.AddMandatoryElementsOnly | DicomDataSetInitializeFlags.AddMandatoryModulesOnly ; // Initialize with class that supports multiframe functional groups ds.Initialize(DicomClassType.EnhancedMRImageStorage, flags); // Delete these items -- they will get added again later in the sample // * Shared Functional Group2 Sequence // * Per-frame Functional Group2 Sequence DicomElement element = ds.FindFirstElement(null, DicomTagConstants.PerFrameFunctionalGroupsSequence , false); if (element != null) ds.DeleteElement(element); element = ds.FindFirstElement(null, DicomTagConstants.SharedFunctionalGroupsSequence, false); if (element != null) ds.DeleteElement(element); // Add a VOI LUT on 0th frame DicomWindowAttributes windowAttributes = new DicomWindowAttributes(); windowAttributes.WindowCenter = 32767; windowAttributes.WindowWidth = 65535; windowAttributes.Explanation = "frame 0"; ds.SetWindow(0, 0, windowAttributes, DicomSetImageFlags.MfgVoiLutPerFrame); // Add a second VOI LUT on the 1st frame windowAttributes.WindowCenter = 32000; windowAttributes.WindowWidth = 60000; windowAttributes.Explanation = "frame 1"; ds.SetWindow(1, 0, windowAttributes, DicomSetImageFlags.MfgVoiLutPerFrame); // Retrieve the modality LUT attributes from second frame (frameIndex == 1) DicomWindowAttributes windowAttributes2 = ds.GetWindow(1, 0); string sMsg = string.Format("Window Center: {0}\nWindowWidth: {1}\nExplanation {2}", windowAttributes.WindowCenter, windowAttributes.WindowWidth, windowAttributes.Explanation); Debug.WriteLine(sMsg); // Finally, delete the second VOI LUT ds.DeleteWindow(1, DicomSetImageFlags.None); // Save the file 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); } }
using Leadtools; using Leadtools.Dicom; using Leadtools.Examples; void DicomDataSet_SetWindowExample(Stream outputStream) { DicomDataSet ds = new DicomDataSet(); DicomDataSetInitializeFlags flags = DicomDataSetInitializeFlags.ExplicitVR | DicomDataSetInitializeFlags.LittleEndian | DicomDataSetInitializeFlags.AddMandatoryElementsOnly | DicomDataSetInitializeFlags.AddMandatoryModulesOnly ; // Initialize with class that supports multiframe functional groups ds.Initialize(DicomClassType.EnhancedMRImageStorage, flags); // Delete these items -- they will get added again later in the sample // * Shared Functional Group2 Sequence // * Per-frame Functional Group2 Sequence DicomElement element = ds.FindFirstElement(null, DicomTag.PerFrameFunctionalGroupsSequence, false); if (element != null) ds.DeleteElement(element); element = ds.FindFirstElement(null, DicomTag.SharedFunctionalGroupsSequence, false); if (element != null) ds.DeleteElement(element); // Add a VOI LUT on 0th frame DicomWindowAttributes windowAttributes = new DicomWindowAttributes(); windowAttributes.WindowCenter = 32767; windowAttributes.WindowWidth = 65535; windowAttributes.Explanation = "frame 0"; ds.SetWindow(0, 0, windowAttributes, DicomSetImageFlags.MfgVoiLutPerFrame); // Add a second VOI LUT on the 1st frame windowAttributes.WindowCenter = 32000; windowAttributes.WindowWidth = 60000; windowAttributes.Explanation = "frame 1"; ds.SetWindow(1, 0, windowAttributes, DicomSetImageFlags.MfgVoiLutPerFrame); // Retrieve the modality LUT attributes from second frame (frameIndex == 1) DicomWindowAttributes windowAttributes2 = ds.GetWindow(1, 0); string sMsg = string.Format("Window Center: {0}\nWindowWidth: {1}\nExplanation {2}", windowAttributes.WindowCenter, windowAttributes.WindowWidth, windowAttributes.Explanation); Debug.WriteLine(sMsg); // Finally, delete the second VOI LUT ds.DeleteWindow(1, DicomSetImageFlags.None); // Save the file ds.Save(outputStream, DicomDataSetSaveFlags.None); }
Imports Leadtools Imports Leadtools.Dicom Private Sub DicomDataSet_SetWindowExample(ByVal outputStream As Stream) Dim ds As DicomDataSet = New DicomDataSet() Dim flags As DicomDataSetInitializeFlags = DicomDataSetInitializeFlags.ExplicitVR Or _ DicomDataSetInitializeFlags.LittleEndian Or _ DicomDataSetInitializeFlags.AddMandatoryElementsOnly Or _ DicomDataSetInitializeFlags.AddMandatoryModulesOnly ' Initialize with class that supports multiframe functional groups ds.Initialize(DicomClassType.EnhancedMRImageStorage, flags) ' Delete these items -- they will get added again later in the sample ' * Shared Functional Group2 Sequence ' * Per-frame Functional Group2 Sequence Dim element As DicomElement = ds.FindFirstElement(Nothing, DicomTag.PerFrameFunctionalGroupsSequence, False) If Not element Is Nothing Then ds.DeleteElement(element) End If element = ds.FindFirstElement(Nothing, DicomTag.SharedFunctionalGroupsSequence, False) If Not element Is Nothing Then ds.DeleteElement(element) End If ' Add a VOI LUT on 0th frame Dim windowAttributes As DicomWindowAttributes = New DicomWindowAttributes() windowAttributes.WindowCenter = 32767 windowAttributes.WindowWidth = 65535 windowAttributes.Explanation = "frame 0" ds.SetWindow(0, 0, windowAttributes, DicomSetImageFlags.MfgVoiLutPerFrame) ' Add a second VOI LUT on the 1st frame windowAttributes.WindowCenter = 32000 windowAttributes.WindowWidth = 60000 windowAttributes.Explanation = "frame 1" ds.SetWindow(1, 0, windowAttributes, DicomSetImageFlags.MfgVoiLutPerFrame) ' Retrieve the modality LUT attributes from second frame (frameIndex == 1) Dim windowAttributes2 As DicomWindowAttributes = ds.GetWindow(1, 0) Dim sMsg As String = String.Format("Window Center: {0}" _ & Constants.vbLf _ & "WindowWidth: {1}" _ & Constants.vbLf _ & "Explanation {2}", _ windowAttributes.WindowCenter, _ windowAttributes.WindowWidth, _ windowAttributes.Explanation) Debug.WriteLine(sMsg) ' Finally, delete the second VOI LUT ds.DeleteWindow(1, DicomSetImageFlags.None) ' Save the file ds.Save(outputStream, DicomDataSetSaveFlags.None) End Sub