Reputation: 11
I'm going to use mark-rcnn (based on tensorflow) to detect some cars and gasoline canisters. Images, what I have now, contains both cars and canisters. But I'm not shure about masks:
Upvotes: 1
Views: 119
Reputation: 2068
1)I recommend that you just mark the object you need to detect, if it overlaps that part do not mark it, use polygon shape for your annotation!!!!!
2)The best would be to try to mark the whole car in each of your annotations, no matter how small or large it looks.
3)Python, use of libraries, I recommend you to use conda, and use tensorflow-gpu for your training it will be faster.
4)MaskRCNN has a function that manages that, I think you can find in utils.py
def resize_image():
this function resizes an image keeping the aspect ratio unchanged
Upvotes: 2