-
Notifications
You must be signed in to change notification settings - Fork 104
/
eval_miou.py
105 lines (72 loc) · 3.02 KB
/
eval_miou.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
import os
import cv2
import numpy as np
from pathlib import Path
import argparse
def get_arguments():
parser = argparse.ArgumentParser()
parser.add_argument('--pred_path', type=str, default='persam')
parser.add_argument('--gt_path', type=str, default='./data/Annotations')
parser.add_argument('--ref_idx', type=str, default='00')
args = parser.parse_args()
return args
def main():
args = get_arguments()
print("Args:", args, "\n"),
class_names = sorted(os.listdir(args.gt_path))
class_names = [class_name for class_name in class_names if ".DS" not in class_name]
class_names.sort()
mIoU, mAcc = 0, 0
count = 0
for class_name in class_names:
count += 1
gt_path_class = os.path.join(args.gt_path, class_name)
pred_path_class = os.path.join("./outputs/" + args.pred_path, class_name)
gt_images = [str(img_path) for img_path in sorted(Path(gt_path_class).rglob("*.png"))]
pred_images = [str(img_path) for img_path in sorted(Path(pred_path_class).rglob("*.png"))]
intersection_meter = AverageMeter()
union_meter = AverageMeter()
target_meter = AverageMeter()
for i, (gt_img, pred_img) in enumerate(zip(gt_images, pred_images)):
if args.ref_idx in gt_img:
continue
gt_img = cv2.imread(gt_img)
gt_img = cv2.cvtColor(gt_img, cv2.COLOR_BGR2GRAY) > 0
gt_img = np.uint8(gt_img)
pred_img = cv2.imread(pred_img)
pred_img = cv2.cvtColor(pred_img, cv2.COLOR_BGR2GRAY) > 0
pred_img = np.uint8(pred_img)
intersection, union, target = intersectionAndUnion(pred_img, gt_img)
intersection_meter.update(intersection), union_meter.update(union), target_meter.update(target)
iou_class = intersection_meter.sum / (union_meter.sum + 1e-10)
accuracy_class = intersection_meter.sum / (target_meter.sum + 1e-10)
print(class_name + ',', "IoU: %.2f," %(100 * iou_class), "Acc: %.2f\n" %(100 * accuracy_class))
mIoU += iou_class
mAcc += accuracy_class
print("\nmIoU: %.2f" %(100 * mIoU / count))
print("mAcc: %.2f\n" %(100 * mAcc / count))
class AverageMeter(object):
"""Computes and stores the average and current value"""
def __init__(self):
self.reset()
def reset(self):
self.val = 0
self.avg = 0
self.sum = 0
self.count = 0
def update(self, val, n=1):
self.val = val
self.sum += val * n
self.count += n
self.avg = self.sum / self.count
def intersectionAndUnion(output, target):
assert (output.ndim in [1, 2, 3])
assert output.shape == target.shape
output = output.reshape(output.size).copy()
target = target.reshape(target.size)
area_intersection = np.logical_and(output, target).sum()
area_union = np.logical_or(output, target).sum()
area_target = target.sum()
return area_intersection, area_union, area_target
if __name__ == '__main__':
main()