How can i detect and localize object using tensorflow and convolutional neural network?

后端 未结 3 1175
臣服心动
臣服心动 2021-02-06 15:52

My problem statement is as follows :

\" Object Detection and Localization using Tensorflow and convolutional neural network \"

What i di

3条回答
  •  暖寄归人
    2021-02-06 15:57

    You have several ways to go about it.

    The most straight forward way is to get some suggested bounding boxes using some bounding box suggestion algorithm like selective search and run on each on of the suggestion the classification net that you already trained. This approach is the approach taken by R-CNN.

    For more advanced algorithm based on the above approach i suggest you read about Fast-R-CNN and Faster R-CNN.

    Look at Object detection with R-CNN? for some basic explanation.

    Darknet and SSD are based on a different approach if you want to undestand them you can read about them on

    http://www.cs.unc.edu/~wliu/papers/ssd.pdf https://pjreddie.com/media/files/papers/yolo.pdf

提交回复
热议问题