DepthFrame.java
Go to the documentation of this file.
1 package com.intel.realsense.librealsense;
2 
3 public class DepthFrame extends VideoFrame {
4  protected DepthFrame(long handle) {
5  super(handle);
6  mOwner = false;
7  }
8 
9  public float getDistance(int x, int y) {
10  return nGetDistance(mHandle, x, y);
11  }
12 
13  public float getUnits() {
14  return nGetUnits(mHandle);
15  }
16 
17  private static native float nGetDistance(long handle, int x, int y);
18  private static native float nGetUnits(long handle);
19 }
GLint y
uvc_xu_option< int > super
Definition: l500-options.h:32
static native float nGetDistance(long handle, int x, int y)
GLuint64 GLenum void * handle
Definition: glext.h:7785
static native float nGetUnits(long handle)
GLdouble x


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