Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Sibozhu committed Jan 28, 2020
1 parent c1def1f commit 1c69494
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CVC-YOLOv3/detect.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ def detect(target_path,
for i in tqdm(files,desc='Doing Single Image Detection'):
filename=detection_tmp_path + i

detection_path = single_img_detect(target_path=filename,model=model,device=device,conf_thres=conf_thres,nms_thres=nms_thres)
detection_path = single_img_detect(target_path=target_filepath,output_path=output_path,mode=mode,model=model,device=device,conf_thres=conf_thres,nms_thres=nms_thres)
#reading each files
img = cv2.imread(detection_path)
height, width, layers = img.shape
Expand Down

0 comments on commit 1c69494

Please sign in to comment.