How to locate multiple objects in the same image?

前端 未结 2 668
臣服心动
臣服心动 2021-01-31 11:53

I am a newbie in TensorFlow.

Currently, I am testing some classification\'s examples \"Convolutional Neural Network\" in the TensorFlow website, and it explains how to c

2条回答
  •  心在旅途
    2021-01-31 12:28

    A naive approach for what you are trying to do would be to classify parts of the image independently.

    But there are some better techniques for object detection. Actually, there is the TensorFlow Object Detection API, which gives you access to the most common object detection methods like Faster R-CNN or SSD.

提交回复
热议问题