StreamType.java
Go to the documentation of this file.
1 package com.intel.realsense.librealsense;
2 
3 public enum StreamType {
4  ANY(0),
5  DEPTH(1),
6  COLOR(2),
7  INFRARED(3),
8  FISHEYE(4),
9  GYRO(5),
10  ACCEL(6),
11  GPIO(7),
12  POSE(8),
14 
15  private final int mValue;
16 
17  private StreamType(int value) { mValue = value; }
18  public int value() { return mValue; }
19 }
GLfloat value


librealsense2
Author(s): Sergey Dorodnicov , Doron Hirshberg , Mark Horn , Reagan Lopez , Itay Carpis
autogenerated on Mon May 3 2021 02:50:11