Using CVAT Event Log CSV to calculate Time taken for Annotation for each Image in a Job
My actions before raising this issue
- [x] Read/searched the docs
- [x] Searched past issues
I am trying to calculate the exact time Taken for Annotation in each Image in a job.
As far as I understand, there are two approaches to calculating the Annotation Time for each Image: Method 1. Simply calculate the Time Taken in completing the entire Job and then get an average Annotation time by dividing by the number of Images in the Job. The method is quick but does not tell the exact time Taken in each image.
Method 2: To find and group the activities which belong to a particular Frame No and then add all the working time in the group to calculate the Time spent on Annotation for that particular Image.
I am attempting Method 2.
While attempting the same, I have come across a few Bugs which are as follows:
- Whenever one edits any Uploaded Annotation then, the corresponding Client Activity is NOT SHOWN in the Events Log CSV, only when we save the Job, a sever activity 'update:shapes' is shown, so one is not able to find frames Annotation Edit working time.
- The 'load:job' scope (i.e activity) does not tell that on which Frame number the Job is loaded, as the Job can be loaded in 2 ways, 1st by Clicking on the Job number in the Task page(this loads the first Frame) and 2nd the can also be loaded by Frame URL directly(this can load any particular Frame in the Job), so one is unable to decide that on which Frame exactly a Job was Loaded by the User
Please share your thoughts on the above findings, it would be a great help in exactly calculating the Time taken for Annotation per image if the above point(s) are handled.
my CVAT version- 2.4.4
@bsekachev Any thoughts on this? Are we missing something very basic? We are happy to contribute an API for annotation/reviewing time taken per image/frame if we are able to understand and solve this.
@bsekachev Any thoughts on this? Are we missing something very basic? We are happy to contribute an API for annotation/reviewing time taken per image/frame if we are able to understand and solve this.
@nmanovic Any help would be much appreciated.
Any Insight will be much appreciated. @bsekachev
is there any update on this ?
I may recommend to consider change:frame events only and their timestamps.
If nothing happened on a frame, like user immediately did 1 -> 2 -> 3, it will show change:frame event from 1 to 3.
Time between next change:frame event and previous change:frame event should approximately be time spend on a frame.
You may also substract change:frame duration (while data are fetching from the server and decoding)