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



In This Topic
    MakeMultiFrame Method
    In This Topic
    Creates a single multi-frame object from a collection of individual images.
    Syntax
    'Declaration
     
    Public Function MakeMultiFrame( _
       ByVal remove As Boolean _
    ) As DicomImage
    'Usage
     
    Dim instance As DicomImageCollection
    Dim remove As Boolean
    Dim value As DicomImage
     
    value = instance.MakeMultiFrame(remove)
    public DicomImage MakeMultiFrame( 
       bool remove
    )
    public:
    DicomImage^ MakeMultiFrame( 
       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 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. Apart from the pixel data, all information is copied from the first image only.

    Note that the newly created multi-frame image may need some modifications, as DicomObjects has no knowledge of the relationship between frames. By default, attributes 0028,0009 & 0018,1063 are set to give a constant 10 frames per second. These may need to be removed/changed.

    Requirements

    Target Platforms: .NET CLR 4.0 or higher

    See Also