コード例 #1
0
void DeviceONI::stopIRStream () throw (OpenNIException)
{
  if (hasIRStream() && ir_stream_running_)
    ir_stream_running_ = false;
}
コード例 #2
0
void DeviceONI::startIRStream () throw (OpenNIException)
{
  if (hasIRStream() && !ir_stream_running_)
    ir_stream_running_ = true;
}
コード例 #3
0
ファイル: openni_device_oni.cpp プロジェクト: Bastl34/PCL
void DeviceONI::stopIRStream ()
{
  if (hasIRStream() && ir_stream_running_)
    ir_stream_running_ = false;
}
コード例 #4
0
ファイル: openni_device_oni.cpp プロジェクト: Bastl34/PCL
void DeviceONI::startIRStream ()
{
  if (hasIRStream() && !ir_stream_running_)
    ir_stream_running_ = true;
}
コード例 #5
0
ファイル: openni_device_oni.cpp プロジェクト: cgrad/pcl
void
openni_wrapper::DeviceONI::stopIRStream ()
{
    if (hasIRStream() && ir_stream_running_)
        ir_stream_running_ = false;
}
コード例 #6
0
ファイル: openni_device_oni.cpp プロジェクト: cgrad/pcl
void
openni_wrapper::DeviceONI::startIRStream ()
{
    if (hasIRStream() && !ir_stream_running_)
        ir_stream_running_ = true;
}