Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Instance segmentation examples #31084
Instance segmentation examples #31084
Changes from 28 commits
9652ee2
2a68a73
ffb000f
0bda3ea
55ebde0
bdb07c3
1088e8f
d42a1fa
67f9890
5e39a88
d5f6b58
71123e6
b537ba6
13e56fc
edb51ed
25bdc13
b3e64f5
d44dd69
781ccc2
414c1b5
bb40d46
b175acb
fa7dd21
e1eb7b3
9372fe9
d55b2b7
869f8f9
b7b9c36
6e40817
5d7ad92
b22246b
4d92577
d00a8fd
d734a6c
0a916d9
1caa2d9
27256f5
d0fccce
f5ba398
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Isn't this super complicated for people to create their own instance segmentation datasets? In the end they probably just want to have binary masks, indicating with 1's where the instance is and 0 where background is. Shouldn't we support this format as well?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's a fair point, I feel that your suggested way is more common.
But then they have to provide a class-id/name for each binary mask.
I think the best way would be to support various formats which provide different annotation platforms. On the other hand, usually platforms allow to export in different formats. Probably we can select several most common (like coco) and support them across segmentation, detection, instance segmentation.