Image.flip Method¶
Module: Image
Definition¶
Flips the image in-place.
flip(self, flip_horizontally: bool, flip_vertically: bool) -> None
Parameters
flip_horizontally
boolin Value indicating whether the image should be flipped horizontally.flip_vertically
boolin Value indicating whether the image should be flipped vertically.
Exceptions
An error has occurred during Face Library execution.
void flip(bool flipHorizontally, bool flipVertically)
Parameters
flipHorizontally
boolin Value indicating whether the image should be flipped horizontally.flipVertically
boolin Value indicating whether the image should be flipped vertically.
Exceptions
An error has occurred during Face Library execution.
public void Flip(bool flipHorizontally, bool flipVertically)
Parameters
flipHorizontally
boolin Value indicating whether the image should be flipped horizontally.flipVertically
boolin Value indicating whether the image should be flipped vertically.
Exceptions
An error has occurred during Face Library execution.
public void flip(boolean flipHorizontally, boolean flipVertically) throws FaceException
Parameters
flipHorizontally
booleanin Value indicating whether the image should be flipped horizontally.flipVertically
booleanin Value indicating whether the image should be flipped vertically.
Exceptions
An error has occurred during Face Library execution.
public func flip(flipHorizontally: Bool, flipVertically: Bool) throws
Parameters
flipHorizontally
Boolin Value indicating whether the image should be flipped horizontally.flipVertically
Boolin Value indicating whether the image should be flipped vertically.
Exceptions
An error has occurred during Face Library execution.
int id3FaceImage_Flip (
ID3_FACE_IMAGE hImage,
bool flipHorizontally,
bool flipVertically)
Parameters
hImage
ID3_FACE_IMAGEin Handle to the Image object.flipHorizontally
boolin Value indicating whether the image should be flipped horizontally.flipVertically
boolin Value indicating whether the image should be flipped vertically.
Returns