Skip to content

Commit c9433d5

Browse files
committed
IMM SDK Auto Released By zhengrui.lj,Version:1.9.0
发布日志: 1, Add logo detect.
1 parent c73cfa8 commit c9433d5

File tree

4 files changed

+46
-1
lines changed

4 files changed

+46
-1
lines changed

aliyun-python-sdk-imm/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2019-03-28 Version: 1.9.0
2+
1, Add logo detect.
3+
14
2019-03-11 Version: 1.8.0
25
1, Add face grouping feature .
36
2, Add head pose and face quality.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.8.0"
1+
__version__ = "1.9.0"

aliyun-python-sdk-imm/aliyunsdkimm/request/v20170906/CreateOfficeConversionTaskRequest.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,12 @@ def get_ModelId(self):
8989
def set_ModelId(self,ModelId):
9090
self.add_query_param('ModelId',ModelId)
9191

92+
def get_DisplayDpi(self):
93+
return self.get_query_params().get('DisplayDpi')
94+
95+
def set_DisplayDpi(self,DisplayDpi):
96+
self.add_query_param('DisplayDpi',DisplayDpi)
97+
9298
def get_MaxSheetRow(self):
9399
return self.get_query_params().get('MaxSheetRow')
94100

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
#
12+
#
13+
# Unless required by applicable law or agreed to in writing,
14+
# software distributed under the License is distributed on an
15+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16+
# KIND, either express or implied. See the License for the
17+
# specific language governing permissions and limitations
18+
# under the License.
19+
20+
from aliyunsdkcore.request import RpcRequest
21+
class DetectImageLogosRequest(RpcRequest):
22+
23+
def __init__(self):
24+
RpcRequest.__init__(self, 'imm', '2017-09-06', 'DetectImageLogos','imm')
25+
26+
def get_ImageUri(self):
27+
return self.get_query_params().get('ImageUri')
28+
29+
def set_ImageUri(self,ImageUri):
30+
self.add_query_param('ImageUri',ImageUri)
31+
32+
def get_Project(self):
33+
return self.get_query_params().get('Project')
34+
35+
def set_Project(self,Project):
36+
self.add_query_param('Project',Project)

0 commit comments

Comments
 (0)