StreamFormat.java
Go to the documentation of this file.
1 package com.intel.realsense.librealsense;
2 
3 public enum StreamFormat {
4  ANY(0),
5  Z16 (1),
7  XYZ32F(3),
8  YUYV(4),
9  RGB8(5),
10  BGR8(6),
11  RGBA8(7),
12  BGRA8(8),
13  Y8(9),
14  Y16(10),
15  RAW10(11),
16  RAW16(12),
17  RAW8(13),
18  UYVY(14),
21  GPIO_RAW(17),
22  POSE(18),
24  Y10BPACK(20),
25  DISTANCE(21),
26  MJPEG(22),
27  Y8I(23),
28  Y12I(24),
29  INZI(25),
30  INVI(26),
31  W10(27),
32  Z16H(28),
33  FG(29);
34  private final int mValue;
35 
36  private StreamFormat(int value) { mValue = value; }
37  public int value() { return mValue; }
38 }
GLfloat value


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