<div dir="ltr">I confirm that this improves stitching. Especially with tall frames.</div><br><div class="gmail_quote"><div dir="ltr">On Sat, Mar 3, 2018 at 12:07 AM Vasily Khoruzhick <<a href="mailto:anarsoul@gmail.com">anarsoul@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi Timur,<br>
<br>
On Wed, Feb 28, 2018 at 12:41 PM, Timur Celik <<a href="mailto:clktmr@gmail.com" target="_blank">clktmr@gmail.com</a>> wrote:<br>
> Hello everybody,<br>
><br>
> I have already discussed this with Igor. There are two different bugs in the<br>
> assembling of frames. I think this needs some attention because it made<br>
> libfprint unusable for me and it affects all sensors.<br>
><br>
> In forward mode every frame stores the delta from the previous frame, in<br>
> reverse mode it stores the delta to the next frame. This causes images to<br>
> use the wrong delta while assembling in forward mode. The resulting<br>
> stitching artifacts may be subtle when the movement was continuous, because<br>
> the deltas will be similar.<br>
<br>
Thanks for report. I'll try to look into it this weekend.<br>
<br>
> ---<br>
> libfprint/assembling.c | 11 +++++++++--<br>
> 1 file changed, 9 insertions(+), 2 deletions(-)<br>
><br>
> diff --git a/libfprint/assembling.c b/libfprint/assembling.c<br>
> index 1052f99..bf2ff13 100644<br>
> --- a/libfprint/assembling.c<br>
> +++ b/libfprint/assembling.c<br>
> @@ -279,11 +279,18 @@ struct fp_img *fpi_assemble_frames(struct<br>
> fpi_frame_asmbl_ctx *ctx,<br>
>  do {<br>
>   fpi_frame = stripe->data;<br>
><br>
> -       y += fpi_frame->delta_y;<br>
> -       x += fpi_frame->delta_x;<br>
> +       if(reverse) {<br>
> +       y += fpi_frame->delta_y;<br>
> +       x += fpi_frame->delta_x;<br>
> +       }<br>
><br>
>   aes_blit_stripe(ctx, img, fpi_frame, x, y);<br>
><br>
> +       if(!reverse) {<br>
> +       y += fpi_frame->delta_y;<br>
> +       x += fpi_frame->delta_x;<br>
> +       }<br>
> +<br>
>   stripe = g_slist_next(stripe);<br>
>   i++;<br>
>  } while (i < stripes_len);<br>
> --<br>
> 2.14.3<br>
><br>
><br>
> The second bug is in reverse mode. The last image is always misplaced<br>
> because the sign of the delta vector isn't corrected. This bug is always be<br>
> visible.<br>
><br>
> ---<br>
> libfprint/assembling.c | 4 ++--<br>
> 1 file changed, 2 insertions(+), 2 deletions(-)<br>
><br>
> diff --git a/libfprint/assembling.c b/libfprint/assembling.c<br>
> index bf2ff13..0781006 100644<br>
> --- a/libfprint/assembling.c<br>
> +++ b/libfprint/assembling.c<br>
> @@ -131,8 +131,8 @@ static unsigned int do_movement_estimation(struct<br>
> fpi_frame_asmbl_ctx *ctx,<br>
><br>
>   if (reverse) {<br>
>    find_overlap(ctx, prev_stripe, cur_stripe, &min_error);<br>
> -       prev_stripe->delta_y = -prev_stripe->delta_y;<br>
> -       prev_stripe->delta_x = -prev_stripe->delta_x;<br>
> +       cur_stripe->delta_y = -cur_stripe->delta_y;<br>
> +       cur_stripe->delta_x = -cur_stripe->delta_x;<br>
>   }<br>
>   else<br>
>    find_overlap(ctx, cur_stripe, prev_stripe, &min_error);<br>
> --<br>
> 2.14.3<br>
><br>
><br>
> I have opened a ticket on bugzilla<br>
> (<a href="https://bugs.freedesktop.org/show_bug.cgi?id=105027" rel="noreferrer" target="_blank">https://bugs.freedesktop.org/show_bug.cgi?id=105027</a>) and hope to see this<br>
> confirmed and merged soon.<br>
><br>
> Timur<br>
><br>
> _______________________________________________<br>
> fprint mailing list<br>
> <a href="mailto:fprint@lists.freedesktop.org" target="_blank">fprint@lists.freedesktop.org</a><br>
> <a href="https://lists.freedesktop.org/mailman/listinfo/fprint" rel="noreferrer" target="_blank">https://lists.freedesktop.org/mailman/listinfo/fprint</a><br>
_______________________________________________<br>
fprint mailing list<br>
<a href="mailto:fprint@lists.freedesktop.org" target="_blank">fprint@lists.freedesktop.org</a><br>
<a href="https://lists.freedesktop.org/mailman/listinfo/fprint" rel="noreferrer" target="_blank">https://lists.freedesktop.org/mailman/listinfo/fprint</a><br>
</blockquote></div>