letmecheck
letmecheck

Reputation: 1369

Explain the result of Microsoft video API json for Face detection and tracking

How to plot the detected faces on to the video frames from the result json of face detection and tracking. I mean, how to calculate the frame number for particular event in the Json file.

Upvotes: 0

Views: 111

Answers (1)

cthrash
cthrash

Reputation: 2973

This give some details in case you hadn't seen it.

In essence, the video is divided into one or more fragments, and each fragment is divided in to intervals. There will one event per interval. The times and durations of fragments and intervals are expressed in ticks, which you can convert to time by dividing by the timescale. You can map frames to/from times using the framerate.

Upvotes: 1

Related Questions