Merge pull request #4501 from WenmuZhou/fx_pse
pse post-processing is only compiled when neededpull/4547/head
commit
bc8bf56596
|
@ -18,7 +18,6 @@ from __future__ import print_function
|
||||||
from __future__ import unicode_literals
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
import copy
|
import copy
|
||||||
import platform
|
|
||||||
|
|
||||||
__all__ = ['build_post_process']
|
__all__ = ['build_post_process']
|
||||||
|
|
||||||
|
@ -26,21 +25,24 @@ from .db_postprocess import DBPostProcess, DistillationDBPostProcess
|
||||||
from .east_postprocess import EASTPostProcess
|
from .east_postprocess import EASTPostProcess
|
||||||
from .sast_postprocess import SASTPostProcess
|
from .sast_postprocess import SASTPostProcess
|
||||||
from .rec_postprocess import CTCLabelDecode, AttnLabelDecode, SRNLabelDecode, DistillationCTCLabelDecode, \
|
from .rec_postprocess import CTCLabelDecode, AttnLabelDecode, SRNLabelDecode, DistillationCTCLabelDecode, \
|
||||||
TableLabelDecode, NRTRLabelDecode, SARLabelDecode , SEEDLabelDecode
|
TableLabelDecode, NRTRLabelDecode, SARLabelDecode, SEEDLabelDecode
|
||||||
from .cls_postprocess import ClsPostProcess
|
from .cls_postprocess import ClsPostProcess
|
||||||
from .pg_postprocess import PGPostProcess
|
from .pg_postprocess import PGPostProcess
|
||||||
from .pse_postprocess import PSEPostProcess
|
|
||||||
|
|
||||||
|
|
||||||
def build_post_process(config, global_config=None):
|
def build_post_process(config, global_config=None):
|
||||||
support_dict = [
|
support_dict = [
|
||||||
'DBPostProcess', 'PSEPostProcess', 'EASTPostProcess', 'SASTPostProcess',
|
'DBPostProcess', 'EASTPostProcess', 'SASTPostProcess', 'CTCLabelDecode',
|
||||||
'CTCLabelDecode', 'AttnLabelDecode', 'ClsPostProcess', 'SRNLabelDecode',
|
'AttnLabelDecode', 'ClsPostProcess', 'SRNLabelDecode', 'PGPostProcess',
|
||||||
'PGPostProcess', 'DistillationCTCLabelDecode', 'TableLabelDecode',
|
'DistillationCTCLabelDecode', 'TableLabelDecode',
|
||||||
'DistillationDBPostProcess', 'NRTRLabelDecode', 'SARLabelDecode',
|
'DistillationDBPostProcess', 'NRTRLabelDecode', 'SARLabelDecode',
|
||||||
'SEEDLabelDecode'
|
'SEEDLabelDecode'
|
||||||
]
|
]
|
||||||
|
|
||||||
|
if config['name'] == 'PSEPostProcess':
|
||||||
|
from .pse_postprocess import PSEPostProcess
|
||||||
|
support_dict.append('PSEPostProcess')
|
||||||
|
|
||||||
config = copy.deepcopy(config)
|
config = copy.deepcopy(config)
|
||||||
module_name = config.pop('name')
|
module_name = config.pop('name')
|
||||||
if global_config is not None:
|
if global_config is not None:
|
||||||
|
|
|
@ -21,8 +21,9 @@ ori_path = os.getcwd()
|
||||||
os.chdir('ppocr/postprocess/pse_postprocess/pse')
|
os.chdir('ppocr/postprocess/pse_postprocess/pse')
|
||||||
if subprocess.call(
|
if subprocess.call(
|
||||||
'{} setup.py build_ext --inplace'.format(python_path), shell=True) != 0:
|
'{} setup.py build_ext --inplace'.format(python_path), shell=True) != 0:
|
||||||
raise RuntimeError('Cannot compile pse: {}'.format(
|
raise RuntimeError(
|
||||||
os.path.dirname(os.path.realpath(__file__))))
|
'Cannot compile pse: {}, if your system is windows, you need to install all the default components of `desktop development using C++` in visual studio 2019+'.
|
||||||
|
format(os.path.dirname(os.path.realpath(__file__))))
|
||||||
os.chdir(ori_path)
|
os.chdir(ori_path)
|
||||||
|
|
||||||
from .pse import pse
|
from .pse import pse
|
||||||
|
|
Loading…
Reference in New Issue