Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
wangsen
paddle_dbnet
Commits
8ac3423a
"examples/vscode:/vscode.git/clone" did not exist on "bba1c1de151bf0ff0b47a7b81a8251c3bed1db1f"
Commit
8ac3423a
authored
Dec 09, 2020
by
WenmuZhou
Browse files
add east and sast
parent
8524c2c6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
30 additions
and
8 deletions
+30
-8
doc/doc_ch/tree.md
doc/doc_ch/tree.md
+15
-5
doc/doc_en/tree_en.md
doc/doc_en/tree_en.md
+15
-3
No files found.
doc/doc_ch/tree.md
View file @
8ac3423a
...
@@ -117,14 +117,14 @@ PaddleOCR
...
@@ -117,14 +117,14 @@ PaddleOCR
│ │ │ │ ├── augment.py // tia_distort,tia_stretch 和 tia_perspective 的代码
│ │ │ │ ├── augment.py // tia_distort,tia_stretch 和 tia_perspective 的代码
│ │ │ │ ├── warp_mls.py
│ │ │ │ ├── warp_mls.py
│ │ │ ├── __init__.py
│ │ │ ├── __init__.py
│ │ │ ├── iaa_augment.py // 数据增广操作
│ │ │ ├── east_process.py // EAST 算法的数据处理步骤
│ │ │ ├── label_ops.py // label 编码操作
│ │ │ ├── make_border_map.py // 生成边界图
│ │ │ ├── make_border_map.py // 生成边界图
│ │ │ ├── make_shrink_map.py // 生成收缩图
│ │ │ ├── make_shrink_map.py // 生成收缩图
│ │ │ ├── operators.py // 图像基本操作,如读取和归一化
│ │ │ ├── operators.py // 图像基本操作,如读取和归一化
│ │ │ ├── randaugment.py // 随机数据增广操作
│ │ │ ├── randaugment.py // 随机数据增广操作
│ │ │ ├── random_crop_data.py // 随机裁剪
│ │ │ ├── random_crop_data.py // 随机裁剪
│ │ │ └── rec_img_aug.py // 文本识别的数据扩充
│ │ │ ├── rec_img_aug.py // 文本识别的数据扩充
│ │ │ └── sast_process.py // SAST 算法的数据处理步骤
│ │ ├── __init__.py // 构造 dataloader 相关代码
│ │ ├── __init__.py // 构造 dataloader 相关代码
│ │ ├── lmdb_dataset.py // 读取lmdb数据集的 dataset
│ │ ├── lmdb_dataset.py // 读取lmdb数据集的 dataset
│ │ ├── simple_dataset.py // 读取文本格式存储数据集的 dataset
│ │ ├── simple_dataset.py // 读取文本格式存储数据集的 dataset
...
@@ -133,6 +133,8 @@ PaddleOCR
...
@@ -133,6 +133,8 @@ PaddleOCR
│ │ ├── cls_loss.py // 方向分类器 loss
│ │ ├── cls_loss.py // 方向分类器 loss
│ │ ├── det_basic_loss.py // 检测基础 loss
│ │ ├── det_basic_loss.py // 检测基础 loss
│ │ ├── det_db_loss.py // DB loss
│ │ ├── det_db_loss.py // DB loss
│ │ ├── det_east_loss.py // EAST loss
│ │ ├── det_sast_loss.py // SAST loss
│ │ ├── rec_ctc_loss.py // ctc loss
│ │ ├── rec_ctc_loss.py // ctc loss
│ ├── metrics // 评估指标
│ ├── metrics // 评估指标
│ │ ├── __init__.py // 构造 metric 相关代码
│ │ ├── __init__.py // 构造 metric 相关代码
...
@@ -148,16 +150,21 @@ PaddleOCR
...
@@ -148,16 +150,21 @@ PaddleOCR
│ │ │ ├── __init__.py // 构造 backbone 相关代码
│ │ │ ├── __init__.py // 构造 backbone 相关代码
│ │ │ ├── det_mobilenet_v3.py // 检测 mobilenet_v3
│ │ │ ├── det_mobilenet_v3.py // 检测 mobilenet_v3
│ │ │ ├── det_resnet_vd.py // 检测 resnet
│ │ │ ├── det_resnet_vd.py // 检测 resnet
│ │ │ ├── det_resnet_vd_sast.py // 检测 SAST算法的resnet backbone
│ │ │ ├── rec_mobilenet_v3.py // 识别 mobilenet_v3
│ │ │ ├── rec_mobilenet_v3.py // 识别 mobilenet_v3
│ │ │ └── rec_resnet_vd.py // 识别 resnet
│ │ │ └── rec_resnet_vd.py // 识别 resnet
│ │ ├── necks // 颈函数
│ │ ├── necks // 颈函数
│ │ │ ├── __init__.py // 构造 neck 相关代码
│ │ │ ├── __init__.py // 构造 neck 相关代码
│ │ │ ├── db_fpn.py // fpn 网络
│ │ │ ├── db_fpn.py // 标准 fpn 网络
│ │ │ ├── east_fpn.py // EAST 算法的 fpn 网络
│ │ │ ├── sast_fpn.py // SAST 算法的 fpn 网络
│ │ │ ├── rnn.py // 识别 序列编码
│ │ │ ├── rnn.py // 识别 序列编码
│ │ ├── heads // 头函数
│ │ ├── heads // 头函数
│ │ │ ├── __init__.py // 构造 head 相关代码
│ │ │ ├── __init__.py // 构造 head 相关代码
│ │ │ ├── cls_head.py // 方向分类器 分类头
│ │ │ ├── cls_head.py // 方向分类器 分类头
│ │ │ ├── det_db_head.py // db 检测头
│ │ │ ├── det_db_head.py // db 检测头
│ │ │ ├── det_east_head.py // EAST 检测头
│ │ │ ├── det_sast_head.py // SAST 检测头
│ │ │ ├── rec_ctc_head.py // 识别 ctc
│ │ │ ├── rec_ctc_head.py // 识别 ctc
│ │ ├── transforms // 图像变换
│ │ ├── transforms // 图像变换
│ │ │ ├── __init__.py // 构造 transform 相关代码
│ │ │ ├── __init__.py // 构造 transform 相关代码
...
@@ -170,7 +177,10 @@ PaddleOCR
...
@@ -170,7 +177,10 @@ PaddleOCR
│ ├── postprocess // 后处理
│ ├── postprocess // 后处理
│ │ ├── cls_postprocess.py // 方向分类器 后处理
│ │ ├── cls_postprocess.py // 方向分类器 后处理
│ │ ├── db_postprocess.py // DB 后处理
│ │ ├── db_postprocess.py // DB 后处理
│ │ └── rec_postprocess.py // 识别网络 后处理
│ │ ├── east_postprocess.py // EAST 后处理
│ │ ├── locality_aware_nms.py // NMS
│ │ ├── rec_postprocess.py // 识别网络 后处理
│ │ └── sast_postprocess.py // SAST 后处理
│ └── utils // 工具
│ └── utils // 工具
│ ├── dict // 小语种字典
│ ├── dict // 小语种字典
│ ....
│ ....
...
...
doc/doc_en/tree_en.md
View file @
8ac3423a
...
@@ -118,6 +118,7 @@ PaddleOCR
...
@@ -118,6 +118,7 @@ PaddleOCR
│ │ │ │ ├── augment.py // Tia_distort,tia_stretch and tia_perspective
│ │ │ │ ├── augment.py // Tia_distort,tia_stretch and tia_perspective
│ │ │ │ ├── warp_mls.py
│ │ │ │ ├── warp_mls.py
│ │ │ ├── __init__.py
│ │ │ ├── __init__.py
│ │ │ ├── east_process.py // Data processing steps of EAST algorithm
│ │ │ ├── iaa_augment.py // Data augmentation operations
│ │ │ ├── iaa_augment.py // Data augmentation operations
│ │ │ ├── label_ops.py // label encode operations
│ │ │ ├── label_ops.py // label encode operations
│ │ │ ├── make_border_map.py // Generate boundary map
│ │ │ ├── make_border_map.py // Generate boundary map
...
@@ -125,7 +126,8 @@ PaddleOCR
...
@@ -125,7 +126,8 @@ PaddleOCR
│ │ │ ├── operators.py // Basic image operations, such as reading and normalization
│ │ │ ├── operators.py // Basic image operations, such as reading and normalization
│ │ │ ├── randaugment.py // Random data augmentation operation
│ │ │ ├── randaugment.py // Random data augmentation operation
│ │ │ ├── random_crop_data.py // Random crop
│ │ │ ├── random_crop_data.py // Random crop
│ │ │ └── rec_img_aug.py // Data augmentation for text recognition
│ │ │ ├── rec_img_aug.py // Data augmentation for text recognition
│ │ │ └── sast_process.py // Data processing steps of SAST algorithm
│ │ ├── __init__.py // Construct dataloader code
│ │ ├── __init__.py // Construct dataloader code
│ │ ├── lmdb_dataset.py // Read lmdb dataset
│ │ ├── lmdb_dataset.py // Read lmdb dataset
│ │ ├── simple_dataset.py // Read the dataset stored in text format
│ │ ├── simple_dataset.py // Read the dataset stored in text format
...
@@ -134,6 +136,8 @@ PaddleOCR
...
@@ -134,6 +136,8 @@ PaddleOCR
│ │ ├── cls_loss.py // Angle class loss
│ │ ├── cls_loss.py // Angle class loss
│ │ ├── det_basic_loss.py // Text detection basic loss
│ │ ├── det_basic_loss.py // Text detection basic loss
│ │ ├── det_db_loss.py // DB loss
│ │ ├── det_db_loss.py // DB loss
│ │ ├── det_east_loss.py // EAST loss
│ │ ├── det_sast_loss.py // SAST loss
│ │ ├── rec_ctc_loss.py // ctc loss
│ │ ├── rec_ctc_loss.py // ctc loss
│ ├── metrics // Metrics
│ ├── metrics // Metrics
│ │ ├── __init__.py // Construct metric code
│ │ ├── __init__.py // Construct metric code
...
@@ -149,16 +153,21 @@ PaddleOCR
...
@@ -149,16 +153,21 @@ PaddleOCR
│ │ │ ├── __init__.py // Construct backbone code
│ │ │ ├── __init__.py // Construct backbone code
│ │ │ ├── det_mobilenet_v3.py // Text detection mobilenet_v3
│ │ │ ├── det_mobilenet_v3.py // Text detection mobilenet_v3
│ │ │ ├── det_resnet_vd.py // Text detection resnet
│ │ │ ├── det_resnet_vd.py // Text detection resnet
│ │ │ ├── det_resnet_vd_sast.py // Text detection resnet backbone of the SAST algorithm
│ │ │ ├── rec_mobilenet_v3.py // Text recognition mobilenet_v3
│ │ │ ├── rec_mobilenet_v3.py // Text recognition mobilenet_v3
│ │ │ └── rec_resnet_vd.py // Text recognition resnet
│ │ │ └── rec_resnet_vd.py // Text recognition resnet
│ │ ├── necks // Necks
│ │ ├── necks // Necks
│ │ │ ├── __init__.py // Construct neck code
│ │ │ ├── __init__.py // Construct neck code
│ │ │ ├── db_fpn.py // FPN
│ │ │ ├── db_fpn.py // Standard fpn
│ │ │ ├── east_fpn.py // EAST algorithm fpn network
│ │ │ ├── sast_fpn.py // SAST algorithm fpn network
│ │ │ ├── rnn.py // Character recognition sequence encoding
│ │ │ ├── rnn.py // Character recognition sequence encoding
│ │ ├── heads // Heads
│ │ ├── heads // Heads
│ │ │ ├── __init__.py // Construct head code
│ │ │ ├── __init__.py // Construct head code
│ │ │ ├── cls_head.py // Angle class head
│ │ │ ├── cls_head.py // Angle class head
│ │ │ ├── det_db_head.py // DB head
│ │ │ ├── det_db_head.py // DB head
│ │ │ ├── det_east_head.py // EAST head
│ │ │ ├── det_sast_head.py // SAST head
│ │ │ ├── rec_ctc_head.py // Ctc head
│ │ │ ├── rec_ctc_head.py // Ctc head
│ │ ├── transforms // Transforms
│ │ ├── transforms // Transforms
│ │ │ ├── __init__.py // Construct transform code
│ │ │ ├── __init__.py // Construct transform code
...
@@ -171,7 +180,10 @@ PaddleOCR
...
@@ -171,7 +180,10 @@ PaddleOCR
│ ├── postprocess // Post-processing
│ ├── postprocess // Post-processing
│ │ ├── cls_postprocess.py // Angle class post-processing
│ │ ├── cls_postprocess.py // Angle class post-processing
│ │ ├── db_postprocess.py // DB post-processing
│ │ ├── db_postprocess.py // DB post-processing
│ │ └── rec_postprocess.py // Text recognition post-processing
│ │ ├── east_postprocess.py // EAST post-processing
│ │ ├── locality_aware_nms.py // NMS
│ │ ├── rec_postprocess.py // Text recognition post-processing
│ │ └── sast_postprocess.py // SAST post-processing
│ └── utils // utils
│ └── utils // utils
│ ├── dict // Minor language dictionary
│ ├── dict // Minor language dictionary
│ ....
│ ....
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment