Skip to content

Commit 39f77be

Browse files
committed
Update RefineMask.
1 parent 8f129b7 commit 39f77be

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

+1853
-1567
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.36.1284
1+
1.36.1285
Lines changed: 40 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -1,51 +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_IMAGESEG_MODEL_CHANGESKYREQUEST_H_
18-
#define ALIBABACLOUD_IMAGESEG_MODEL_CHANGESKYREQUEST_H_
19-
20-
#include <string>
21-
#include <vector>
22-
#include <alibabacloud/core/RpcServiceRequest.h>
23-
#include <alibabacloud/imageseg/ImagesegExport.h>
24-
25-
namespace AlibabaCloud
26-
{
27-
namespace Imageseg
28-
{
29-
namespace Model
30-
{
31-
class ALIBABACLOUD_IMAGESEG_EXPORT ChangeSkyRequest : public RpcServiceRequest
32-
{
33-
34-
public:
35-
ChangeSkyRequest();
36-
~ChangeSkyRequest();
37-
38-
std::string getReplaceImageURL()const;
39-
void setReplaceImageURL(const std::string& replaceImageURL);
40-
std::string getImageURL()const;
41-
void setImageURL(const std::string& imageURL);
42-
43-
private:
44-
std::string replaceImageURL_;
45-
std::string imageURL_;
46-
47-
};
48-
}
49-
}
50-
}
51-
#endif // !ALIBABACLOUD_IMAGESEG_MODEL_CHANGESKYREQUEST_H_
15+
*/
16+
17+
#ifndef ALIBABACLOUD_IMAGESEG_MODEL_CHANGESKYREQUEST_H_
18+
#define ALIBABACLOUD_IMAGESEG_MODEL_CHANGESKYREQUEST_H_
19+
20+
#include <alibabacloud/imageseg/ImagesegExport.h>
21+
#include <alibabacloud/core/RpcServiceRequest.h>
22+
#include <string>
23+
#include <vector>
24+
#include <map>
25+
26+
namespace AlibabaCloud {
27+
namespace Imageseg {
28+
namespace Model {
29+
class ALIBABACLOUD_IMAGESEG_EXPORT ChangeSkyRequest : public RpcServiceRequest {
30+
public:
31+
ChangeSkyRequest();
32+
~ChangeSkyRequest();
33+
std::string getOssFile() const;
34+
void setOssFile(const std::string &ossFile);
35+
std::string getReplaceImageURL() const;
36+
void setReplaceImageURL(const std::string &replaceImageURL);
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+
std::string ossFile_;
44+
std::string replaceImageURL_;
45+
std::string requestProxyBy_;
46+
std::string imageURL_;
47+
};
48+
} // namespace Model
49+
} // namespace Imageseg
50+
} // namespace AlibabaCloud
51+
#endif // !ALIBABACLOUD_IMAGESEG_MODEL_CHANGESKYREQUEST_H_
Lines changed: 40 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -1,51 +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_IMAGESEG_MODEL_GETASYNCJOBRESULTREQUEST_H_
18-
#define ALIBABACLOUD_IMAGESEG_MODEL_GETASYNCJOBRESULTREQUEST_H_
19-
20-
#include <string>
21-
#include <vector>
22-
#include <alibabacloud/core/RpcServiceRequest.h>
23-
#include <alibabacloud/imageseg/ImagesegExport.h>
24-
25-
namespace AlibabaCloud
26-
{
27-
namespace Imageseg
28-
{
29-
namespace Model
30-
{
31-
class ALIBABACLOUD_IMAGESEG_EXPORT GetAsyncJobResultRequest : public RpcServiceRequest
32-
{
33-
34-
public:
35-
GetAsyncJobResultRequest();
36-
~GetAsyncJobResultRequest();
37-
38-
bool getAsync()const;
39-
void setAsync(bool async);
40-
std::string getJobId()const;
41-
void setJobId(const std::string& jobId);
42-
43-
private:
44-
bool async_;
45-
std::string jobId_;
46-
47-
};
48-
}
49-
}
50-
}
51-
#endif // !ALIBABACLOUD_IMAGESEG_MODEL_GETASYNCJOBRESULTREQUEST_H_
15+
*/
16+
17+
#ifndef ALIBABACLOUD_IMAGESEG_MODEL_GETASYNCJOBRESULTREQUEST_H_
18+
#define ALIBABACLOUD_IMAGESEG_MODEL_GETASYNCJOBRESULTREQUEST_H_
19+
20+
#include <alibabacloud/imageseg/ImagesegExport.h>
21+
#include <alibabacloud/core/RpcServiceRequest.h>
22+
#include <string>
23+
#include <vector>
24+
#include <map>
25+
26+
namespace AlibabaCloud {
27+
namespace Imageseg {
28+
namespace Model {
29+
class ALIBABACLOUD_IMAGESEG_EXPORT GetAsyncJobResultRequest : public RpcServiceRequest {
30+
public:
31+
GetAsyncJobResultRequest();
32+
~GetAsyncJobResultRequest();
33+
std::string getJobId() const;
34+
void setJobId(const std::string &jobId);
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+
bool getAsync() const;
40+
void setAsync(bool async);
41+
42+
private:
43+
std::string jobId_;
44+
std::string ossFile_;
45+
std::string requestProxyBy_;
46+
bool async_;
47+
};
48+
} // namespace Model
49+
} // namespace Imageseg
50+
} // namespace AlibabaCloud
51+
#endif // !ALIBABACLOUD_IMAGESEG_MODEL_GETASYNCJOBRESULTREQUEST_H_
Lines changed: 37 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1,48 +1,48 @@
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_IMAGESEG_MODEL_PARSEFACEREQUEST_H_
18-
#define ALIBABACLOUD_IMAGESEG_MODEL_PARSEFACEREQUEST_H_
19-
20-
#include <string>
21-
#include <vector>
22-
#include <alibabacloud/core/RpcServiceRequest.h>
23-
#include <alibabacloud/imageseg/ImagesegExport.h>
24-
25-
namespace AlibabaCloud
26-
{
27-
namespace Imageseg
28-
{
29-
namespace Model
30-
{
31-
class ALIBABACLOUD_IMAGESEG_EXPORT ParseFaceRequest : public RpcServiceRequest
32-
{
33-
34-
public:
35-
ParseFaceRequest();
36-
~ParseFaceRequest();
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_IMAGESEG_MODEL_PARSEFACEREQUEST_H_
15+
*/
16+
17+
#ifndef ALIBABACLOUD_IMAGESEG_MODEL_PARSEFACEREQUEST_H_
18+
#define ALIBABACLOUD_IMAGESEG_MODEL_PARSEFACEREQUEST_H_
19+
20+
#include <alibabacloud/imageseg/ImagesegExport.h>
21+
#include <alibabacloud/core/RpcServiceRequest.h>
22+
#include <string>
23+
#include <vector>
24+
#include <map>
25+
26+
namespace AlibabaCloud {
27+
namespace Imageseg {
28+
namespace Model {
29+
class ALIBABACLOUD_IMAGESEG_EXPORT ParseFaceRequest : public RpcServiceRequest {
30+
public:
31+
ParseFaceRequest();
32+
~ParseFaceRequest();
33+
std::string getOssFile() const;
34+
void setOssFile(const std::string &ossFile);
35+
std::string getRequestProxyBy() const;
36+
void setRequestProxyBy(const std::string &requestProxyBy);
37+
std::string getImageURL() const;
38+
void setImageURL(const std::string &imageURL);
39+
40+
private:
41+
std::string ossFile_;
42+
std::string requestProxyBy_;
43+
std::string imageURL_;
44+
};
45+
} // namespace Model
46+
} // namespace Imageseg
47+
} // namespace AlibabaCloud
48+
#endif // !ALIBABACLOUD_IMAGESEG_MODEL_PARSEFACEREQUEST_H_
Lines changed: 40 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -1,51 +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_IMAGESEG_MODEL_REFINEMASKREQUEST_H_
18-
#define ALIBABACLOUD_IMAGESEG_MODEL_REFINEMASKREQUEST_H_
19-
20-
#include <string>
21-
#include <vector>
22-
#include <alibabacloud/core/RpcServiceRequest.h>
23-
#include <alibabacloud/imageseg/ImagesegExport.h>
24-
25-
namespace AlibabaCloud
26-
{
27-
namespace Imageseg
28-
{
29-
namespace Model
30-
{
31-
class ALIBABACLOUD_IMAGESEG_EXPORT RefineMaskRequest : public RpcServiceRequest
32-
{
33-
34-
public:
35-
RefineMaskRequest();
36-
~RefineMaskRequest();
37-
38-
std::string getMaskImageURL()const;
39-
void setMaskImageURL(const std::string& maskImageURL);
40-
std::string getImageURL()const;
41-
void setImageURL(const std::string& imageURL);
42-
43-
private:
44-
std::string maskImageURL_;
45-
std::string imageURL_;
46-
47-
};
48-
}
49-
}
50-
}
51-
#endif // !ALIBABACLOUD_IMAGESEG_MODEL_REFINEMASKREQUEST_H_
15+
*/
16+
17+
#ifndef ALIBABACLOUD_IMAGESEG_MODEL_REFINEMASKREQUEST_H_
18+
#define ALIBABACLOUD_IMAGESEG_MODEL_REFINEMASKREQUEST_H_
19+
20+
#include <alibabacloud/imageseg/ImagesegExport.h>
21+
#include <alibabacloud/core/RpcServiceRequest.h>
22+
#include <string>
23+
#include <vector>
24+
#include <map>
25+
26+
namespace AlibabaCloud {
27+
namespace Imageseg {
28+
namespace Model {
29+
class ALIBABACLOUD_IMAGESEG_EXPORT RefineMaskRequest : public RpcServiceRequest {
30+
public:
31+
RefineMaskRequest();
32+
~RefineMaskRequest();
33+
std::string getMaskImageURL() const;
34+
void setMaskImageURL(const std::string &maskImageURL);
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+
std::string maskImageURL_;
44+
std::string ossFile_;
45+
std::string requestProxyBy_;
46+
std::string imageURL_;
47+
};
48+
} // namespace Model
49+
} // namespace Imageseg
50+
} // namespace AlibabaCloud
51+
#endif // !ALIBABACLOUD_IMAGESEG_MODEL_REFINEMASKREQUEST_H_

0 commit comments

Comments
 (0)