ImageDict.get Method¶
Module: ImageDict
Definition¶
Gets an item of the ImageDict object.
get(self, key: str) -> Image
Parameters
key
strin Unique key of the Image item to get.
Returns
Image item to get.
Exceptions
An error has occurred during Face Library execution.
Image get(String? key)
Parameters
key
Stringin Unique key of the Image item to get.
Returns
Image item to get.
Exceptions
An error has occurred during Face Library execution.
public Image Get(string key)
Parameters
key
stringin Unique key of the Image item to get.
Returns
Image item to get.
Exceptions
An error has occurred during Face Library execution.
public Image get(String key) throws FaceException
Parameters
key
Stringin Unique key of the Image item to get.
Returns
Image item to get.
Exceptions
An error has occurred during Face Library execution.
public func get(key: String) throws -> Image
Parameters
key
Stringin Unique key of the Image item to get.
Returns
Image item to get.
Exceptions
An error has occurred during Face Library execution.
int id3FaceImageDict_Get (
ID3_FACE_IMAGE_DICT hImageDict,
const char * key,
ID3_FACE_IMAGE hImageItem)
Parameters
hImageDict
ID3_FACE_IMAGE_DICTin Handle to the ImageDict object.key
const char *in Unique key of the Image item to get.hImageItem
ID3_FACE_IMAGEout Image item to get.
Returns