Skip to content

Commit 3be7e28

Browse files
committed
Update DetectVehicleICongestion DetectVehicleIllegalParking.
1 parent a488ba7 commit 3be7e28

File tree

53 files changed

+1952
-1688
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+1952
-1688
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.36.1282
1+
1.36.1283
Lines changed: 40 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1,48 +1,51 @@
11
/*
22
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
3-
*
3+
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
66
* You may obtain a copy of the License at
7-
*
7+
*
88
* http://www.apache.org/licenses/LICENSE-2.0
9-
*
9+
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*/
16-
17-
#ifndef ALIBABACLOUD_OBJECTDET_MODEL_CLASSIFYVEHICLEINSURANCEREQUEST_H_
18-
#define ALIBABACLOUD_OBJECTDET_MODEL_CLASSIFYVEHICLEINSURANCEREQUEST_H_
19-
20-
#include <string>
21-
#include <vector>
22-
#include <alibabacloud/core/RpcServiceRequest.h>
23-
#include <alibabacloud/objectdet/ObjectdetExport.h>
24-
25-
namespace AlibabaCloud
26-
{
27-
namespace Objectdet
28-
{
29-
namespace Model
30-
{
31-
class ALIBABACLOUD_OBJECTDET_EXPORT ClassifyVehicleInsuranceRequest : public RpcServiceRequest
32-
{
33-
34-
public:
35-
ClassifyVehicleInsuranceRequest();
36-
~ClassifyVehicleInsuranceRequest();
37-
38-
std::string getImageURL()const;
39-
void setImageURL(const std::string& imageURL);
40-
41-
private:
42-
std::string imageURL_;
43-
44-
};
45-
}
46-
}
47-
}
48-
#endif // !ALIBABACLOUD_OBJECTDET_MODEL_CLASSIFYVEHICLEINSURANCEREQUEST_H_
15+
*/
16+
17+
#ifndef ALIBABACLOUD_OBJECTDET_MODEL_CLASSIFYVEHICLEINSURANCEREQUEST_H_
18+
#define ALIBABACLOUD_OBJECTDET_MODEL_CLASSIFYVEHICLEINSURANCEREQUEST_H_
19+
20+
#include <alibabacloud/objectdet/ObjectdetExport.h>
21+
#include <alibabacloud/core/RpcServiceRequest.h>
22+
#include <string>
23+
#include <vector>
24+
#include <map>
25+
26+
namespace AlibabaCloud {
27+
namespace Objectdet {
28+
namespace Model {
29+
class ALIBABACLOUD_OBJECTDET_EXPORT ClassifyVehicleInsuranceRequest : public RpcServiceRequest {
30+
public:
31+
ClassifyVehicleInsuranceRequest();
32+
~ClassifyVehicleInsuranceRequest();
33+
bool getFormatResultToJson() const;
34+
void setFormatResultToJson(bool formatResultToJson);
35+
std::string getOssFile() const;
36+
void setOssFile(const std::string &ossFile);
37+
std::string getRequestProxyBy() const;
38+
void setRequestProxyBy(const std::string &requestProxyBy);
39+
std::string getImageURL() const;
40+
void setImageURL(const std::string &imageURL);
41+
42+
private:
43+
bool formatResultToJson_;
44+
std::string ossFile_;
45+
std::string requestProxyBy_;
46+
std::string imageURL_;
47+
};
48+
} // namespace Model
49+
} // namespace Objectdet
50+
} // namespace AlibabaCloud
51+
#endif // !ALIBABACLOUD_OBJECTDET_MODEL_CLASSIFYVEHICLEINSURANCEREQUEST_H_
Lines changed: 40 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -1,54 +1,51 @@
11
/*
22
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
3-
*
3+
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
66
* You may obtain a copy of the License at
7-
*
7+
*
88
* http://www.apache.org/licenses/LICENSE-2.0
9-
*
9+
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*/
16-
17-
#ifndef ALIBABACLOUD_OBJECTDET_MODEL_DETECTIPCOBJECTREQUEST_H_
18-
#define ALIBABACLOUD_OBJECTDET_MODEL_DETECTIPCOBJECTREQUEST_H_
19-
20-
#include <string>
21-
#include <vector>
22-
#include <alibabacloud/core/RpcServiceRequest.h>
23-
#include <alibabacloud/objectdet/ObjectdetExport.h>
24-
25-
namespace AlibabaCloud
26-
{
27-
namespace Objectdet
28-
{
29-
namespace Model
30-
{
31-
class ALIBABACLOUD_OBJECTDET_EXPORT DetectIPCObjectRequest : public RpcServiceRequest
32-
{
33-
34-
public:
35-
DetectIPCObjectRequest();
36-
~DetectIPCObjectRequest();
37-
38-
std::string getOssFile()const;
39-
void setOssFile(const std::string& ossFile);
40-
std::string getRequestProxyBy()const;
41-
void setRequestProxyBy(const std::string& requestProxyBy);
42-
std::string getImageURL()const;
43-
void setImageURL(const std::string& imageURL);
44-
45-
private:
46-
std::string ossFile_;
47-
std::string requestProxyBy_;
48-
std::string imageURL_;
49-
50-
};
51-
}
52-
}
53-
}
54-
#endif // !ALIBABACLOUD_OBJECTDET_MODEL_DETECTIPCOBJECTREQUEST_H_
15+
*/
16+
17+
#ifndef ALIBABACLOUD_OBJECTDET_MODEL_DETECTIPCOBJECTREQUEST_H_
18+
#define ALIBABACLOUD_OBJECTDET_MODEL_DETECTIPCOBJECTREQUEST_H_
19+
20+
#include <alibabacloud/objectdet/ObjectdetExport.h>
21+
#include <alibabacloud/core/RpcServiceRequest.h>
22+
#include <string>
23+
#include <vector>
24+
#include <map>
25+
26+
namespace AlibabaCloud {
27+
namespace Objectdet {
28+
namespace Model {
29+
class ALIBABACLOUD_OBJECTDET_EXPORT DetectIPCObjectRequest : public RpcServiceRequest {
30+
public:
31+
DetectIPCObjectRequest();
32+
~DetectIPCObjectRequest();
33+
bool getFormatResultToJson() const;
34+
void setFormatResultToJson(bool formatResultToJson);
35+
std::string getOssFile() const;
36+
void setOssFile(const std::string &ossFile);
37+
std::string getRequestProxyBy() const;
38+
void setRequestProxyBy(const std::string &requestProxyBy);
39+
std::string getImageURL() const;
40+
void setImageURL(const std::string &imageURL);
41+
42+
private:
43+
bool formatResultToJson_;
44+
std::string ossFile_;
45+
std::string requestProxyBy_;
46+
std::string imageURL_;
47+
};
48+
} // namespace Model
49+
} // namespace Objectdet
50+
} // namespace AlibabaCloud
51+
#endif // !ALIBABACLOUD_OBJECTDET_MODEL_DETECTIPCOBJECTREQUEST_H_
Lines changed: 43 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -1,60 +1,54 @@
11
/*
22
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
3-
*
3+
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
66
* You may obtain a copy of the License at
7-
*
7+
*
88
* http://www.apache.org/licenses/LICENSE-2.0
9-
*
9+
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*/
16-
17-
#ifndef ALIBABACLOUD_OBJECTDET_MODEL_DETECTKITCHENANIMALSREQUEST_H_
18-
#define ALIBABACLOUD_OBJECTDET_MODEL_DETECTKITCHENANIMALSREQUEST_H_
19-
20-
#include <string>
21-
#include <vector>
22-
#include <alibabacloud/core/RpcServiceRequest.h>
23-
#include <alibabacloud/objectdet/ObjectdetExport.h>
24-
25-
namespace AlibabaCloud
26-
{
27-
namespace Objectdet
28-
{
29-
namespace Model
30-
{
31-
class ALIBABACLOUD_OBJECTDET_EXPORT DetectKitchenAnimalsRequest : public RpcServiceRequest
32-
{
33-
34-
public:
35-
DetectKitchenAnimalsRequest();
36-
~DetectKitchenAnimalsRequest();
37-
38-
bool getFormatResultToJson()const;
39-
void setFormatResultToJson(bool formatResultToJson);
40-
std::string getImageURLB()const;
41-
void setImageURLB(const std::string& imageURLB);
42-
std::string getImageURLA()const;
43-
void setImageURLA(const std::string& imageURLA);
44-
std::string getOssFile()const;
45-
void setOssFile(const std::string& ossFile);
46-
std::string getRequestProxyBy()const;
47-
void setRequestProxyBy(const std::string& requestProxyBy);
48-
49-
private:
50-
bool formatResultToJson_;
51-
std::string imageURLB_;
52-
std::string imageURLA_;
53-
std::string ossFile_;
54-
std::string requestProxyBy_;
55-
56-
};
57-
}
58-
}
59-
}
60-
#endif // !ALIBABACLOUD_OBJECTDET_MODEL_DETECTKITCHENANIMALSREQUEST_H_
15+
*/
16+
17+
#ifndef ALIBABACLOUD_OBJECTDET_MODEL_DETECTKITCHENANIMALSREQUEST_H_
18+
#define ALIBABACLOUD_OBJECTDET_MODEL_DETECTKITCHENANIMALSREQUEST_H_
19+
20+
#include <alibabacloud/objectdet/ObjectdetExport.h>
21+
#include <alibabacloud/core/RpcServiceRequest.h>
22+
#include <string>
23+
#include <vector>
24+
#include <map>
25+
26+
namespace AlibabaCloud {
27+
namespace Objectdet {
28+
namespace Model {
29+
class ALIBABACLOUD_OBJECTDET_EXPORT DetectKitchenAnimalsRequest : public RpcServiceRequest {
30+
public:
31+
DetectKitchenAnimalsRequest();
32+
~DetectKitchenAnimalsRequest();
33+
bool getFormatResultToJson() const;
34+
void setFormatResultToJson(bool formatResultToJson);
35+
std::string getImageURLB() const;
36+
void setImageURLB(const std::string &imageURLB);
37+
std::string getImageURLA() const;
38+
void setImageURLA(const std::string &imageURLA);
39+
std::string getOssFile() const;
40+
void setOssFile(const std::string &ossFile);
41+
std::string getRequestProxyBy() const;
42+
void setRequestProxyBy(const std::string &requestProxyBy);
43+
44+
private:
45+
bool formatResultToJson_;
46+
std::string imageURLB_;
47+
std::string imageURLA_;
48+
std::string ossFile_;
49+
std::string requestProxyBy_;
50+
};
51+
} // namespace Model
52+
} // namespace Objectdet
53+
} // namespace AlibabaCloud
54+
#endif // !ALIBABACLOUD_OBJECTDET_MODEL_DETECTKITCHENANIMALSREQUEST_H_
Lines changed: 40 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1,48 +1,51 @@
11
/*
22
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
3-
*
3+
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
66
* You may obtain a copy of the License at
7-
*
7+
*
88
* http://www.apache.org/licenses/LICENSE-2.0
9-
*
9+
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*/
16-
17-
#ifndef ALIBABACLOUD_OBJECTDET_MODEL_DETECTMAINBODYREQUEST_H_
18-
#define ALIBABACLOUD_OBJECTDET_MODEL_DETECTMAINBODYREQUEST_H_
19-
20-
#include <string>
21-
#include <vector>
22-
#include <alibabacloud/core/RpcServiceRequest.h>
23-
#include <alibabacloud/objectdet/ObjectdetExport.h>
24-
25-
namespace AlibabaCloud
26-
{
27-
namespace Objectdet
28-
{
29-
namespace Model
30-
{
31-
class ALIBABACLOUD_OBJECTDET_EXPORT DetectMainBodyRequest : public RpcServiceRequest
32-
{
33-
34-
public:
35-
DetectMainBodyRequest();
36-
~DetectMainBodyRequest();
37-
38-
std::string getImageURL()const;
39-
void setImageURL(const std::string& imageURL);
40-
41-
private:
42-
std::string imageURL_;
43-
44-
};
45-
}
46-
}
47-
}
48-
#endif // !ALIBABACLOUD_OBJECTDET_MODEL_DETECTMAINBODYREQUEST_H_
15+
*/
16+
17+
#ifndef ALIBABACLOUD_OBJECTDET_MODEL_DETECTMAINBODYREQUEST_H_
18+
#define ALIBABACLOUD_OBJECTDET_MODEL_DETECTMAINBODYREQUEST_H_
19+
20+
#include <alibabacloud/objectdet/ObjectdetExport.h>
21+
#include <alibabacloud/core/RpcServiceRequest.h>
22+
#include <string>
23+
#include <vector>
24+
#include <map>
25+
26+
namespace AlibabaCloud {
27+
namespace Objectdet {
28+
namespace Model {
29+
class ALIBABACLOUD_OBJECTDET_EXPORT DetectMainBodyRequest : public RpcServiceRequest {
30+
public:
31+
DetectMainBodyRequest();
32+
~DetectMainBodyRequest();
33+
bool getFormatResultToJson() const;
34+
void setFormatResultToJson(bool formatResultToJson);
35+
std::string getOssFile() const;
36+
void setOssFile(const std::string &ossFile);
37+
std::string getRequestProxyBy() const;
38+
void setRequestProxyBy(const std::string &requestProxyBy);
39+
std::string getImageURL() const;
40+
void setImageURL(const std::string &imageURL);
41+
42+
private:
43+
bool formatResultToJson_;
44+
std::string ossFile_;
45+
std::string requestProxyBy_;
46+
std::string imageURL_;
47+
};
48+
} // namespace Model
49+
} // namespace Objectdet
50+
} // namespace AlibabaCloud
51+
#endif // !ALIBABACLOUD_OBJECTDET_MODEL_DETECTMAINBODYREQUEST_H_

0 commit comments

Comments
 (0)