Skip to content

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

Notifications You must be signed in to change notification settings

nikhilroxtomar/Mean-IOU-in-Numpy-TensorFlow

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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.

About

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

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages