DicomObjects.NET.V8
DicomObjects Namespace / DicomImageCollection Class / MakeEnhancedMultiFrame Method
True if the images should be removed from the collection after this function call.



In This Topic
    MakeEnhancedMultiFrame Method
    In This Topic
    Creates a single enhanced multi-frame object from a collection of individual images.
    Syntax
    'Declaration
     
    Public Function MakeEnhancedMultiFrame( _
       ByVal Remove As Boolean _
    ) As DicomImage
    'Usage
     
    Dim instance As DicomImageCollection
    Dim Remove As Boolean
    Dim value As DicomImage
     
    value = instance.MakeEnhancedMultiFrame(Remove)
    public DicomImage MakeEnhancedMultiFrame( 
       bool Remove
    )
    public:
    DicomImage^ MakeEnhancedMultiFrame( 
       bool Remove
    ) 

    Parameters

    Remove
    True if the images should be removed from the collection after this function call.

    Return Value

    The new DicomImage
    Remarks

    Constructs a single enhanced multi-frame image from a series of identically-sized single frame images, which have been collected into a DicomImageCollection. If the argument is true, the images are removed from the collection as they are added to the new object. Unlike MakeMultiFrame, data is taken from all frames, and incorporated into the Common or PerFrame functional groups, not from the first image only.

    Note that the newly created multi-frame image may need some modifications, as DicomObjects has no knowledge of many attributes which only exist in enhanced images but it does do much of the hard work

    If you find any attributes which you feel should be moved to functional groups but which are not, then please contact support@medicalconnections.co.uk

    Requirements

    Target Platforms: .NET CLR 4.0 or higher

    See Also