This commit is contained in:
weishengyu 2020-12-15 21:17:03 +08:00
parent f03dcd603f
commit d219ad4059
3 changed files with 3 additions and 3 deletions

View File

@ -76,7 +76,7 @@ python3 -m tools.synth_image -c configs/config.yml --style_image examples/style_
首先需要风格图片作为合成图片的参考依据这些数据可以是用作训练OCR识别模型的数据集。本例中使用带有标注文件的数据集作为风格图片.
1. 在`configs/dataset_config.yml`中配置输入数据路径。
* `StyleSamplerl`
* `StyleSampler`
* `method`:使用的风格图片采样方法;
* `image_home`:风格图片目录;
* `label_file`风格图片路径列表文件如果所用数据集有label则label_file为label文件路径

View File

@ -15,8 +15,8 @@ import os
import cv2
import sys
import glob
from argparse import ArgumentParser, RawDescriptionHelpFormatter
from utils.config import ArgsParser
from engine.synthesisers import ImageSynthesiser
__dir__ = os.path.dirname(os.path.abspath(__file__))

View File

@ -13,7 +13,7 @@
# limitations under the License.
import yaml
import os
from argparse import ArgumentParser, RawDescriptionHelpFormatter
from utils.argparse import ArgumentParser, RawDescriptionHelpFormatter
def override(dl, ks, v):