Update im.copy() to im in examples

This commit is contained in:
felixhjh
2022-12-11 14:10:16 +00:00
parent f91a6126ee
commit 2f6f6977d7
30 changed files with 31 additions and 31 deletions

View File

@@ -52,7 +52,7 @@ if args.image is None:
else:
image = args.image
im = cv2.imread(image)
result = model.predict(im.copy())
result = model.predict(im)
print(result)
# 预测结果可视化
vis_im = fd.vision.vis_detection(im, result)