1 Star 0 Fork 0

lln133208/compose-client

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
dsp_config_service_client.py 1.15 KB
一键复制 编辑 原始数据 按行查看 历史
renyuan 提交于 2015-09-02 21:23 . client.py
# -*- 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'))
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/lln133208/compose-client.git
git@gitee.com:lln133208/compose-client.git
lln133208
compose-client
compose-client
master

搜索帮助