# blind-watermark **Repository Path**: f-ctf/blind-watermark ## Basic Information - **Project Name**: blind-watermark - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-10-27 - **Last Updated**: 2024-10-27 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # blind-watermark This was written in Python2.7 [Python3 Version](https://github.com/linyacool/blind-watermark/tree/python3) # Usage ```shell python encode.py --image --watermark --result python decode.py --original --image --result Use --alpha to change the alpha (default 5.0). ``` # Example ## encode: original image
![image](https://github.com/linyacool/blind-watermark/blob/master/ori.png) watermark
![image](https://github.com/linyacool/blind-watermark/blob/master/watermark.png) ```shell python encode.py --image ori.png --watermark watermark.png --result res.png ``` result
![image](https://github.com/linyacool/blind-watermark/blob/master/res.png) ## decode: ```shell python decode.py --original ori.png --image res.png --result extract.png ``` watermark
![image](https://github.com/linyacool/blind-watermark/blob/master/extract.png)