Search code examples
pythonc++object-detection

Which one is faster for object detection?


I want to do object detection. Right now I am using Python tensorflow faster-rcnn for object detection and opencv for image processing. In this situation I am taking 11 FPS. Should I pass to C++ to increase FPS? What is your idea? (Windows 10, RTX 2080 Ti, i9)


Solution

  • If you want a fast (real time) object detection method which performs as well as Faster R-CNN you can use YOLO. This one is written in C and is easy to use. In case of FPS, it depends on the image size as well as hardware configurations. But YOLO should perform much faster than RCNN.