代码拉取完成,页面将自动刷新
# -*- coding:utf-8 -*-
__author__ = 'renyuan'
'''
测试DSP配置远程调用的client
'''
import sys
import Ice
Ice.loadSlice('LesComposer.ice')
import LESComposer
import imagedata
from pprint import pprint
class Client(Ice.Application):
def run(self, args):
if len(args) > 1:
print('{0}: too many arguments'.format(self.appName()))
return -1
#获得DSPConfigService代理
dsp_config_prx = LESComposer.DSPConfigServicePrx.checkedCast(
self.communicator().propertyToProxy('DSPConfigService.Proxy'))
if not dsp_config_prx:
print('Invalid dsp_config_prx')
return -1
#构建测试数据
test_seq_image = imagedata.Image_info_data()
test_seq_image_info = test_seq_image.get_seq_image_info()
#远程调用获取DSP配置
test_dsp_name = dsp_config_prx.getDSPStrategy()
print('test dsp config name', test_dsp_name)
test_return_value = (dsp_config_prx.getDSPConfig(test_seq_image_info, 'image_color_enhance'))[1]
pprint(test_return_value)
return 1
app = Client()
sys.exit(app.main(sys.argv, 'config.client'))
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。