ThinkCode

Results 2 issues of ThinkCode

I disable the raspberry PI on the website, and then I disable the printer. Raspberry PI's system won't boot when the printer starts up again

Q - Questions

![测试图片](https://github.com/guofei9987/blind_watermark/assets/40518405/98ea3074-d49f-4e9d-bf58-b4171e523511) 使用项目中自带的二维码图片给这个图片打上水印 ![第一次打水印的结果](https://github.com/guofei9987/blind_watermark/assets/40518405/2c18093b-56cb-40dd-a822-9a7d6a0f48db) 再次给上面打上水印的图片再次打上自己的二维码图片水印 ![第二次打水印的结果](https://github.com/guofei9987/blind_watermark/assets/40518405/74797055-3f24-4922-8b17-e249cd8413bc) 成功解出了我的水印, 并且设置不同的密码依然可以覆盖 ![wm_extracted](https://github.com/guofei9987/blind_watermark/assets/40518405/2114f9ed-2209-4fbb-bbc0-64f5d751f16d) 测试代码: ```Python #!/usr/bin/env python3 # -*- coding: utf-8 -*- import cv2 from blind_watermark import WaterMark import os os.chdir(os.path.dirname(__file__)) bwm = WaterMark(password_wm=123, password_img=123)...