DicomVolume Constructor(IEnumerable<DicomImage>,Boolean,Single)
In This Topic
Create a DicomVolume with even spacing, from data which may not be evenly spaced.
Syntax
'Declaration
Public Function New( _
ByVal As System.Collections.Generic.IEnumerable(Of DicomImage), _
ByVal As System.Boolean, _
ByVal As System.Single _
)
'Usage
Dim Images As System.Collections.Generic.IEnumerable(Of DicomImage)
Dim EvenSpacing As System.Boolean
Dim Spacing As System.Single
Dim instance As New DicomVolume(Images, EvenSpacing, Spacing)
public DicomVolume(
System.Collections.Generic.IEnumerable<DicomImage> ,
System.bool ,
System.float
)
public DicomVolume(
: System.Collections.Generic.IEnumerable;
: System.Boolean;
: System.Single
);
public function DicomVolume(
: System.Collections.Generic.IEnumerable,
: System.boolean,
: System.float
);
public: DicomVolume(
System.Collections.Generic.IEnumerable<DicomImage*>* ,
System.bool ,
System.float
)
public:
DicomVolume(
System.Collections.Generic.IEnumerable<DicomImage^>^ ,
System.bool ,
System.float
)
Parameters
- Images
- The set of images to derive the DicomVolume from
- EvenSpacing
- True if even spacing is to be used
- Spacing
- The desired spacing
Requirements
Target Platforms: .NET CLR 4.8 or higher
See Also