generated from roboflow/template-python
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Support for IOS Matching Metric. Introduced the mask_non_max_merge
function for handling non-maximum merging of masks
#1774
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
Merged
Merged
Changes from 9 commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
e4b5a8e
### feat(detection): Support for IOS Matching Metric**
SunHao-AI 9cd6549
feat(detection): Support for IOS Matching Metric
SunHao-AI 8d29796
Merge remote-tracking branch 'origin/develop' into develop
SunHao-AI 4679334
fix(pre_commit): 🎨 auto format pre-commit hooks
pre-commit-ci[bot] 39766f4
Merge branch 'roboflow:develop' into develop
SunHao-AI 9a9324a
Merge branch 'roboflow:develop' into develop
SunHao-AI 646ac83
fix(pre_commit): 🎨 auto format pre-commit hooks
pre-commit-ci[bot] d002858
ci: 注释掉创建 GitHub App token 的步骤
SunHao-AI eb170bc
ci:取消注释 GitHub App token 步骤
SunHao-AI 13e857c
refactor(detection): 重构合并检测对象的逻辑
SunHao-AI 0b120f1
fix(pre_commit): 🎨 auto format pre-commit hooks
pre-commit-ci[bot] f47f032
Merge branch 'roboflow:develop' into develop
SunHao-AI 50c0d54
Merge branch 'develop' into develop
soumik12345 74d5f0f
fix(pre_commit): 🎨 auto format pre-commit hooks
pre-commit-ci[bot] 9517987
chore: make pre-commit happy
soumik12345 fb16bd9
chore: change match_metric to overlap_metric
soumik12345 42e9c5f
fix(pre_commit): 🎨 auto format pre-commit hooks
pre-commit-ci[bot] 7849831
chore: make pre-commit happy
soumik12345 3fed5f9
update: docs
soumik12345 fd25f4b
add: docs for mask_non_max_merge
soumik12345 ebf4b93
add: test for mask_non_max_merge
soumik12345 b3024e7
chore: make pre-commit happy
soumik12345 007d8f5
chore: make enum comparisons
soumik12345 ae77077
fix(pre_commit): 🎨 auto format pre-commit hooks
pre-commit-ci[bot] 4977fd6
add: test_mask_non_max_merge
soumik12345 9a38ebd
fix(pre_commit): 🎨 auto format pre-commit hooks
pre-commit-ci[bot] 7ea8c2e
chore: remove excessive comments in group_overlapping_masks
soumik12345 c11a7de
chore: refactor docs for
soumik12345 84c9a34
update: docstring
soumik12345 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
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.
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.
match metric should be converted into
OverlapMetric
enum, added tosupervision.detection.overlap_filter
and documented in a similar way asOverlapFilter
.all
match_metric: str = "IOU"
should be converted intooverlap_metric: OverlapMetric = OverlapMetric.IOU
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.
OverlapMetric
should be added todouble_detection_filter
docsThere 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.
I would even go as far as providing math formulas for
IOU
andIOS