Esempio n. 1
0
void DeviceONI::stopDepthStream () throw (OpenNIException)
{
  if (hasDepthStream() && depth_stream_running_)
    depth_stream_running_ = false;
}
Esempio n. 2
0
void DeviceONI::startDepthStream () throw (OpenNIException)
{
  if (hasDepthStream() && !depth_stream_running_)
    depth_stream_running_ = true;
}
Esempio n. 3
0
void DeviceONI::stopDepthStream ()
{
  if (hasDepthStream() && depth_stream_running_)
    depth_stream_running_ = false;
}
Esempio n. 4
0
void DeviceONI::startDepthStream ()
{
  if (hasDepthStream() && !depth_stream_running_)
    depth_stream_running_ = true;
}
Esempio n. 5
0
void
openni_wrapper::DeviceONI::stopDepthStream ()
{
    if (hasDepthStream() && depth_stream_running_)
        depth_stream_running_ = false;
}
Esempio n. 6
0
void
openni_wrapper::DeviceONI::startDepthStream ()
{
    if (hasDepthStream() && !depth_stream_running_)
        depth_stream_running_ = true;
}