Ejemplo n.º 1
0
void DeviceONI::stopImageStream () throw (OpenNIException)
{
  if (hasImageStream() && image_stream_running_)
    image_stream_running_ = false;
}
Ejemplo n.º 2
0
void DeviceONI::startImageStream () throw (OpenNIException)
{
  if (hasImageStream() && !image_stream_running_)
    image_stream_running_ = true;
}
Ejemplo n.º 3
0
void DeviceONI::stopImageStream ()
{
  if (hasImageStream() && image_stream_running_)
    image_stream_running_ = false;
}
Ejemplo n.º 4
0
void DeviceONI::startImageStream ()
{
  if (hasImageStream() && !image_stream_running_)
    image_stream_running_ = true;
}
Ejemplo n.º 5
0
void
openni_wrapper::DeviceONI::stopImageStream ()
{
    if (hasImageStream() && image_stream_running_)
        image_stream_running_ = false;
}
Ejemplo n.º 6
0
void
openni_wrapper::DeviceONI::startImageStream ()
{
    if (hasImageStream() && !image_stream_running_)
        image_stream_running_ = true;
}