Image.flipTo Method¶
Module: Image
Definition¶
Flips the image.
flip_to(self, flip_horizontally: bool, flip_vertically: bool, dst_image: Image) -> None
Parameters
flip_horizontallyboolin Value indicating whether the image should be flipped horizontally.flip_verticallyboolin Value indicating whether the image should be flipped vertically.dst_imageImagein The destination Image object that receives the flipped image.
Exceptions
An error has occurred during Face Library execution.
void flipTo(bool flipHorizontally, bool flipVertically, Image dstImage)
Parameters
flipHorizontallyboolin Value indicating whether the image should be flipped horizontally.flipVerticallyboolin Value indicating whether the image should be flipped vertically.dstImageImagein The destination Image object that receives the flipped image.
Exceptions
An error has occurred during Face Library execution.
public void FlipTo(bool flipHorizontally, bool flipVertically, Image dstImage)
Parameters
flipHorizontallyboolin Value indicating whether the image should be flipped horizontally.flipVerticallyboolin Value indicating whether the image should be flipped vertically.dstImageImagein The destination Image object that receives the flipped image.
Exceptions
An error has occurred during Face Library execution.
public void flipTo(boolean flipHorizontally, boolean flipVertically, Image dstImage) throws FaceException
Parameters
flipHorizontallybooleanin Value indicating whether the image should be flipped horizontally.flipVerticallybooleanin Value indicating whether the image should be flipped vertically.dstImageImagein The destination Image object that receives the flipped image.
Exceptions
An error has occurred during Face Library execution.
public func flipTo(flipHorizontally: Bool, flipVertically: Bool, dstImage: Image) throws
Parameters
flipHorizontallyBoolin Value indicating whether the image should be flipped horizontally.flipVerticallyBoolin Value indicating whether the image should be flipped vertically.dstImageImagein The destination Image object that receives the flipped image.
Exceptions
An error has occurred during Face Library execution.
int id3FaceImage_FlipTo (
ID3_FACE_IMAGE hImage,
bool flipHorizontally,
bool flipVertically,
ID3_FACE_IMAGE hDstImage)
Parameters
hImageID3_FACE_IMAGEin Handle to the Image object.flipHorizontallyboolin Value indicating whether the image should be flipped horizontally.flipVerticallyboolin Value indicating whether the image should be flipped vertically.hDstImageID3_FACE_IMAGEin The destination Image object that receives the flipped image.
Returns