Face Engine SDK
5.23.1
A face detection, recognition and tracking engine.
|
#include <Image.h>
Public Types | |
enum | Type { BMP, JPG, PNG, PPM, TIFF, Unknown } |
Supported image types. | |
enum | TargetDevice { CPU, GPU, NPU } |
Target device that fsdk::Image algorithms will be running on. | |
enum | ImageCompression { IC_NO_COMPRESSION, IC_SMALL_COMPRESSION, IC_MEDIUM_COMPRESSION, IC_HARD_COMPRESSION, IC_BEST_COMPRESSION } |
Supported compression type is used only for jpg and png types. More... | |
enum | Error { Ok, InvalidWidth, InvalidHeight, InvalidDataPtr, InvalidDataSize, InvalidImage, InvalidArchive, InvalidPath, InvalidType, InvalidFormat, InvalidBitmap, InvalidMemory, InvalidConversion, InvalidResidence, InvalidDevice, InvalidCudaKernel, FailedToSave, FailedToLoad, FailedToInitialize, ReleasedInOtherThread } |
Image error codes. More... | |
enum | MemoryResidence { MemoryCPU, MemoryGPU, MemoryNPU, MemoryNPU_DPP } |
Memory residence. More... | |
Public Member Functions | |
FSDK_API | Image () noexcept |
Initializes an empty image. | |
FSDK_API | Image (int width, int height, Format format, MemoryResidence residence=MemoryResidence::MemoryCPU, int deviceId=0) noexcept |
Initializes an empty image and preallocates storage buffer of given size. | |
FSDK_API | Image (int width, int height, Format format, const void *data, MemoryResidence residence=MemoryResidence::MemoryCPU, int deviceId=0) noexcept |
Initializes an empty image and preallocates storage buffer of given size. Fills image contents with provided data. | |
FSDK_API | Image (int width, int height, Format format, void *data, bool copy, MemoryResidence residence=MemoryResidence::MemoryCPU, int deviceId=0) noexcept |
Initializes an image. If copy is true, this allocates a new buffer of given size and fills image contents with provided data (copies it). If copy is false (which is default) this will just reference the provided data. | |
FSDK_API | Image (const Image &other) noexcept |
Initializes an image as a reference to an other image. | |
FSDK_API | Image (Image &&other) noexcept |
Initializes an image with contents of an other image. Source image is then invalidated. | |
FSDK_API | Image (const SubImage &subImage) noexcept |
Initializes an image with contents of a sub image. Since sub images do not handle data life time, image contents are always copied. | |
FSDK_API Result< Error > | create (int width, int height, Format format, bool cleanup=true, MemoryResidence residence=MemoryResidence::MemoryCPU, int deviceId=0) noexcept |
Initializes an empty image and preallocates storage buffer of given size. | |
FSDK_API Result< Error > | create (int width, int height, Format format, const void *data, MemoryResidence residence=MemoryResidence::MemoryCPU, int deviceId=0) noexcept |
Initializes an empty image and preallocates storage buffer of given size. Fills image contents with provided data. | |
FSDK_API Result< Error > | create (int width, int height, Format format, void *data, bool copy, MemoryResidence residence=MemoryResidence::MemoryCPU, int deviceId=0) noexcept |
Initializes an image. If copy is true, this allocates a new buffer of given size and fills image contents with provided data (copies it). If copy is false (which is default) this will just reference the provided data. | |
FSDK_API Result< Error > | create (const fsdk::Image &source, MemoryResidence residence, int deviceId=0) noexcept |
Creates image with given memory residence based on other image instance. If source image has another MemoryResidence or device id, all memory will be copied to the new residence. In the other case new instance will be just a reference for the source. | |
FSDK_API Result< Error > | set (int width, int height, Format format, const void *data, MemoryResidence residence=MemoryResidence::MemoryCPU, int deviceId=0) noexcept |
Initializes an image with provided data. If current image is not empty and it's size and format match the provided ones, no memory reallocation is performed. Otherwise image is re-created to match requirements. | |
FSDK_API Result< Error > | set (int width, int height, Format format, void *data, bool copy, MemoryResidence residence=MemoryResidence::MemoryCPU, int deviceId=0) noexcept |
Initializes an image with provided data. If copy is true and if current image is not empty and it's size and format match the provided ones, no memory reallocation is performed. Otherwise image is re-created to match requirements. If copy is false (which is default) this will just reference the provided data. | |
FSDK_API Result< Error > | set (const Image &other) noexcept |
Initializes an image as a reference to an other image. | |
FSDK_API Result< Error > | set (const SubImage &subImage) noexcept |
Initializes an image with contents of a sub image. Since sub images do not handle data life time, image contents are always copied. | |
FSDK_API SubImage | map (int x, int y, int width, int height) const noexcept |
Map image contents to a given area. | |
SubImage | map (const Rect &rect) const noexcept |
Map image contents to a given area. | |
SubImage | map (const Size &size) const noexcept |
Map image contents to a given area. | |
SubImage | map (const Point2i &origin, const Size &size) const noexcept |
Map image contents to a given area. | |
FSDK_API Image | extract (int x, int y, int width, int height) const noexcept |
Extract a sub image of this image. The new image will have it's own reference count. | |
Image | extract (const Rect &rect) const noexcept |
Extract a sub image of this image. The new image will have it's own reference count. | |
Image | extract (const Size &size) const noexcept |
Extract a sub image of this image. The new image will have it's own reference count. | |
Image | extract (const Point2i &origin, const Size &size) const noexcept |
Extract a sub image of this image. The new image will have it's own reference count. | |
Image | clone () const noexcept |
Create a copy of this image. The new image will have it's own reference count. | |
FSDK_API Result< Image::Error > | convert (Image &dest, int x, int y, int width, int height, Format format, TargetDevice device=TargetDevice::CPU) const noexcept |
Convert image format. | |
Result< Image::Error > | convert (Image &dest, const Point2i &origin, const Size &size, Format format, TargetDevice device=TargetDevice::CPU) const noexcept |
Convert image format. | |
Result< Image::Error > | convert (Image &dest, const Size &size, Format format, TargetDevice device=TargetDevice::CPU) const noexcept |
Convert image format. | |
Result< Image::Error > | convert (Image &dest, const Rect &rect, Format format, TargetDevice device=TargetDevice::CPU) const noexcept |
Convert image format. | |
Result< Image::Error > | convert (Image &dest, Format format, TargetDevice device=TargetDevice::CPU) const noexcept |
Convert image format. | |
FSDK_API Image | rescale (float scale) const noexcept |
Rescale image keeping proportions. | |
FSDK_API Result< Image::Error > | save (const char *path, fsdk::Image::ImageCompression additionalFlag=fsdk::Image::ImageCompression::IC_NO_COMPRESSION) const noexcept |
Save image. | |
FSDK_API Result< Error > | save (const char *path, const Format format) const noexcept |
Convert and Save image. | |
FSDK_API Result< Image::Error > | saveToMemory (Image::Type type, IArchive *archive, fsdk::Image::ImageCompression additionalFlag=fsdk::Image::ImageCompression::IC_NO_COMPRESSION) const noexcept |
Save image to memory buffer. | |
FSDK_API Result< Image::Error > | saveToMemory (Image::Type type, IArchive *archive, const Format format) const noexcept |
Convert and save image to memory buffer. | |
FSDK_API Result< Error > | load (const char *path) noexcept |
Load image from file. | |
FSDK_API Result< Error > | load (const char *path, const Format format) noexcept |
Load image from file and convert it to required format. | |
FSDK_API Result< Error > | loadFromMemory (const void *data, const uint32_t sizeInBytes) noexcept |
Load image from memory. | |
FSDK_API Result< Error > | rotate (Image &dest, RotationType rotationType) const noexcept |
Rotates an image on 90, 180 and 270 degrees. Allocates a new buffer of given size and fills image contents with provided data. | |
FSDK_API Result< Error > | loadFromMemory (const void *data, const uint32_t sizeInBytes, const Format format) noexcept |
Load image from memory and convert it to required format. | |
FSDK_API Result< Error > | loadFromMemoryOfType (const void *data, const uint32_t sizeInBytes, const Type type) noexcept |
Load image from memory of specific type. | |
FSDK_API Result< Error > | loadFromMemoryOfType (const void *data, const uint32_t sizeInBytes, const Type type, const Format format) noexcept |
Load image from memory of specific type and convert it to required format. | |
Image & | operator= (const Image &other) noexcept |
Assign other image. | |
Image & | operator= (Image &&other) noexcept |
Move other image. | |
bool | isNull () const noexcept |
bool | isValid () const noexcept |
operator bool () const noexcept | |
Implicit cast to boolean; results in true if image is valid, false if not. | |
FSDK_API void * | getScanLine (int y) noexcept |
Get image scanline data. | |
FSDK_API const void * | getScanLine (int y) const noexcept |
Get image scanline data. | |
FSDK_API int | getDataSize () const noexcept |
FSDK_API void | getDataSize (Sizer &sizer) const noexcept |
Get actual image size in bytes. | |
template<typename T > | |
T * | getScanLineAs (int y) noexcept |
Get image scanline data. | |
template<typename T > | |
const T * | getScanLineAs (int y) const noexcept |
Get image scanline data. | |
void * | getData () noexcept |
const void * | getData () const noexcept |
template<typename T > | |
T * | getDataAs () noexcept |
template<typename T > | |
const T * | getDataAs () const noexcept |
int | getRowSize () const noexcept |
int | getWidth () const noexcept |
int | getHeight () const noexcept |
float | getAspectRatio () const noexcept |
Format | getFormat () const noexcept |
MemoryResidence | getMemoryResidence () const noexcept |
int | getDeviceId () const noexcept |
Size | getSize () const noexcept |
Rect | getRect () const noexcept |
bool | ownsData () const noexcept |
bool | isSharedWith (const Image &other) const noexcept |
void | swap (Image &other) noexcept |
Swap contents with another image. | |
void | reset () noexcept |
Reset image contents. | |
bool | equalWeak (const fsdk::Image &other) const noexcept |
Performs weak comparison of this image with other. Weak in this context means only image parameters should be equal i.e width, height, format and residence. Actual data pointer of two images might differ. | |
bool | equalStrong (const fsdk::Image &other) const noexcept |
Performs strong comparison of this image with other. Beside weak comparison strong comparison also checks whether two images point to the same block of pixels. | |
FSDK_API void | putPixel (uint32_t x, uint32_t y) noexcept |
Static Public Member Functions | |
static FSDK_API Result< Error > | guessTypeFromMemory (const void *data, const uint32_t sizeInBytes, Type &type) noexcept |
Guess type of image written into memory. | |
Protected Member Functions | |
FSDK_API int | retain () noexcept |
Increase reference count. | |
FSDK_API int | release () noexcept |
Decrease reference count. | |
FSDK_API int | getRefCount () const noexcept |
Obtain reference count. | |
Static Protected Member Functions | |
static FSDK_API void * | allocate (int size) noexcept |
Allocate memory. | |
static FSDK_API void | deallocate (void *memory) noexcept |
Free memory. | |
Protected Attributes | |
void * | m_data |
raw image data. | |
int * | m_ref |
reference counter. nullptr if image does not own data. | |
int | m_height |
image height. | |
int | m_width |
image width. | |
int | m_deviceId |
id of the device where image memory is allocated | |
Format | m_format |
image format ( | |
MemoryResidence | m_residence |
Image objects embed an implicit reference counter to automatically track consumers perform assignments without unnecessary reallocations in a thread-safe manner.
Every time you assign or set an other image as the source of the current image, the current image data reference count is decreased, new data pointer is referenced, and it's counter is increased. When data reference count drops to zero, the data is deallocated.
Image can also reference external data without an actual ownership. This way you can operate on your data buffer using methods of Image and still own it and cotrol it's life time.
enum fsdk::Image::Error |
Image error codes.
Ok |
Ok. |
InvalidWidth |
Invalid width. |
InvalidHeight |
Invalid height. |
InvalidDataPtr |
Bad input data pointer. |
InvalidDataSize |
Bad input data size. |
InvalidImage |
Invalid image. |
InvalidArchive |
Archive error. |
InvalidPath |
Bad path for saving / loading. |
InvalidType |
Unsupported type.
|
InvalidFormat |
Unsupported format.
|
InvalidBitmap |
Bitmap error occurred. |
InvalidMemory |
Error at memory opening. |
InvalidConversion |
Conversion not implemented. |
InvalidResidence |
Invalid memory residence. |
InvalidDevice |
Target Device is not supported for this system. |
InvalidCudaKernel |
Error during apply cuda kernel. |
FailedToSave |
Error during image saving. |
FailedToLoad |
Error during image loading. |
FailedToInitialize |
Error during initialization. |
ReleasedInOtherThread |
Failed to retain image: it was released in another thread. |
Supported compression type is used only for jpg and png types.
JPG case: the higher level of compression corresponds to the lower quality. Compression/decompression speed are constant. PNG case: the higher level of compression corresponds to the lower compression speed. Quality are constant.
Memory residence.
FSDK_API fsdk::Image::Image | ( | int | width, |
int | height, | ||
Format | format, | ||
MemoryResidence | residence = MemoryResidence::MemoryCPU , |
||
int | deviceId = 0 |
||
) |
Initializes an empty image and preallocates storage buffer of given size.
[in] | width | image width. |
[in] | height | image height. |
[in] | format | image format. |
[in] | deviceId | index of a device where image will be allocated |
FSDK_API fsdk::Image::Image | ( | int | width, |
int | height, | ||
Format | format, | ||
const void * | data, | ||
MemoryResidence | residence = MemoryResidence::MemoryCPU , |
||
int | deviceId = 0 |
||
) |
Initializes an empty image and preallocates storage buffer of given size. Fills image contents with provided data.
[in] | width | image width. |
[in] | height | image height. |
[in] | format | image format. |
[in] | data | image data. |
[in] | deviceId | index of a device where image will be allocated |
FSDK_API fsdk::Image::Image | ( | int | width, |
int | height, | ||
Format | format, | ||
void * | data, | ||
bool | copy, | ||
MemoryResidence | residence = MemoryResidence::MemoryCPU , |
||
int | deviceId = 0 |
||
) |
Initializes an image. If copy is true, this allocates a new buffer of given size and fills image contents with provided data (copies it). If copy is false (which is default) this will just reference the provided data.
[in] | width | image width. |
[in] | height | image height. |
[in] | format | image format. |
[in] | data | image data. |
[in] | copy | [optional] whether to copy or reference data. |
[in] | deviceId | index of a device where image will be allocated |
FSDK_API fsdk::Image::Image | ( | const Image & | other | ) |
Initializes an image as a reference to an other image.
[in] | other | other image. |
FSDK_API fsdk::Image::Image | ( | Image && | other | ) |
Initializes an image with contents of an other image. Source image is then invalidated.
[in] | other | other image. |
FSDK_API fsdk::Image::Image | ( | const SubImage & | subImage | ) | [explicit] |
Initializes an image with contents of a sub image. Since sub images do not handle data life time, image contents are always copied.
[in] | subImage | sub image. |
static FSDK_API void* fsdk::Image::allocate | ( | int | size | ) | [static, protected] |
Allocate memory.
[in] | size | memory region size in bytes. |
Image fsdk::Image::clone | ( | ) | const [inline] |
Create a copy of this image. The new image will have it's own reference count.
FSDK_API Result<Image::Error> fsdk::Image::convert | ( | Image & | dest, |
int | x, | ||
int | y, | ||
int | width, | ||
int | height, | ||
Format | format, | ||
TargetDevice | device = TargetDevice::CPU |
||
) | const |
Convert image format.
[inout] | dest destination image. | |
[in] | x | horisontal coordinate of top left corner of image rect to convert. |
[in] | y | vertical coordinate of top left corner of image rect to convert. |
[in] | width | width of image rect to convert. |
[in] | height | height of image rect to convert. |
[in] | format | new format. |
[in] | device | target device to run convert on. |
Result<Image::Error> fsdk::Image::convert | ( | Image & | dest, |
const Point2i & | origin, | ||
const Size & | size, | ||
Format | format, | ||
TargetDevice | device = TargetDevice::CPU |
||
) | const [inline] |
Convert image format.
[inout] | dest destination image. | |
[in] | origin | converted image origin. |
[in] | size | image size to convert. |
[in] | format | new format. |
[in] | device | target device to run convert on. |
Result<Image::Error> fsdk::Image::convert | ( | Image & | dest, |
const Size & | size, | ||
Format | format, | ||
TargetDevice | device = TargetDevice::CPU |
||
) | const [inline] |
Convert image format.
[inout] | dest destination image. | |
[in] | format | new format. |
[in] | size | image area size to convert. |
[in] | device | target device to run convert on. |
Result<Image::Error> fsdk::Image::convert | ( | Image & | dest, |
const Rect & | rect, | ||
Format | format, | ||
TargetDevice | device = TargetDevice::CPU |
||
) | const [inline] |
Convert image format.
[inout] | dest destination image. | |
[in] | format | new format. |
[in] | rect | image area rect to convert. |
[in] | device | target device to run convert on. |
Result<Image::Error> fsdk::Image::convert | ( | Image & | dest, |
Format | format, | ||
TargetDevice | device = TargetDevice::CPU |
||
) | const [inline] |
Convert image format.
[inout] | dest destination image. | |
[in] | format | new format. |
[in] | device | target device to run convert on. |
FSDK_API Result<Error> fsdk::Image::create | ( | int | width, |
int | height, | ||
Format | format, | ||
bool | cleanup = true , |
||
MemoryResidence | residence = MemoryResidence::MemoryCPU , |
||
int | deviceId = 0 |
||
) |
Initializes an empty image and preallocates storage buffer of given size.
[in] | width | image width. |
[in] | height | image height. |
[in] | format | image format. |
[in] | cleanup | initializes internal image memory to default value. |
[in] | residence | memory residence of a data pointer. |
[in] | deviceId | index of a device where image will be allocated |
FSDK_API Result<Error> fsdk::Image::create | ( | int | width, |
int | height, | ||
Format | format, | ||
const void * | data, | ||
MemoryResidence | residence = MemoryResidence::MemoryCPU , |
||
int | deviceId = 0 |
||
) |
Initializes an empty image and preallocates storage buffer of given size. Fills image contents with provided data.
[in] | width | image width. |
[in] | height | image height. |
[in] | format | image format. |
[in] | data | image data. |
[in] | memory | residence of a data pointer. |
[in] | deviceId | index of a device where data pointer was allocated |
FSDK_API Result<Error> fsdk::Image::create | ( | int | width, |
int | height, | ||
Format | format, | ||
void * | data, | ||
bool | copy, | ||
MemoryResidence | residence = MemoryResidence::MemoryCPU , |
||
int | deviceId = 0 |
||
) |
Initializes an image. If copy is true, this allocates a new buffer of given size and fills image contents with provided data (copies it). If copy is false (which is default) this will just reference the provided data.
[in] | width | image width. |
[in] | height | image height. |
[in] | format | image format. |
[in] | data | image data. |
[in] | copy | whether to copy or reference data |
[in] | memory | residence of a data pointer. |
[in] | deviceId | index of a device where data pointer was allocated |
FSDK_API Result<Error> fsdk::Image::create | ( | const fsdk::Image & | source, |
MemoryResidence | residence, | ||
int | deviceId = 0 |
||
) |
Creates image with given memory residence based on other image instance. If source image has another MemoryResidence or device id, all memory will be copied to the new residence. In the other case new instance will be just a reference for the source.
[in] | image | instance to create copy for |
[in] | residence | memory residence for the target image |
[in] | deviceId | index of a device for the target image |
static FSDK_API void fsdk::Image::deallocate | ( | void * | memory | ) | [static, protected] |
Free memory.
[in] | memory | memory region pointer. |
bool fsdk::Image::equalStrong | ( | const fsdk::Image & | other | ) | const [inline] |
Performs strong comparison of this image with other. Beside weak comparison strong comparison also checks whether two images point to the same block of pixels.
FSDK_API Image fsdk::Image::extract | ( | int | x, |
int | y, | ||
int | width, | ||
int | height | ||
) | const |
Extract a sub image of this image. The new image will have it's own reference count.
[in] | x | horisontal coordinate of top left corner of image rect to extract. |
[in] | y | vertical coordinate of top left corner of image rect to extract. |
[in] | width | width of image rect to extract. |
[in] | height | height of image rect to extract. |
Image fsdk::Image::extract | ( | const Rect & | rect | ) | const [inline] |
Extract a sub image of this image. The new image will have it's own reference count.
[in] | rect | image rect to extract. |
Image fsdk::Image::extract | ( | const Size & | size | ) | const [inline] |
Extract a sub image of this image. The new image will have it's own reference count.
[in] | size | image size to extract. |
Image fsdk::Image::extract | ( | const Point2i & | origin, |
const Size & | size | ||
) | const [inline] |
Extract a sub image of this image. The new image will have it's own reference count.
[in] | origin | extracted image origin. |
[in] | size | image size to extract. |
float fsdk::Image::getAspectRatio | ( | ) | const [inline] |
void* fsdk::Image::getData | ( | ) | [inline] |
const void* fsdk::Image::getData | ( | ) | const [inline] |
T* fsdk::Image::getDataAs | ( | ) | [inline] |
const T* fsdk::Image::getDataAs | ( | ) | const [inline] |
FSDK_API int fsdk::Image::getDataSize | ( | ) | const |
FSDK_API void fsdk::Image::getDataSize | ( | Sizer & | sizer | ) | const |
Get actual image size in bytes.
[inout] | sizer sizer to append result to. |
Format fsdk::Image::getFormat | ( | ) | const [inline] |
int fsdk::Image::getHeight | ( | ) | const [inline] |
Rect fsdk::Image::getRect | ( | ) | const [inline] |
FSDK_API int fsdk::Image::getRefCount | ( | ) | const [protected] |
Obtain reference count.
int fsdk::Image::getRowSize | ( | ) | const [inline] |
FSDK_API void* fsdk::Image::getScanLine | ( | int | y | ) |
Get image scanline data.
[in] | y | scanline number. |
FSDK_API const void* fsdk::Image::getScanLine | ( | int | y | ) | const |
Get image scanline data.
[in] | y | scanline number. |
T* fsdk::Image::getScanLineAs | ( | int | y | ) | [inline] |
Get image scanline data.
[in] | y | scanline number. |
const T* fsdk::Image::getScanLineAs | ( | int | y | ) | const [inline] |
Get image scanline data.
[in] | y | scanline number. |
Size fsdk::Image::getSize | ( | ) | const [inline] |
int fsdk::Image::getWidth | ( | ) | const [inline] |
static FSDK_API Result<Error> fsdk::Image::guessTypeFromMemory | ( | const void * | data, |
const uint32_t | sizeInBytes, | ||
Type & | type | ||
) | [static] |
Guess type of image written into memory.
[in] | data | Pointer to memory containing image. |
[in] | sizeInBytes | Count of bytes containing image pointed to by data. |
[out] | type | Type of passed image. |
bool fsdk::Image::isNull | ( | ) | const [inline] |
bool fsdk::Image::isSharedWith | ( | const Image & | other | ) | const [inline] |
[in] | other | other image to check againts. |
bool fsdk::Image::isValid | ( | ) | const [inline] |
FSDK_API Result<Error> fsdk::Image::load | ( | const char * | path | ) |
Load image from file.
This function loads image contents from disk. Supported types are: bmp, png, ppm, jpeg, tiff. If image is not empty, it's content will be freed and memory will be reallocated to fit in the data from the file if:
[in] | path | Input file path. |
FSDK_API Result<Error> fsdk::Image::load | ( | const char * | path, |
const Format | format | ||
) |
Load image from file and convert it to required format.
This function does exact same thing as method above, and additionally converts loaded image to input format.
[in] | path | Input file path. |
[in] | format | required image format. |
FSDK_API Result<Error> fsdk::Image::loadFromMemory | ( | const void * | data, |
const uint32_t | sizeInBytes | ||
) |
Load image from memory.
This function loads image contents from memory. Supported types are: bmp, png, ppm, jpeg, tiff. If image is not empty, it's content will be freed and memory will be reallocated to fit in the data from the file if:
[in] | data | Pointer to input memory. |
[in] | sizeInBytes | Count of bytes of image pointed to by data. |
FSDK_API Result<Error> fsdk::Image::loadFromMemory | ( | const void * | data, |
const uint32_t | sizeInBytes, | ||
const Format | format | ||
) |
Load image from memory and convert it to required format.
This function does exact same thing as method above, and additionally converts loaded image to input format.
[in] | data | Pointer to input memory. |
[in] | sizeInBytes | Count of bytes of image pointed to by data. |
[in] | format | required image format. |
FSDK_API Result<Error> fsdk::Image::loadFromMemoryOfType | ( | const void * | data, |
const uint32_t | sizeInBytes, | ||
const Type | type | ||
) |
Load image from memory of specific type.
This function loads specific type image contents from memory. If data points to image of another type, not the one passed, does nothing. Supported types are: bmp, png, ppm, jpeg, tiff. If image is not empty, it's content will be freed and memory will be reallocated to fit in the data from the file if:
[in] | data | Pointer to input memory. |
[in] | sizeInBytes | Count of bytes of image pointed to by data. |
[in] | type | Type of image to be loaded. |
FSDK_API Result<Error> fsdk::Image::loadFromMemoryOfType | ( | const void * | data, |
const uint32_t | sizeInBytes, | ||
const Type | type, | ||
const Format | format | ||
) |
Load image from memory of specific type and convert it to required format.
This function does exact same thing as method above, and additionally converts loaded image to input format.
[in] | data | Pointer to input memory. |
[in] | sizeInBytes | Count of bytes of image pointed to by data. |
[in] | type | Type of image to be loaded. |
[in] | format | required image format. |
FSDK_API SubImage fsdk::Image::map | ( | int | x, |
int | y, | ||
int | width, | ||
int | height | ||
) | const |
Map image contents to a given area.
[in] | x | horizontal coordinate of top left corner of image rect to map. |
[in] | y | vertical coordinate of top left corner of image rect to map. |
[in] | width | width of image rect to map |
[in] | height | height of image rect to map |
SubImage fsdk::Image::map | ( | const Rect & | rect | ) | const [inline] |
Map image contents to a given area.
[in] | rect | image rect to extract |
SubImage fsdk::Image::map | ( | const Size & | size | ) | const [inline] |
Map image contents to a given area.
[in] | size | image size to map. |
SubImage fsdk::Image::map | ( | const Point2i & | origin, |
const Size & | size | ||
) | const [inline] |
Map image contents to a given area.
[in] | origin | sub image image origin. |
[in] | size | sub image size to extract. |
fsdk::Image::operator bool | ( | ) | const [inline] |
Implicit cast to boolean; results in true if image is valid, false if not.
Assign other image.
[in] | other | image to assign. |
Move other image.
[in] | other | image to move. |
bool fsdk::Image::ownsData | ( | ) | const [inline] |
FSDK_API int fsdk::Image::release | ( | ) | [protected] |
Decrease reference count.
FSDK_API Image fsdk::Image::rescale | ( | float | scale | ) | const |
Rescale image keeping proportions.
[in] | scale | factor. Must be positive. |
FSDK_API int fsdk::Image::retain | ( | ) | [protected] |
Increase reference count.
FSDK_API Result<Error> fsdk::Image::rotate | ( | Image & | dest, |
RotationType | rotationType | ||
) | const |
Rotates an image on 90, 180 and 270 degrees. Allocates a new buffer of given size and fills image contents with provided data.
[in] | dest | dest image. |
[in] | rotationType | rotation type. |
FSDK_API Result<Image::Error> fsdk::Image::save | ( | const char * | path, |
fsdk::Image::ImageCompression | additionalFlag = fsdk::Image::ImageCompression::IC_NO_COMPRESSION |
||
) | const |
Save image.
This function saves image contents to disk. Type is extracted from provided file extension. If it is unknown, function fails. Supported types are: bmp, png, ppm, jpeg, tiff.
[in] | path | output file path with proper file extension. |
[in] | additionalFlag | additional flag for saving of png or jpg image |
FSDK_API Result<Error> fsdk::Image::save | ( | const char * | path, |
const Format | format | ||
) | const |
Convert and Save image.
This function converts image to required format and saves image contents to disk. Type is extracted from provided file extension. If it is unknown, function fails. Supported types are: bmp, png, ppm, jpeg, tiff.
[in] | path | output file path with proper file extension. |
[in] | format | required image format. |
FSDK_API Result<Image::Error> fsdk::Image::saveToMemory | ( | Image::Type | type, |
IArchive * | archive, | ||
fsdk::Image::ImageCompression | additionalFlag = fsdk::Image::ImageCompression::IC_NO_COMPRESSION |
||
) | const |
Save image to memory buffer.
This function saves image contents to memory buffer (IArchive). Passed IArchvie will call setSizeHint for resize.
[in] | Image::Type | format used to encode. |
[in] | IArchive | to store contents of encoded image. |
[in] | additionalFlag | additional flag for saving of png or jpg image |
FSDK_API Result<Image::Error> fsdk::Image::saveToMemory | ( | Image::Type | type, |
IArchive * | archive, | ||
const Format | format | ||
) | const |
Convert and save image to memory buffer.
This function converts image to required format and saves image contents to memory buffer (IArchive). Passed IArchvie will call setSizeHint for resize.
[in] | Image::Type | format used to encode. |
[in] | IArchive | to store contents of encoded image. |
[in] | format | required image format. |
FSDK_API Result<Error> fsdk::Image::set | ( | int | width, |
int | height, | ||
Format | format, | ||
const void * | data, | ||
MemoryResidence | residence = MemoryResidence::MemoryCPU , |
||
int | deviceId = 0 |
||
) |
Initializes an image with provided data. If current image is not empty and it's size and format match the provided ones, no memory reallocation is performed. Otherwise image is re-created to match requirements.
[in] | width | image width. |
[in] | height | image height. |
[in] | format | image format. |
[in] | data | image data. |
[in] | memory | residence of a data pointer. |
[in] | deviceId | index of a device where data pointer was allocated |
FSDK_API Result<Error> fsdk::Image::set | ( | int | width, |
int | height, | ||
Format | format, | ||
void * | data, | ||
bool | copy, | ||
MemoryResidence | residence = MemoryResidence::MemoryCPU , |
||
int | deviceId = 0 |
||
) |
Initializes an image with provided data. If copy is true and if current image is not empty and it's size and format match the provided ones, no memory reallocation is performed. Otherwise image is re-created to match requirements. If copy is false (which is default) this will just reference the provided data.
[in] | width | image width. |
[in] | height | image height. |
[in] | format | image format. |
[in] | data | image data. |
[in] | copy | whether to copy or reference data. |
[in] | memory | residence of a data pointer. |
[in] | deviceId | index of a device where data pointer was allocated |
FSDK_API Result<Error> fsdk::Image::set | ( | const Image & | other | ) |
Initializes an image as a reference to an other image.
[in] | other | other image. |
FSDK_API Result<Error> fsdk::Image::set | ( | const SubImage & | subImage | ) |
Initializes an image with contents of a sub image. Since sub images do not handle data life time, image contents are always copied.
[in] | subImage | sub image. |
void fsdk::Image::swap | ( | Image & | other | ) | [inline] |
Swap contents with another image.
[inout] | other image to swap with. |
Format fsdk::Image::m_format [protected] |
image format (