GetOriginalData
Function Usage
Obtains the memory data of valid images.
The following image types are supported:
1 2 3 4 5 6 7 | YUV_400 = 0, RGB_888 = 12, BGR_888 = 13, ARGB_8888 = 14, ABGR_8888 = 15, RGBA_8888 = 16, BGRA_8888 = 17, |
Prototype
1 | std::shared_ptr<uint8_t> Image::GetOriginalData() const; |
Response Parameters
Data Structure |
Description |
|---|---|
std::shared_ptr<uint8_t> |
Returns the memory address (smart pointer). |
Parent topic: Image