├── LICENSE ├── README.md ├── index.html └── upload_icon.png /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 Bruce 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Image-Anti-OCR 2 | 3 | ### In the background 4 | 5 | Sharing large number of images containing political infomation may got blocked by govt. 6 | 7 | To avoid images being blocked, this repo makes sure you can successfully share images in a political censorship machine. 8 | 9 | The anti algrithm was copied from [anti-ocr.git](https://github.com/yuzu233/anti-ocr.git). 10 | 11 | ### how to run it: 12 | 13 | ``` shell script 14 | cd Image-Anti-OCR 15 | python3 -m http.server 16 | ``` 17 | 18 | And then you can open [http://localhost:8000/](http://localhost.8000) in your web-browser. 19 | 20 | 21 | 22 | ### In addition 23 | 24 | I'm very sorry for a few bugs in there. Not all images work with it very well. 25 | 26 | After executed some of special size of image, this algorithm will make human beings not recognize words from covered images. In that case, you can try to edit js to get it be recognized. 27 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |
29 |
30 |
33 |
34 |