Detectron: Recognize same object in a video

Created on 13 Mar 2018  路  6Comments  路  Source: facebookresearch/Detectron

Hi everyone,
I'm working with Detectron for a university project. All things in documentation that I followed works fine.
My issue is to detect an object in a video and recognize if the object at frame x is the same at frame x+1.
Since this is my first time with Detectron, I don't know how to implement it.
Any ideas?

System information

  • Operating system: Ubuntu 14.04
  • CUDA version: 8.0
  • cuDNN version: 7.1.1
  • NVIDIA driver version: 367.48
  • GPU models: 2 GeForce GTX 980
community help wanted

Most helpful comment

@ciolo you can also find code here: https://github.com/feichtenhofer/Detect-Track

All 6 comments

This is a tracking problem, which is not usually covered in a detection framework.
You can use a tracker on RGB frames (find implementations in OpenCV), or use correlations on feature maps.
Either way you are going to have to get quite some implementation work done here as far as I can tell.

@kampelmuehler Thank u for reply. Coding is not a problem, but as I said, since is the first time with Detectron I don't know where to extract "useful things" for my work.

https://arxiv.org/pdf/1710.03958.pdf
@ciolo
There are many branches in tracking
Maybe what you need is this

@ciolo I also strongly suggest you come up with a theoretical plan on what you wanna achieve and how you wanna go about it before starting to think about implementations.
Read about detection and tracking. https://arxiv.org/pdf/1710.03958.pdf is definitely a good place to start.

I'll read this and then I'll think how to implement my idea. If I'll encounter some problems I'll write here.
Thank u all for now!

@ciolo you can also find code here: https://github.com/feichtenhofer/Detect-Track

Was this page helpful?
0 / 5 - 0 ratings

Related issues

twmht picture twmht  路  3Comments

rbgirshick picture rbgirshick  路  3Comments

kampelmuehler picture kampelmuehler  路  4Comments

Adhders picture Adhders  路  3Comments

Hwang-dae-won picture Hwang-dae-won  路  3Comments