Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
weixin_41840029
PaddleOCR
提交
51836a1d
P
PaddleOCR
项目概览
weixin_41840029
/
PaddleOCR
与 Fork 源项目一致
Fork自
PaddlePaddle / PaddleOCR
通知
1
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleOCR
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
51836a1d
编写于
2月 20, 2022
作者:
HinGwenWoong
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Fixed BUG not using --kie will crash, Improve README
上级
a40b1bd5
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
18 addition
and
7 deletion
+18
-7
PPOCRLabel/PPOCRLabel.py
PPOCRLabel/PPOCRLabel.py
+6
-3
PPOCRLabel/README.md
PPOCRLabel/README.md
+6
-2
PPOCRLabel/README_ch.md
PPOCRLabel/README_ch.md
+6
-2
未找到文件。
PPOCRLabel/PPOCRLabel.py
浏览文件 @
51836a1d
...
...
@@ -980,9 +980,12 @@ class MainWindow(QMainWindow):
self
.
labelList
.
scrollToItem
(
self
.
currentItem
())
# QAbstractItemView.EnsureVisible
self
.
BoxList
.
scrollToItem
(
self
.
currentBox
())
if
len
(
self
.
canvas
.
selectedShapes
)
==
1
and
self
.
keyList
.
count
()
>
0
:
selected_key_item_row
=
self
.
keyList
.
findItemsByLabel
(
self
.
canvas
.
selectedShapes
[
0
].
key_cls
,
get_row
=
True
)
self
.
keyList
.
setCurrentRow
(
selected_key_item_row
)
if
self
.
kie_mode
:
if
len
(
self
.
canvas
.
selectedShapes
)
==
1
and
self
.
keyList
.
count
()
>
0
:
selected_key_item_row
=
self
.
keyList
.
findItemsByLabel
(
self
.
canvas
.
selectedShapes
[
0
].
key_cls
,
get_row
=
True
)
self
.
keyList
.
setCurrentRow
(
selected_key_item_row
)
self
.
_noSelectionSlot
=
False
n_selected
=
len
(
selected_shapes
)
...
...
PPOCRLabel/README.md
浏览文件 @
51836a1d
...
...
@@ -8,6 +8,8 @@ PPOCRLabel is a semi-automatic graphic annotation tool suitable for OCR field, w
### Recent Update
-
2022.02:(by
[
PeterH0323
](
https://github.com/peterh0323
)
)
-
Added KIE mode, for [detection + identification + keyword extraction] labeling.
-
2022.01:(by
[
PeterH0323
](
https://github.com/peterh0323
)
)
-
Improve user experience: prompt for the number of files and labels, optimize interaction, and fix bugs such as only use CPU when inference
-
2021.11.17:
...
...
@@ -72,7 +74,8 @@ PPOCRLabel
```
bash
pip3
install
PPOCRLabel
pip3
install
opencv-contrib-python-headless
==
4.2.0.32
PPOCRLabel
# run
PPOCRLabel
# [Normal mode] for [detection + recognition] labeling
PPOCRLabel
--kie
True
# [KIE mode] for [detection + recognition + keyword extraction] labeling
```
#### 1.2.2 Build and Install the Whl Package Locally
...
...
@@ -87,7 +90,8 @@ pip3 install dist/PPOCRLabel-1.0.2-py2.py3-none-any.whl
```
bash
cd
./PPOCRLabel
# Switch to the PPOCRLabel directory
python PPOCRLabel.py
python PPOCRLabel.py
# [Normal mode] for [detection + recognition] labeling
python PPOCRLabel.py
--kie
True
# [KIE mode] for [detection + recognition + keyword extraction] labeling
```
...
...
PPOCRLabel/README_ch.md
浏览文件 @
51836a1d
...
...
@@ -8,6 +8,8 @@ PPOCRLabel是一款适用于OCR领域的半自动化图形标注工具,内置P
#### 近期更新
-
2022.02:(by
[
PeterH0323
](
https://github.com/peterh0323
)
)
-
新增:KIE 功能,用于打【检测+识别+关键字提取】的标签
-
2022.01:(by
[
PeterH0323
](
https://github.com/peterh0323
)
)
-
提升用户体验:新增文件与标记数目提示、优化交互、修复gpu使用等问题
-
2021.11.17:
...
...
@@ -70,7 +72,8 @@ PPOCRLabel --lang ch
```
bash
pip3
install
PPOCRLabel
pip3
install
opencv-contrib-python-headless
==
4.2.0.32
# 如果下载过慢请添加"-i https://mirror.baidu.com/pypi/simple"
PPOCRLabel
--lang
ch
# 启动
PPOCRLabel
--lang
ch
# 启动【普通模式】,用于打【检测+识别】场景的标签
PPOCRLabel
--lang
ch
--kie
True
# 启动 【KIE 模式】,用于打【检测+识别+关键字提取】场景的标签
```
> 如果上述安装出现问题,可以参考3.6节 错误提示
...
...
@@ -89,7 +92,8 @@ pip3 install dist/PPOCRLabel-1.0.2-py2.py3-none-any.whl -i https://mirror.baidu.
```
bash
cd
./PPOCRLabel
# 切换到PPOCRLabel目录
python PPOCRLabel.py
--lang
ch
python PPOCRLabel.py
--lang
ch
# 启动【普通模式】,用于打【检测+识别】场景的标签
python PPOCRLabel.py
--lang
ch
--kie
True
# 启动 【KIE 模式】,用于打【检测+识别+关键字提取】场景的标签
```
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录