Skip to content

Commit

Permalink
Fixed tools/fet/fet.py (#183)
Browse files Browse the repository at this point in the history
  • Loading branch information
carolinepacheco authored Jul 20, 2022
1 parent ea6420d commit 77c87b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/fet/fet.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
os.makedirs(path_sc)

files_gt = [ f for f in listdir(path_gt) if isfile(join(path_gt,f)) ]
files_fg = [ f for f in listdir(path_gt) if isfile(join(path_gt,f)) ]
files_fg = [ f for f in listdir(path_fg) if isfile(join(path_fg,f)) ]

TP = .0 # True positive pixels
FP = .0 # False positive pixels
Expand Down

0 comments on commit 77c87b7

Please sign in to comment.