etes603: Return TOO_SHORT retry error for small images
If the image height is less than the sensor horizontal resolution, then return a retry error rather than trying to submit the image for further processing. Related to: #251
This commit is contained in:
parent
5d5995f201
commit
c0895a858d
1 changed files with 20 additions and 12 deletions
|
@ -859,13 +859,15 @@ m_capture_state (FpiSsm *ssm, FpDevice *dev)
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
FpImage *img;
|
|
||||||
unsigned int img_size;
|
|
||||||
/* Remove empty parts 2 times for the 2 frames */
|
/* Remove empty parts 2 times for the 2 frames */
|
||||||
process_removefpi_end (self);
|
process_removefpi_end (self);
|
||||||
process_removefpi_end (self);
|
process_removefpi_end (self);
|
||||||
img_size = self->fp_height * FE_WIDTH;
|
|
||||||
img = fp_image_new (FE_WIDTH, self->fp_height);
|
if (self->fp_height >= FE_WIDTH)
|
||||||
|
{
|
||||||
|
FpImage *img = fp_image_new (FE_WIDTH, self->fp_height);
|
||||||
|
unsigned int img_size = self->fp_height * FE_WIDTH;
|
||||||
|
|
||||||
/* Images received are white on black, so invert it. */
|
/* Images received are white on black, so invert it. */
|
||||||
/* TODO detect sweep direction */
|
/* TODO detect sweep direction */
|
||||||
img->flags = FPI_IMAGE_COLORS_INVERTED | FPI_IMAGE_V_FLIPPED;
|
img->flags = FPI_IMAGE_COLORS_INVERTED | FPI_IMAGE_V_FLIPPED;
|
||||||
|
@ -874,6 +876,12 @@ m_capture_state (FpiSsm *ssm, FpDevice *dev)
|
||||||
fp_dbg ("Sending the raw fingerprint image (%dx%d)",
|
fp_dbg ("Sending the raw fingerprint image (%dx%d)",
|
||||||
img->width, img->height);
|
img->width, img->height);
|
||||||
fpi_image_device_image_captured (idev, img);
|
fpi_image_device_image_captured (idev, img);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
fpi_image_device_retry_scan (idev, FP_DEVICE_RETRY_TOO_SHORT);
|
||||||
|
}
|
||||||
|
|
||||||
fpi_image_device_report_finger_status (idev, FALSE);
|
fpi_image_device_report_finger_status (idev, FALSE);
|
||||||
fpi_ssm_mark_completed (ssm);
|
fpi_ssm_mark_completed (ssm);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue