Skip to content

Commit ddf8a48

Browse files
committed
Update RecognizeCharacter.
1 parent 2f6a54c commit ddf8a48

File tree

4 files changed

+49
-8
lines changed

4 files changed

+49
-8
lines changed

aliyun-python-sdk-ocr/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2021-11-23 Version: 1.0.13
2+
- Update RecognizeCharacter.
3+
14
2021-07-02 Version: 1.0.12
25
- Release RecognizeQuotaInvoice RecognizeTicketInvoice RecognizePdf.
36

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '1.0.12'
1+
__version__ = '1.0.13'

aliyun-python-sdk-ocr/aliyunsdkocr/request/v20191230/RecognizeCharacterRequest.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,12 @@ def __init__(self):
3131
setattr(self, "endpoint_regional", endpoint_data.getEndpointRegional())
3232

3333

34+
def get_MinHeight(self):
35+
return self.get_body_params().get('MinHeight')
36+
37+
def set_MinHeight(self,MinHeight):
38+
self.add_body_params('MinHeight', MinHeight)
39+
3440
def get_OutputProbability(self):
3541
return self.get_body_params().get('OutputProbability')
3642

@@ -41,10 +47,4 @@ def get_ImageURL(self):
4147
return self.get_body_params().get('ImageURL')
4248

4349
def set_ImageURL(self,ImageURL):
44-
self.add_body_params('ImageURL', ImageURL)
45-
46-
def get_MinHeight(self):
47-
return self.get_body_params().get('MinHeight')
48-
49-
def set_MinHeight(self,MinHeight):
50-
self.add_body_params('MinHeight', MinHeight)
50+
self.add_body_params('ImageURL', ImageURL)
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
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+
#
10+
# http://www.apache.org/licenses/LICENSE-2.0
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+
from aliyunsdkocr.endpoint import endpoint_data
22+
23+
class RecognizeVideoCharacterRequest(RpcRequest):
24+
25+
def __init__(self):
26+
RpcRequest.__init__(self, 'ocr', '2019-12-30', 'RecognizeVideoCharacter','ocr')
27+
self.set_method('POST')
28+
if hasattr(self, "endpoint_map"):
29+
setattr(self, "endpoint_map", endpoint_data.getEndpointMap())
30+
if hasattr(self, "endpoint_regional"):
31+
setattr(self, "endpoint_regional", endpoint_data.getEndpointRegional())
32+
33+
34+
def get_VideoURL(self):
35+
return self.get_body_params().get('VideoURL')
36+
37+
def set_VideoURL(self,VideoURL):
38+
self.add_body_params('VideoURL', VideoURL)

0 commit comments

Comments
 (0)