Skip to content

Commit 3b85347

Browse files
committed
Release EstimateMonocularVideoDepth.
1 parent 2f4689f commit 3b85347

13 files changed

+433
-361
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.36.1300
1+
1.36.1301
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_THREEDVISION_MODEL_ESTIMATEMONOCULARIMAGEDEPTHREQUEST_H_
18-
#define ALIBABACLOUD_THREEDVISION_MODEL_ESTIMATEMONOCULARIMAGEDEPTHREQUEST_H_
19-
20-
#include <alibabacloud/threedvision/ThreedvisionExport.h>
21-
#include <alibabacloud/core/RpcServiceRequest.h>
22-
#include <string>
23-
#include <vector>
24-
#include <map>
25-
26-
namespace AlibabaCloud {
27-
namespace Threedvision {
28-
namespace Model {
29-
class ALIBABACLOUD_THREEDVISION_EXPORT EstimateMonocularImageDepthRequest : public RpcServiceRequest {
30-
public:
31-
EstimateMonocularImageDepthRequest();
32-
~EstimateMonocularImageDepthRequest();
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 Threedvision
41-
} // namespace AlibabaCloud
42-
#endif // !ALIBABACLOUD_THREEDVISION_MODEL_ESTIMATEMONOCULARIMAGEDEPTHREQUEST_H_
15+
*/
16+
17+
#ifndef ALIBABACLOUD_THREEDVISION_MODEL_ESTIMATEMONOCULARIMAGEDEPTHREQUEST_H_
18+
#define ALIBABACLOUD_THREEDVISION_MODEL_ESTIMATEMONOCULARIMAGEDEPTHREQUEST_H_
19+
20+
#include <string>
21+
#include <vector>
22+
#include <alibabacloud/core/RpcServiceRequest.h>
23+
#include <alibabacloud/threedvision/ThreedvisionExport.h>
24+
25+
namespace AlibabaCloud
26+
{
27+
namespace Threedvision
28+
{
29+
namespace Model
30+
{
31+
class ALIBABACLOUD_THREEDVISION_EXPORT EstimateMonocularImageDepthRequest : public RpcServiceRequest
32+
{
33+
34+
public:
35+
EstimateMonocularImageDepthRequest();
36+
~EstimateMonocularImageDepthRequest();
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_THREEDVISION_MODEL_ESTIMATEMONOCULARIMAGEDEPTHREQUEST_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_THREEDVISION_MODEL_ESTIMATEMONOCULARVIDEODEPTHREQUEST_H_
18-
#define ALIBABACLOUD_THREEDVISION_MODEL_ESTIMATEMONOCULARVIDEODEPTHREQUEST_H_
19-
20-
#include <alibabacloud/threedvision/ThreedvisionExport.h>
21-
#include <alibabacloud/core/RpcServiceRequest.h>
22-
#include <string>
23-
#include <vector>
24-
#include <map>
25-
26-
namespace AlibabaCloud {
27-
namespace Threedvision {
28-
namespace Model {
29-
class ALIBABACLOUD_THREEDVISION_EXPORT EstimateMonocularVideoDepthRequest : public RpcServiceRequest {
30-
public:
31-
EstimateMonocularVideoDepthRequest();
32-
~EstimateMonocularVideoDepthRequest();
33-
std::string getSampleRate() const;
34-
void setSampleRate(const std::string &sampleRate);
35-
bool getAsync() const;
36-
void setAsync(bool async);
37-
std::string getVideoURL() const;
38-
void setVideoURL(const std::string &videoURL);
39-
40-
private:
41-
std::string sampleRate_;
42-
bool async_;
43-
std::string videoURL_;
44-
};
45-
} // namespace Model
46-
} // namespace Threedvision
47-
} // namespace AlibabaCloud
48-
#endif // !ALIBABACLOUD_THREEDVISION_MODEL_ESTIMATEMONOCULARVIDEODEPTHREQUEST_H_
15+
*/
16+
17+
#ifndef ALIBABACLOUD_THREEDVISION_MODEL_ESTIMATEMONOCULARVIDEODEPTHREQUEST_H_
18+
#define ALIBABACLOUD_THREEDVISION_MODEL_ESTIMATEMONOCULARVIDEODEPTHREQUEST_H_
19+
20+
#include <string>
21+
#include <vector>
22+
#include <alibabacloud/core/RpcServiceRequest.h>
23+
#include <alibabacloud/threedvision/ThreedvisionExport.h>
24+
25+
namespace AlibabaCloud
26+
{
27+
namespace Threedvision
28+
{
29+
namespace Model
30+
{
31+
class ALIBABACLOUD_THREEDVISION_EXPORT EstimateMonocularVideoDepthRequest : public RpcServiceRequest
32+
{
33+
34+
public:
35+
EstimateMonocularVideoDepthRequest();
36+
~EstimateMonocularVideoDepthRequest();
37+
38+
std::string getSampleRate()const;
39+
void setSampleRate(const std::string& sampleRate);
40+
bool getAsync()const;
41+
void setAsync(bool async);
42+
std::string getVideoURL()const;
43+
void setVideoURL(const std::string& videoURL);
44+
45+
private:
46+
std::string sampleRate_;
47+
bool async_;
48+
std::string videoURL_;
49+
50+
};
51+
}
52+
}
53+
}
54+
#endif // !ALIBABACLOUD_THREEDVISION_MODEL_ESTIMATEMONOCULARVIDEODEPTHREQUEST_H_
Lines changed: 40 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,45 +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_THREEDVISION_MODEL_ESTIMATESTEREOIMAGEDEPTHREQUEST_H_
18-
#define ALIBABACLOUD_THREEDVISION_MODEL_ESTIMATESTEREOIMAGEDEPTHREQUEST_H_
19-
20-
#include <alibabacloud/threedvision/ThreedvisionExport.h>
21-
#include <alibabacloud/core/RpcServiceRequest.h>
22-
#include <string>
23-
#include <vector>
24-
#include <map>
25-
26-
namespace AlibabaCloud {
27-
namespace Threedvision {
28-
namespace Model {
29-
class ALIBABACLOUD_THREEDVISION_EXPORT EstimateStereoImageDepthRequest : public RpcServiceRequest {
30-
public:
31-
EstimateStereoImageDepthRequest();
32-
~EstimateStereoImageDepthRequest();
33-
std::string getRightImageURL() const;
34-
void setRightImageURL(const std::string &rightImageURL);
35-
std::string getLeftImageURL() const;
36-
void setLeftImageURL(const std::string &leftImageURL);
37-
38-
private:
39-
std::string rightImageURL_;
40-
std::string leftImageURL_;
41-
};
42-
} // namespace Model
43-
} // namespace Threedvision
44-
} // namespace AlibabaCloud
45-
#endif // !ALIBABACLOUD_THREEDVISION_MODEL_ESTIMATESTEREOIMAGEDEPTHREQUEST_H_
15+
*/
16+
17+
#ifndef ALIBABACLOUD_THREEDVISION_MODEL_ESTIMATESTEREOIMAGEDEPTHREQUEST_H_
18+
#define ALIBABACLOUD_THREEDVISION_MODEL_ESTIMATESTEREOIMAGEDEPTHREQUEST_H_
19+
20+
#include <string>
21+
#include <vector>
22+
#include <alibabacloud/core/RpcServiceRequest.h>
23+
#include <alibabacloud/threedvision/ThreedvisionExport.h>
24+
25+
namespace AlibabaCloud
26+
{
27+
namespace Threedvision
28+
{
29+
namespace Model
30+
{
31+
class ALIBABACLOUD_THREEDVISION_EXPORT EstimateStereoImageDepthRequest : public RpcServiceRequest
32+
{
33+
34+
public:
35+
EstimateStereoImageDepthRequest();
36+
~EstimateStereoImageDepthRequest();
37+
38+
std::string getRightImageURL()const;
39+
void setRightImageURL(const std::string& rightImageURL);
40+
std::string getLeftImageURL()const;
41+
void setLeftImageURL(const std::string& leftImageURL);
42+
43+
private:
44+
std::string rightImageURL_;
45+
std::string leftImageURL_;
46+
47+
};
48+
}
49+
}
50+
}
51+
#endif // !ALIBABACLOUD_THREEDVISION_MODEL_ESTIMATESTEREOIMAGEDEPTHREQUEST_H_
Lines changed: 40 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,45 +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_THREEDVISION_MODEL_GETASYNCJOBRESULTREQUEST_H_
18-
#define ALIBABACLOUD_THREEDVISION_MODEL_GETASYNCJOBRESULTREQUEST_H_
19-
20-
#include <alibabacloud/threedvision/ThreedvisionExport.h>
21-
#include <alibabacloud/core/RpcServiceRequest.h>
22-
#include <string>
23-
#include <vector>
24-
#include <map>
25-
26-
namespace AlibabaCloud {
27-
namespace Threedvision {
28-
namespace Model {
29-
class ALIBABACLOUD_THREEDVISION_EXPORT GetAsyncJobResultRequest : public RpcServiceRequest {
30-
public:
31-
GetAsyncJobResultRequest();
32-
~GetAsyncJobResultRequest();
33-
std::string getJobId() const;
34-
void setJobId(const std::string &jobId);
35-
bool getAsync() const;
36-
void setAsync(bool async);
37-
38-
private:
39-
std::string jobId_;
40-
bool async_;
41-
};
42-
} // namespace Model
43-
} // namespace Threedvision
44-
} // namespace AlibabaCloud
45-
#endif // !ALIBABACLOUD_THREEDVISION_MODEL_GETASYNCJOBRESULTREQUEST_H_
15+
*/
16+
17+
#ifndef ALIBABACLOUD_THREEDVISION_MODEL_GETASYNCJOBRESULTREQUEST_H_
18+
#define ALIBABACLOUD_THREEDVISION_MODEL_GETASYNCJOBRESULTREQUEST_H_
19+
20+
#include <string>
21+
#include <vector>
22+
#include <alibabacloud/core/RpcServiceRequest.h>
23+
#include <alibabacloud/threedvision/ThreedvisionExport.h>
24+
25+
namespace AlibabaCloud
26+
{
27+
namespace Threedvision
28+
{
29+
namespace Model
30+
{
31+
class ALIBABACLOUD_THREEDVISION_EXPORT GetAsyncJobResultRequest : public RpcServiceRequest
32+
{
33+
34+
public:
35+
GetAsyncJobResultRequest();
36+
~GetAsyncJobResultRequest();
37+
38+
std::string getJobId()const;
39+
void setJobId(const std::string& jobId);
40+
bool getAsync()const;
41+
void setAsync(bool async);
42+
43+
private:
44+
std::string jobId_;
45+
bool async_;
46+
47+
};
48+
}
49+
}
50+
}
51+
#endif // !ALIBABACLOUD_THREEDVISION_MODEL_GETASYNCJOBRESULTREQUEST_H_

0 commit comments

Comments
 (0)