FingerImage.setResolution Method¶
Module: FingerImage
Definition¶
Sets both the image horizontal and vertical resolutions.
This is a shortcut function to replace SetHorizontalResolution() and SetVerticalResolution() when they are equal.
Mostly used to set both to 500dpi, which is the working resolution of the FingerExtractor.
Warning
this function does not process the image, it simply sets the resolution fields.
set_resolution(self, resolution: int) -> None
Parameters
resolution
intin Resolution to set.
Exceptions
An error has occurred during Finger Library execution.
void setResolution(int resolution)
Parameters
resolution
intin Resolution to set.
Exceptions
An error has occurred during Finger Library execution.
public void SetResolution(int resolution)
Parameters
resolution
intin Resolution to set.
Exceptions
An error has occurred during Finger Library execution.
public void setResolution(int resolution) throws FingerException
Parameters
resolution
intin Resolution to set.
Exceptions
An error has occurred during Finger Library execution.
public func setResolution(resolution: Int32) throws
Parameters
resolution
Int32in Resolution to set.
Exceptions
An error has occurred during Finger Library execution.
int id3FingerImage_SetResolution (
ID3_FINGER_IMAGE hFingerImage,
int resolution)
Parameters
hFingerImage
ID3_FINGER_IMAGEin Handle to the FingerImage object.resolution
intin Resolution to set.
Returns