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

@@ -56,7 +56,7 @@ model = fd.vision.matting.PPMatting(
# 预测图片抠图结果
im = cv2.imread(args.image)
bg = cv2.imread(args.bg)
result = model.predict(im.copy())
result = model.predict(im)
print(result)
# 可视化结果
vis_im = fd.vision.vis_matting(im, result)