MMOCR / mmocr /core /__init__.py
tomofi's picture
Add application file
2366e36
raw
history blame
No virus
768 Bytes
# Copyright (c) OpenMMLab. All rights reserved.
from . import evaluation
from .evaluation import * # NOQA
from .mask import extract_boundary, points2boundary, seg2boundary
from .visualize import (det_recog_show_result, imshow_edge, imshow_node,
imshow_pred_boundary, imshow_text_char_boundary,
imshow_text_label, overlay_mask_img, show_feature,
show_img_boundary, show_pred_gt)
__all__ = [
'points2boundary', 'seg2boundary', 'extract_boundary', 'overlay_mask_img',
'show_feature', 'show_img_boundary', 'show_pred_gt',
'imshow_pred_boundary', 'imshow_text_char_boundary', 'imshow_text_label',
'imshow_node', 'det_recog_show_result', 'imshow_edge'
]
__all__ += evaluation.__all__