I am looking for a video analysis tool. I would like to know can tensorflow object detection API tell me how many T-shirts appear in a movie? If not, what tool can do it?
Thanks
I am looking for a video analysis tool. I would like to know can tensorflow object detection API tell me how many T-shirts appear in a movie? If not, what tool can do it?
Thanks
Videos are a just a sequence of images. You can use a number of libraries to extract the individual frames: OpenCV, FFMPEG (command line), and others. Note that Tensorflow itself doesn't provide an object detection API, I think what you mean to say is to use an Object Detection API that was built using Tensorflow. Most of those APIs will be expecting one, or a batch, of images and it will be up to you to extract the frames, run them through, and rebuild the video at the end.