Skip to content

Commit 08bb846

Browse files
committed
Update MakeSuperResolutionImage.
1 parent e4a8dc8 commit 08bb846

Some content is hidden

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

41 files changed

+1595
-1307
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.36.1304
1+
1.36.1305
Lines changed: 37 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,42 +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_IMAGEENHAN_MODEL_ASSESSCOMPOSITIONREQUEST_H_
18-
#define ALIBABACLOUD_IMAGEENHAN_MODEL_ASSESSCOMPOSITIONREQUEST_H_
19-
20-
#include <alibabacloud/imageenhan/ImageenhanExport.h>
21-
#include <alibabacloud/core/RpcServiceRequest.h>
22-
#include <string>
23-
#include <vector>
24-
#include <map>
25-
26-
namespace AlibabaCloud {
27-
namespace Imageenhan {
28-
namespace Model {
29-
class ALIBABACLOUD_IMAGEENHAN_EXPORT AssessCompositionRequest : public RpcServiceRequest {
30-
public:
31-
AssessCompositionRequest();
32-
~AssessCompositionRequest();
33-
std::string getImageURL() const;
34-
void setImageURL(const std::string &imageURL);
35-
36-
private:
37-
std::string imageURL_;
38-
};
39-
} // namespace Model
40-
} // namespace Imageenhan
41-
} // namespace AlibabaCloud
42-
#endif // !ALIBABACLOUD_IMAGEENHAN_MODEL_ASSESSCOMPOSITIONREQUEST_H_
15+
*/
16+
17+
#ifndef ALIBABACLOUD_IMAGEENHAN_MODEL_ASSESSCOMPOSITIONREQUEST_H_
18+
#define ALIBABACLOUD_IMAGEENHAN_MODEL_ASSESSCOMPOSITIONREQUEST_H_
19+
20+
#include <string>
21+
#include <vector>
22+
#include <alibabacloud/core/RpcServiceRequest.h>
23+
#include <alibabacloud/imageenhan/ImageenhanExport.h>
24+
25+
namespace AlibabaCloud
26+
{
27+
namespace Imageenhan
28+
{
29+
namespace Model
30+
{
31+
class ALIBABACLOUD_IMAGEENHAN_EXPORT AssessCompositionRequest : public RpcServiceRequest
32+
{
33+
34+
public:
35+
AssessCompositionRequest();
36+
~AssessCompositionRequest();
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_IMAGEENHAN_MODEL_ASSESSCOMPOSITIONREQUEST_H_
Lines changed: 37 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,42 +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_IMAGEENHAN_MODEL_ASSESSEXPOSUREREQUEST_H_
18-
#define ALIBABACLOUD_IMAGEENHAN_MODEL_ASSESSEXPOSUREREQUEST_H_
19-
20-
#include <alibabacloud/imageenhan/ImageenhanExport.h>
21-
#include <alibabacloud/core/RpcServiceRequest.h>
22-
#include <string>
23-
#include <vector>
24-
#include <map>
25-
26-
namespace AlibabaCloud {
27-
namespace Imageenhan {
28-
namespace Model {
29-
class ALIBABACLOUD_IMAGEENHAN_EXPORT AssessExposureRequest : public RpcServiceRequest {
30-
public:
31-
AssessExposureRequest();
32-
~AssessExposureRequest();
33-
std::string getImageURL() const;
34-
void setImageURL(const std::string &imageURL);
35-
36-
private:
37-
std::string imageURL_;
38-
};
39-
} // namespace Model
40-
} // namespace Imageenhan
41-
} // namespace AlibabaCloud
42-
#endif // !ALIBABACLOUD_IMAGEENHAN_MODEL_ASSESSEXPOSUREREQUEST_H_
15+
*/
16+
17+
#ifndef ALIBABACLOUD_IMAGEENHAN_MODEL_ASSESSEXPOSUREREQUEST_H_
18+
#define ALIBABACLOUD_IMAGEENHAN_MODEL_ASSESSEXPOSUREREQUEST_H_
19+
20+
#include <string>
21+
#include <vector>
22+
#include <alibabacloud/core/RpcServiceRequest.h>
23+
#include <alibabacloud/imageenhan/ImageenhanExport.h>
24+
25+
namespace AlibabaCloud
26+
{
27+
namespace Imageenhan
28+
{
29+
namespace Model
30+
{
31+
class ALIBABACLOUD_IMAGEENHAN_EXPORT AssessExposureRequest : public RpcServiceRequest
32+
{
33+
34+
public:
35+
AssessExposureRequest();
36+
~AssessExposureRequest();
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_IMAGEENHAN_MODEL_ASSESSEXPOSUREREQUEST_H_
Lines changed: 37 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,42 +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_IMAGEENHAN_MODEL_ASSESSSHARPNESSREQUEST_H_
18-
#define ALIBABACLOUD_IMAGEENHAN_MODEL_ASSESSSHARPNESSREQUEST_H_
19-
20-
#include <alibabacloud/imageenhan/ImageenhanExport.h>
21-
#include <alibabacloud/core/RpcServiceRequest.h>
22-
#include <string>
23-
#include <vector>
24-
#include <map>
25-
26-
namespace AlibabaCloud {
27-
namespace Imageenhan {
28-
namespace Model {
29-
class ALIBABACLOUD_IMAGEENHAN_EXPORT AssessSharpnessRequest : public RpcServiceRequest {
30-
public:
31-
AssessSharpnessRequest();
32-
~AssessSharpnessRequest();
33-
std::string getImageURL() const;
34-
void setImageURL(const std::string &imageURL);
35-
36-
private:
37-
std::string imageURL_;
38-
};
39-
} // namespace Model
40-
} // namespace Imageenhan
41-
} // namespace AlibabaCloud
42-
#endif // !ALIBABACLOUD_IMAGEENHAN_MODEL_ASSESSSHARPNESSREQUEST_H_
15+
*/
16+
17+
#ifndef ALIBABACLOUD_IMAGEENHAN_MODEL_ASSESSSHARPNESSREQUEST_H_
18+
#define ALIBABACLOUD_IMAGEENHAN_MODEL_ASSESSSHARPNESSREQUEST_H_
19+
20+
#include <string>
21+
#include <vector>
22+
#include <alibabacloud/core/RpcServiceRequest.h>
23+
#include <alibabacloud/imageenhan/ImageenhanExport.h>
24+
25+
namespace AlibabaCloud
26+
{
27+
namespace Imageenhan
28+
{
29+
namespace Model
30+
{
31+
class ALIBABACLOUD_IMAGEENHAN_EXPORT AssessSharpnessRequest : public RpcServiceRequest
32+
{
33+
34+
public:
35+
AssessSharpnessRequest();
36+
~AssessSharpnessRequest();
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_IMAGEENHAN_MODEL_ASSESSSHARPNESSREQUEST_H_
Lines changed: 43 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1,48 +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_IMAGEENHAN_MODEL_CHANGEIMAGESIZEREQUEST_H_
18-
#define ALIBABACLOUD_IMAGEENHAN_MODEL_CHANGEIMAGESIZEREQUEST_H_
19-
20-
#include <alibabacloud/imageenhan/ImageenhanExport.h>
21-
#include <alibabacloud/core/RpcServiceRequest.h>
22-
#include <string>
23-
#include <vector>
24-
#include <map>
25-
26-
namespace AlibabaCloud {
27-
namespace Imageenhan {
28-
namespace Model {
29-
class ALIBABACLOUD_IMAGEENHAN_EXPORT ChangeImageSizeRequest : public RpcServiceRequest {
30-
public:
31-
ChangeImageSizeRequest();
32-
~ChangeImageSizeRequest();
33-
int getHeight() const;
34-
void setHeight(int height);
35-
std::string getUrl() const;
36-
void setUrl(const std::string &url);
37-
int getWidth() const;
38-
void setWidth(int width);
39-
40-
private:
41-
int height_;
42-
std::string url_;
43-
int width_;
44-
};
45-
} // namespace Model
46-
} // namespace Imageenhan
47-
} // namespace AlibabaCloud
48-
#endif // !ALIBABACLOUD_IMAGEENHAN_MODEL_CHANGEIMAGESIZEREQUEST_H_
15+
*/
16+
17+
#ifndef ALIBABACLOUD_IMAGEENHAN_MODEL_CHANGEIMAGESIZEREQUEST_H_
18+
#define ALIBABACLOUD_IMAGEENHAN_MODEL_CHANGEIMAGESIZEREQUEST_H_
19+
20+
#include <string>
21+
#include <vector>
22+
#include <alibabacloud/core/RpcServiceRequest.h>
23+
#include <alibabacloud/imageenhan/ImageenhanExport.h>
24+
25+
namespace AlibabaCloud
26+
{
27+
namespace Imageenhan
28+
{
29+
namespace Model
30+
{
31+
class ALIBABACLOUD_IMAGEENHAN_EXPORT ChangeImageSizeRequest : public RpcServiceRequest
32+
{
33+
34+
public:
35+
ChangeImageSizeRequest();
36+
~ChangeImageSizeRequest();
37+
38+
int getHeight()const;
39+
void setHeight(int height);
40+
std::string getUrl()const;
41+
void setUrl(const std::string& url);
42+
int getWidth()const;
43+
void setWidth(int width);
44+
45+
private:
46+
int height_;
47+
std::string url_;
48+
int width_;
49+
50+
};
51+
}
52+
}
53+
}
54+
#endif // !ALIBABACLOUD_IMAGEENHAN_MODEL_CHANGEIMAGESIZEREQUEST_H_

0 commit comments

Comments
 (0)