shayantaherian / Object_Detection_Carla

Yolov3_Object detection
MIT License
6 stars 2 forks source link

Yolo Code #5

Closed shehrozbashir546 closed 6 months ago

shehrozbashir546 commented 1 year ago

Hi I am trying to understand how you implemented the yolo code from line 765-782. In my use case, I am also using opencv.dnn to read the weights, generate the blob and forward it.

Can you explain your reasoning behind it or point me to the resource where you learnt it from?

shayantaherian commented 6 months ago

sorry to respond so late. Well the blob and .dnn is objects that we need to use them for detection. simply after blob we are extracting bounding boxes based on each class and then. use NMS to remove the duplicate. There are many tutorials onlin such as https://pyimagesearch.com/2018/11/12/yolo-object-detection-with-opencv/.