Gazebo Rendering
API Reference
9.0.0
insert_drive_file
Tutorials
library_books
Classes
toc
Namespaces
insert_drive_file
Files
launch
Gazebo Website
Index
List
Hierarchy
Members: All
Members: Functions
Members: Variables
Members: Typedefs
Members: Enumerations
Members: Enumerator
List
Members
Functions
Typedefs
Variables
Enumerations
Enumerator
src
gz-rendering
include
gz
rendering
Image.hh
Go to the documentation of this file.
1
/*
2
* Copyright (C) 2015 Open Source Robotics Foundation
3
*
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
* you may not use this file except in compliance with the License.
6
* You may obtain a copy of the License at
7
*
8
* http://www.apache.org/licenses/LICENSE-2.0
9
*
10
* Unless required by applicable law or agreed to in writing, software
11
* distributed under the License is distributed on an "AS IS" BASIS,
12
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
* See the License for the specific language governing permissions and
14
* limitations under the License.
15
*
16
*/
17
#ifndef GZ_RENDERING_IMAGE_HH_
18
#define GZ_RENDERING_IMAGE_HH_
19
20
#include <memory>
21
22
#include <gz/utils/ImplPtr.hh>
23
24
#include "gz/rendering/config.hh"
25
#include "
gz/rendering/PixelFormat.hh
"
26
#include "gz/rendering/Export.hh"
27
28
namespace
gz
29
{
30
namespace
rendering
31
{
32
inline
namespace
GZ_RENDERING_VERSION_NAMESPACE {
33
//
36
class
GZ_RENDERING_VISIBLE
Image
37
{
39
public
:
Image
();
40
45
public
:
Image
(
unsigned
int
_width,
unsigned
int
_height,
46
PixelFormat
_format);
47
49
public
:
virtual
~Image
();
50
53
public
:
unsigned
int
Width
()
const
;
54
57
public
:
unsigned
int
Height
()
const
;
58
61
public
:
PixelFormat
Format
()
const
;
62
65
public
:
unsigned
int
Depth
()
const
;
66
69
public
:
unsigned
int
MemorySize
()
const
;
70
73
public
:
const
void
*
Data
()
const
;
74
77
public
:
void
*
Data
();
78
82
public
:
template
<
typename
T>
83
const
T *Data()
const
;
84
88
public
:
template
<
typename
T>
89
T *Data();
90
91
GZ_UTILS_IMPL_PTR(dataPtr)
92
};
93
95
template
<
typename
T>
96
const
T *
Image::Data
()
const
97
{
98
return
static_cast<
const
T *
>
(this->Data());
99
}
100
102
template
<
typename
T>
103
T *
Image::Data
()
104
{
105
return
static_cast<
T *
>
(this->Data());
106
}
107
}
108
}
109
}
110
#endif