We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
import poimage
def removesy(input_image,output_image): # 支持jpg、png等所有图片格式 poimage.del_watermark(input_image=input_image,output_image=output_image)
if name == "main":
input_image="C:/Users/zhangtao/Desktop/1/1.png" output_image="C:/Users/zhangtao/Desktop/1/1.0.png" removesy(input_image,output_image)
The text was updated successfully, but these errors were encountered:
你可以选择将这两个路径都改成全英文的路径便可解决。或者将poimge库的del_watermark方法下的cv2.imread()和cv2.imread()改成cv2.imdecode()。
Sorry, something went wrong.
No branches or pull requests
import poimage
def removesy(input_image,output_image):
# 支持jpg、png等所有图片格式
poimage.del_watermark(input_image=input_image,output_image=output_image)
if name == "main":
The text was updated successfully, but these errors were encountered: