DicomObjects.NET.8.48 Documentation
DicomObjects Namespace / DicomImage Class / RawPixels Property






In This Topic
    RawPixels Property (DicomImage)
    In This Topic
    Accesses the raw pixel data as an array
    Syntax
    'Declaration
     
    
    Public Property RawPixels As System.Array
    'Usage
     
    
    Dim instance As DicomImage
    Dim value As System.Array
     
    instance.RawPixels = value
     
    value = instance.RawPixels
    public System.Array RawPixels {get; set;}
    public read-write property RawPixels: System.Array; 
    public function get,set RawPixels : System.Array
    public: __property System.Array* get_RawPixels();
    public: __property void set_RawPixels( 
       System.Array* value
    );
    public:
    property System.Array^ RawPixels {
       System.Array^ get();
       void set (    System.Array^ value);
    }
    Remarks

    This returns an array containing one element per frame. The data returned is unaffected by the display parameters.

    Requirements

    Target Platforms: .NET CLR 4.8 or higher

    See Also