FaceAnalyser.computeNoise Method¶
Module: FaceAnalyser
Definition¶
Measures the image noise.
compute_noise(self, image: Image) -> int
Parameters
image
Imagein Source image to process.
Returns
int
The estimated noise score. 0 means no noise, 100 means no signal.
Exceptions
An error has occurred during Face Library execution.
int computeNoise(Image image)
Parameters
image
Imagein Source image to process.
Returns
int
The estimated noise score. 0 means no noise, 100 means no signal.
Exceptions
An error has occurred during Face Library execution.
public int ComputeNoise(Image image)
Parameters
image
Imagein Source image to process.
Returns
int
The estimated noise score. 0 means no noise, 100 means no signal.
Exceptions
An error has occurred during Face Library execution.
public int computeNoise(Image image) throws FaceException
Parameters
image
Imagein Source image to process.
Returns
int
The estimated noise score. 0 means no noise, 100 means no signal.
Exceptions
An error has occurred during Face Library execution.
public func computeNoise(image: Image) throws -> Int32
Parameters
image
Imagein Source image to process.
Returns
Int
The estimated noise score. 0 means no noise, 100 means no signal.
Exceptions
An error has occurred during Face Library execution.
int id3FaceAnalyser_ComputeNoise (
ID3_FACE_ANALYSER hFaceAnalyser,
ID3_FACE_IMAGE hImage,
int * noiseScore)
Parameters
hFaceAnalyser
ID3_FACE_ANALYSERin Handle to the FaceAnalyser object.hImage
ID3_FACE_IMAGEin Source image to process.noiseScore
int *out The estimated noise score. 0 means no noise, 100 means no signal.
Returns