Point Cloud Library (PCL)
1.15.1
Toggle main menu visibility
Loading...
Searching...
No Matches
pcl
io
openni_camera
openni_device_oni.h
1
/*
2
* Software License Agreement (BSD License)
3
*
4
* Copyright (c) 2011 Willow Garage, Inc.
5
*
6
* All rights reserved.
7
*
8
* Redistribution and use in source and binary forms, with or without
9
* modification, are permitted provided that the following conditions
10
* are met:
11
*
12
* * Redistributions of source code must retain the above copyright
13
* notice, this list of conditions and the following disclaimer.
14
* * Redistributions in binary form must reproduce the above
15
* copyright notice, this list of conditions and the following
16
* disclaimer in the documentation and/or other materials provided
17
* with the distribution.
18
* * Neither the name of the copyright holder(s) nor the names of its
19
* contributors may be used to endorse or promote products derived
20
* from this software without specific prior written permission.
21
*
22
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
23
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
24
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
25
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
26
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
27
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
28
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
29
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
30
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
32
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
33
* POSSIBILITY OF SUCH DAMAGE.
34
*
35
*/
36
37
#pragma once
38
39
#include <pcl/pcl_config.h>
40
#include <
pcl/memory.h
>
41
#ifdef HAVE_OPENNI
42
43
#include "openni_device.h"
44
#include "openni_driver.h"
45
46
#include <pcl/io/openni_camera/openni_image.h>
47
48
#include <condition_variable>
49
#include <mutex>
50
51
namespace
openni_wrapper
52
{
53
54
/**
55
* @brief Concrete implementation of the interface OpenNIDevice for a virtual device playing back an ONI file.
56
* @author Suat Gedikli
57
* @date 19. june 2011
58
* @ingroup io
59
*/
60
class
DeviceONI
:
public
OpenNIDevice
61
{
62
friend
class
OpenNIDriver
;
63
public
:
64
65
using
Ptr
= pcl::shared_ptr<DeviceONI>;
66
using
ConstPtr
= pcl::shared_ptr<const DeviceONI>;
67
68
DeviceONI
(xn::Context& context,
const
std::string& file_name,
bool
repeat =
false
,
bool
streaming =
true
);
69
~DeviceONI
() noexcept override;
70
71
void
startImageStream
() override;
72
void
stopImageStream
() override;
73
74
void
startDepthStream
() override;
75
void
stopDepthStream
() override;
76
77
void
startIRStream
() override;
78
void
stopIRStream
() override;
79
80
bool
isImageStreamRunning
() const noexcept override;
81
bool
isDepthStreamRunning
() const noexcept override;
82
bool
isIRStreamRunning
() const noexcept override;
83
84
bool
isImageResizeSupported
(
unsigned
input_width,
unsigned
input_height,
unsigned
output_width,
unsigned
output_height) const noexcept override;
85
86
/** \brief Trigger a new frame in the ONI stream.
87
* \param[in] relative_offset the relative offset in case we want to seek in the file
88
*/
89
bool
90
trigger
(
int
relative_offset = 0);
91
92
bool
isStreaming
() const noexcept;
93
94
/** \brief Check if there is any data left in the ONI file to process. */
95
inline
bool
96
hasDataLeft
()
97
{
98
return
(!
player_
.IsEOF ());
99
}
100
101
protected
:
102
Image::Ptr
getCurrentImage
(pcl::shared_ptr<xn::ImageMetaData> image_meta_data)
const
noexcept
override
;
103
104
void
PlayerThreadFunction
();
105
static
void
__stdcall
NewONIDepthDataAvailable
(xn::ProductionNode& node,
void
* cookie)
noexcept
;
106
static
void
__stdcall
NewONIImageDataAvailable
(xn::ProductionNode& node,
void
* cookie)
noexcept
;
107
static
void
__stdcall
NewONIIRDataAvailable
(xn::ProductionNode& node,
void
* cookie)
noexcept
;
108
109
xn::Player
player_
;
110
std::thread
player_thread_
;
111
mutable
std::mutex
player_mutex_
;
112
std::condition_variable
player_condition_
;
113
bool
streaming_
;
114
bool
depth_stream_running_
{
false
};
115
bool
image_stream_running_
{
false
};
116
bool
ir_stream_running_
{
false
};
117
};
118
}
//namespace openni_wrapper
119
#endif
//HAVE_OPENNI
openni_wrapper::DeviceONI::~DeviceONI
~DeviceONI() noexcept override
openni_wrapper::DeviceONI::stopIRStream
void stopIRStream() override
stops the IR stream.
openni_wrapper::DeviceONI::getCurrentImage
Image::Ptr getCurrentImage(pcl::shared_ptr< xn::ImageMetaData > image_meta_data) const noexcept override
openni_wrapper::DeviceONI::startIRStream
void startIRStream() override
starts the IR stream.
openni_wrapper::DeviceONI::NewONIIRDataAvailable
static void __stdcall NewONIIRDataAvailable(xn::ProductionNode &node, void *cookie) noexcept
openni_wrapper::DeviceONI::stopDepthStream
void stopDepthStream() override
stops the depth stream.
openni_wrapper::DeviceONI::depth_stream_running_
bool depth_stream_running_
Definition
openni_device_oni.h:114
openni_wrapper::DeviceONI::isIRStreamRunning
bool isIRStreamRunning() const noexcept override
openni_wrapper::DeviceONI::ConstPtr
pcl::shared_ptr< const DeviceONI > ConstPtr
Definition
openni_device_oni.h:66
openni_wrapper::DeviceONI::startDepthStream
void startDepthStream() override
starts the depth stream.
openni_wrapper::DeviceONI::trigger
bool trigger(int relative_offset=0)
Trigger a new frame in the ONI stream.
openni_wrapper::DeviceONI::player_
xn::Player player_
Definition
openni_device_oni.h:109
openni_wrapper::DeviceONI::player_mutex_
std::mutex player_mutex_
Definition
openni_device_oni.h:111
openni_wrapper::DeviceONI::isImageResizeSupported
bool isImageResizeSupported(unsigned input_width, unsigned input_height, unsigned output_width, unsigned output_height) const noexcept override
openni_wrapper::DeviceONI::ir_stream_running_
bool ir_stream_running_
Definition
openni_device_oni.h:116
openni_wrapper::DeviceONI::NewONIImageDataAvailable
static void __stdcall NewONIImageDataAvailable(xn::ProductionNode &node, void *cookie) noexcept
openni_wrapper::DeviceONI::Ptr
pcl::shared_ptr< DeviceONI > Ptr
Definition
openni_device_oni.h:65
openni_wrapper::DeviceONI::hasDataLeft
bool hasDataLeft()
Check if there is any data left in the ONI file to process.
Definition
openni_device_oni.h:96
openni_wrapper::DeviceONI::DeviceONI
DeviceONI(xn::Context &context, const std::string &file_name, bool repeat=false, bool streaming=true)
openni_wrapper::DeviceONI::image_stream_running_
bool image_stream_running_
Definition
openni_device_oni.h:115
openni_wrapper::DeviceONI::streaming_
bool streaming_
Definition
openni_device_oni.h:113
openni_wrapper::DeviceONI::startImageStream
void startImageStream() override
starts the image stream.
openni_wrapper::DeviceONI::isDepthStreamRunning
bool isDepthStreamRunning() const noexcept override
openni_wrapper::DeviceONI::player_thread_
std::thread player_thread_
Definition
openni_device_oni.h:110
openni_wrapper::DeviceONI::isImageStreamRunning
bool isImageStreamRunning() const noexcept override
openni_wrapper::DeviceONI::player_condition_
std::condition_variable player_condition_
Definition
openni_device_oni.h:112
openni_wrapper::DeviceONI::OpenNIDriver
friend class OpenNIDriver
Definition
openni_device_oni.h:62
openni_wrapper::DeviceONI::PlayerThreadFunction
void PlayerThreadFunction()
openni_wrapper::DeviceONI::isStreaming
bool isStreaming() const noexcept
openni_wrapper::DeviceONI::NewONIDepthDataAvailable
static void __stdcall NewONIDepthDataAvailable(xn::ProductionNode &node, void *cookie) noexcept
openni_wrapper::DeviceONI::stopImageStream
void stopImageStream() override
stops the image stream.
openni_wrapper::Image::Ptr
pcl::shared_ptr< Image > Ptr
Definition
openni_image.h:61
memory.h
Defines functions, macros and traits for allocating and using memory.
openni_wrapper
Definition
openni_depth_image.h:52