-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ASUS VivoBook S13 S333JQ #8
Comments
If none of those things get it working, please try running the prototype in this repo and send the logs it outputs. As for |
Still cannot verify the enrolled fingerprint. And apparently the fingerprint is 80x80. Output of
|
Alright well it looks like you're capturing images fine, but libfprint doesn't like them being so small. Sometimes it discards stuff close to the edge of the frame, so maybe try increasing the image_width in this file, something like: --- a/libfprint/drivers/elanspi.c
+++ b/libfprint/drivers/elanspi.c
@@ -1325,7 +1325,7 @@ elanspi_fp_frame_stitch_and_submit (FpiDeviceElanSpi *self)
g_autoptr(FpImage) img = NULL;
g_autoptr(FpImage) scaled = NULL;
struct fpi_frame_asmbl_ctx assembling_ctx = {
- .image_width = (self->frame_width * 3) / 2,
+ .image_width = (self->frame_width * 3),
.frame_width = self->frame_width,
.frame_height = self->frame_height, and see if that helps it any. |
Device: ASUS VivoBook S13 S333JQ
OS: Fedora 35
Kernel: 5.14.6-300.fc35.x86_64
Hi there, thanks for the hard work.
I've tested on my VIvoBook S13, img-capture, enroll works fine, but verify doesn't.
PID is
3128
so I added the following to the ID table:I've tested with
ELANSPI_180_ROTATE
too, still cannot verify the enrolled fingerprint.Oh by the way
printdump.py
can only work with 64x64 width and height. Does this mean the sensor is too small?The text was updated successfully, but these errors were encountered: