FaceAnalyser.checkColorizedImage Method¶
Module: FaceAnalyser
Definition¶
Verifies if an image is colorized or grayscale.
check_colorized_image(self, image: Image) -> bool
Parameters
imageImagein Source image to process.
Returns
boolThe boolean decision: True if colorized, False if grayscale.
Exceptions
An error has occurred during Face Library execution.
bool checkColorizedImage(Image image)
Parameters
imageImagein Source image to process.
Returns
boolThe boolean decision: True if colorized, False if grayscale.
Exceptions
An error has occurred during Face Library execution.
public bool CheckColorizedImage(Image image)
Parameters
imageImagein Source image to process.
Returns
boolThe boolean decision: True if colorized, False if grayscale.
Exceptions
An error has occurred during Face Library execution.
public boolean checkColorizedImage(Image image) throws FaceException
Parameters
imageImagein Source image to process.
Returns
booleanThe boolean decision: True if colorized, False if grayscale.
Exceptions
An error has occurred during Face Library execution.
public func checkColorizedImage(image: Image) throws -> Bool
Parameters
imageImagein Source image to process.
Returns
BoolThe boolean decision: True if colorized, False if grayscale.
Exceptions
An error has occurred during Face Library execution.
int id3FaceAnalyser_CheckColorizedImage (
ID3_FACE_ANALYSER hFaceAnalyser,
ID3_FACE_IMAGE hImage,
bool * isColorized)
Parameters
hFaceAnalyserID3_FACE_ANALYSERin Handle to the FaceAnalyser object.hImageID3_FACE_IMAGEin Source image to process.isColorizedbool *out The boolean decision: True if colorized, False if grayscale.
Returns