You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Segmenting images with many distinct objects results in many objects being missed, e.g.:
(Notice not all cells are marked.)
In OpenAdaptAI/OpenAdapt#679 we have good results using Ultralytics FastSAM for segmentation with very small values for non maximum suppression conf and iou:
# threshold below which boxes will be filtered out
conf: float = 0,
# discards all overlapping boxes with IoU > iou_threshold
iou: float = .05,
Incorporating FastSAM with parameterizable NMS would greatly increase the utility of SoM for tasks requiring high sensitivity and with many different objects.
Alternative suggestions for increasing the sensitivity with the current segmentation models would be greatly appreciated! 🙏
The text was updated successfully, but these errors were encountered:
abrichr
changed the title
Support additional segmentation parameters (e.g. NMS iou threshold)
Support additional segmentation parameters (e.g. NMS conf/iou thresholds)
Jun 5, 2024
abrichr
changed the title
Support additional segmentation parameters (e.g. NMS conf/iou thresholds)
Support additional segmentation models/parameters (e.g. NMS conf/iou thresholds)
Jun 5, 2024
Segmenting images with many distinct objects results in many objects being missed, e.g.:
(Notice not all cells are marked.)
In OpenAdaptAI/OpenAdapt#679 we have good results using Ultralytics FastSAM for segmentation with very small values for non maximum suppression
conf
andiou
:Incorporating FastSAM with parameterizable NMS would greatly increase the utility of SoM for tasks requiring high sensitivity and with many different objects.
Alternative suggestions for increasing the sensitivity with the current segmentation models would be greatly appreciated! 🙏
The text was updated successfully, but these errors were encountered: