This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Object Detection using deep learning

I am working on a problem statement that how to correctly identify the same objects which is varying in size or structure. For example: in the image there are a number of chairs but each of which is of different shape and size (Like few are small chairs and few are big likewise).

Would you give your opinion on how to deal with this?

Parents
  • You can train a neural network. Your training dataset shall contain objects of the same category but with various structures and sizes. For example, different kinds of chairs. You can also use data augmentation changing scale to add size variation. Check out Localizer, this is a python library for object detection with varying sizes, structures, and orientations.

Reply
  • You can train a neural network. Your training dataset shall contain objects of the same category but with various structures and sizes. For example, different kinds of chairs. You can also use data augmentation changing scale to add size variation. Check out Localizer, this is a python library for object detection with varying sizes, structures, and orientations.

Children
No data