You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 2, 2024. It is now read-only.
The image sets are sampled at a frame rate of 1 fps from the video while the video was recorded with 29.97 fps. To find the corresponding frame F to the image I you need to calculate: F = int(I*29.97), starting with I=0.
But, when looking into the 'training_data.zip' package, often times the values don't agree with this formula. For instance, in the 'Courthouse_mapping_reference.txt' file: ... 19 568 <-- should be int(19 * 29.97) = 569 20 598 <-- should be int(20 * 29.97) = 599 21 628 <-- should be int(21 * 29.97) = 629 ...
Is this offset intentional? Am I missing something here?
I'm trying to test my own functions for generating a mapping file, but am having trouble recreating the mapping files that have been provided.
The text was updated successfully, but these errors were encountered:
Yes, you are right, I checked and it looks like there is an offset by 1 in some of the provided mapping files. I need to check if there is a reason for that or if it is by mistake. However, this mapping is just used for a rough alignment and our registration method is quite robust against small initial misalignments like that. The evaluation algorithm converges to the same F1 score even when you are several frames off. So if you try it out it should give you the same result with our mapping, and when using the mapping you proposed.
Let us know if it works.
From the 'Download' page:
But, when looking into the 'training_data.zip' package, often times the values don't agree with this formula. For instance, in the 'Courthouse_mapping_reference.txt' file:
...
19 568
<-- should be int(19 * 29.97) = 56920 598
<-- should be int(20 * 29.97) = 59921 628
<-- should be int(21 * 29.97) = 629...
Is this offset intentional? Am I missing something here?
I'm trying to test my own functions for generating a mapping file, but am having trouble recreating the mapping files that have been provided.
The text was updated successfully, but these errors were encountered: