Welcome to our Support Center

BinaryIoU

Description

Computes the Intersection-Over-Union metric for class 0 and/or 1. Type : polymorphic.

 

 

Input parameters

 

 y_pred : array, predicted values (logits values).
 y_true : array, true values (logits values, or binary values if the threshold value is between 0 and 1).

parameters : cluster,

target_class_ids : array, list of target class ids for which the metric is returned.
threshold : float, representing the threshold for deciding whether prediction and true values are 1 or 0 (above the threshold is true, below is false).

Output parameters

 

binary_iou : float, result.

Use cases

Intersection Over Union (IOU) is a commonly used metric in computer vision, particularly for evaluating object detection and image segmentation performance.

The binary version of this metric, binary IOU, would be specifically used in binary image segmentation problems, where each pixel of the image is classified as belonging to the object of interest (class 1) or to the background (class 0). In this context, IOU measures the degree of overlap between the region predicted by the model as belonging to the object and the true object region in the image.

Consequently, binary IOU would be used in fields such as object detection, image recognition, autonomous driving, remote sensing, among others, where precise image segmentation is crucial.

 

Calculation

This class can be used to compute IoUs for a binary classification task where the predictions are provided as logits and true values as logits (or binary values if the threshold value is between 0 and 1). First a threshold is applied to the predicted and true values such that those that are below the threshold are converted to class 0 and those that are above the threshold are converted to class 1.

IoUs for classes 0 and 1 are then computed, the mean of IoUs for the classes that are specified by “target_class_ids” is returned.

 

Example

All these exemples are snippets PNG, you can drop these Snippet onto the block diagram and get the depicted code added to your VI (Do not forget to install HAIBAL library to run it).

Easy to use

Table of Contents