nrtk.impls.score_detections.class_agnostic_pixelwise_iou_scorer

Defines ClassAgnosticPixelwiseIoUScorer for class-agnostic pixelwise IoU scoring of object detections.

Classes:

ClassAgnosticPixelwiseIoUScorer: Computes pixelwise IoU scores for bounding boxes in a class-agnostic fashion.

Dependencies:
  • numpy for numerical operations.

  • smqtk_image_io for handling bounding boxes.

  • nrtk.interfaces.score_detections.ScoreDetections for the detection scoring interface.

Example usage:

scorer = ClassAgnosticPixelwiseIoUScorer() scores = scorer.score(actual_detections, predicted_detections)

Classes

ClassAgnosticPixelwiseIoUScorer

Implementation of ScoreDetection interface that computes the Pixelwise IoU scores in a Class-Agnostic manner.