An open API service indexing awesome lists of open source software.

https://github.com/nikhilroxtomar/mean-iou-in-numpy-tensorflow

A function for calculating mean iou, which can be used as a keras metrics.
https://github.com/nikhilroxtomar/mean-iou-in-numpy-tensorflow

iou-calculation semantic-segmentation tensorflow

Last synced: 2 months ago
JSON representation

A function for calculating mean iou, which can be used as a keras metrics.

Awesome Lists containing this project

README

          

# Mean-IOU-in-Numpy-TensorFlow

Mean Intersection-Over-Union is a common evaluation metric for semantic image segmentation, which first computes the IOU for each semantic class and then computes the average over classes. IOU is defined as follows:

IOU = true_positive / (true_positive + false_positive + false_negative). 

The mean iou function defined in the above code can be used as a keras metrics in any semantic segmentation task.

# Result

The above ones are the ground truth masks, and below ones are the predicted masks.