Skip to content

Support additional segmentation models/parameters (e.g. NMS conf/iou thresholds) #43

Description

Segmenting images with many distinct objects results in many objects being missed, e.g.:

image

(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,

image

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! 🙏

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions