Skip to content
This repository has been archived by the owner on Mar 21, 2022. It is now read-only.

Commit

Permalink
Update Notes
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeanAmier committed Aug 19, 2021
1 parent 4dcc90e commit dfe60ee
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
/Releases/
*.pdf
18 changes: 17 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# 办公小工具

目前发布的 EXE 可执行文件支持在 Win 10 直接运行,已知在 Win 7 无法正常运行。
使用 Python 编写各种能够提高工作效率的小工具,代码可供学习或使用,不可用于非法用途!
使用 Python 编写各种能够提高工作效率的小工具,代码可供学习和使用,不可用于非法用途!

## 报告编辑部小工具

Expand Down Expand Up @@ -33,3 +33,19 @@
### 常用内容剪贴板

* 点击按钮即可复制相对应的无格式文本至剪贴板。

## 印章检测小工具

检测 PDF 文件中是否存在红色圆形印章。

**原理:**

1. 获取当前目录全部 PDF 文件,生成原始图像。
2. 通过全部原始图像生成灰度图像。
3. 灰度图像-原始图像,并将红色以外的像素点替换为白色像素点。
4. 对图像进行均值滤波处理。
5. 对图像进行非局部平均去噪处理。
6. 将图像转化为灰度图像。
7. 对图像进行腐蚀处理。
8. 对图像进行膨胀处理。
9. 通过霍夫圆变换检测印章。

0 comments on commit dfe60ee

Please sign in to comment.