void DeviceONI::stopIRStream () throw (OpenNIException)
{
  if (hasIRStream() && ir_stream_running_)
    ir_stream_running_ = false;
}
void DeviceONI::startIRStream () throw (OpenNIException)
{
  if (hasIRStream() && !ir_stream_running_)
    ir_stream_running_ = true;
}
Beispiel #3
0
void DeviceONI::stopIRStream ()
{
  if (hasIRStream() && ir_stream_running_)
    ir_stream_running_ = false;
}
Beispiel #4
0
void DeviceONI::startIRStream ()
{
  if (hasIRStream() && !ir_stream_running_)
    ir_stream_running_ = true;
}
Beispiel #5
0
void
openni_wrapper::DeviceONI::stopIRStream ()
{
    if (hasIRStream() && ir_stream_running_)
        ir_stream_running_ = false;
}
Beispiel #6
0
void
openni_wrapper::DeviceONI::startIRStream ()
{
    if (hasIRStream() && !ir_stream_running_)
        ir_stream_running_ = true;
}