forked from gamorosino/bl_app_dbb_DiceScore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dice_score.py
executable file
·44 lines (35 loc) · 1.43 KB
/
dice_score.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
#!/usr/bin/env python2
# -*- coding: utf-8 -*-
"""
Created on Thu Oct 7 16:10:08 2021
@author: gamorosino
"""
import argparse
import numpy as np
from dsc_util import dice_score
import os
#%% Main
if __name__ == '__main__':
## Parsing Inputs
parser = argparse.ArgumentParser(description='Estimate Metrics')
parser.add_argument('fullpath', metavar='predicted', type=str, nargs='+',
help='fullpath of predicted segmentation')
parser.add_argument('fullpath1', metavar='ground truth', type=str, nargs='+',
help='fullpath of ground truth')
parser.add_argument('fullpath2', metavar='output file', type=str, nargs='+',
help='fullpath of ouput file')
#parser.add_argument('fullpath2', metavar='checkpoints_dir', type=str, nargs='+',
# help='fullpath of checkpoints directories')
args = parser.parse_args()
predicted_file=args.fullpath[0]
gtruth_file=args.fullpath1[0]
output_file=args.fullpath2[0]
#outputfile=args.fullpath1[0]
#checkpoints_dir=args.fullpath2[0]
dice_score=dice_score(predicted_file,gtruth_file ,seg_labels=None)
dice_score_list=list(dice_score.astype(str))
dice_score_str=''
for x in dice_score_list:
dice_score_str=dice_score_str+x+' '
dice_score_str=dice_score_str.rstrip()
os.system("echo "+dice_score_str+" > "+output_file)