Update analyze.py

This commit is contained in:
mcguirepr89
2021-10-03 19:59:53 -04:00
committed by GitHub
parent e30f2a1eff
commit 1c4015c507
+3 -1
View File
@@ -1,4 +1,3 @@
import os
os.environ['TF_CPP_MIN_LOG_LEVEL'] = '3'
os.environ['CUDA_VISIBLE_DEVICES'] = ''
@@ -218,6 +217,9 @@ def main():
# Write detections to output file
min_conf = max(0.01, min(args.min_conf, 0.99))
writeResultsToFile(detections, min_conf, args.o)
for i in detections:
print("\n", detections[i][0],"\n")
if __name__ == '__main__':