Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
wrappers
android
librealsense
src
main
java
com
intel
realsense
librealsense
VideoStreamProfile.java
Go to the documentation of this file.
1
package
com.intel.realsense.librealsense;
2
3
public
class
VideoStreamProfile
extends
StreamProfile
{
4
ResolutionParams
mResolutionParams;
5
private
Intrinsic
mIntrinsic
;
6
7
private
class
ResolutionParams
{
8
public
int
width
;
9
public
int
height
;
10
}
11
12
VideoStreamProfile
(
long
handle
) {
13
super
(handle);
14
mOwner =
false
;
15
mResolutionParams =
new
ResolutionParams
();
16
nGetResolution
(mHandle, mResolutionParams);
17
mIntrinsic = null;
18
}
19
20
public
Intrinsic
getIntrinsic
() throws Exception {
21
if
(mIntrinsic == null){
22
mIntrinsic =
new
Intrinsic
();
23
nGetIntrinsic
(mHandle, mIntrinsic);
24
mIntrinsic.
SetModel
();
25
}
26
return
mIntrinsic
;
27
}
28
29
public
int
getWidth
() {
30
return
mResolutionParams.
width
;
31
}
32
33
public
int
getHeight
() {
34
return
mResolutionParams.
height
;
35
}
36
37
private
static
native
void
nGetResolution
(
long
handle
,
ResolutionParams
params
);
38
private
static
native
void
nGetIntrinsic
(
long
handle,
Intrinsic
intrinsic);
39
}
librealsense::super
uvc_xu_option< int > super
Definition:
l500-options.h:32
handle
GLuint64 GLenum void * handle
Definition:
glext.h:7785
com.intel.realsense.librealsense.VideoStreamProfile.getWidth
int getWidth()
Definition:
VideoStreamProfile.java:29
com.intel.realsense.librealsense.Intrinsic
Definition:
Intrinsic.java:3
com.intel.realsense.librealsense.VideoStreamProfile
Definition:
VideoStreamProfile.java:3
com.intel.realsense.librealsense.VideoStreamProfile.ResolutionParams.width
int width
Definition:
VideoStreamProfile.java:8
com.intel.realsense.librealsense.VideoStreamProfile.ResolutionParams.height
int height
Definition:
VideoStreamProfile.java:9
com.intel.realsense.librealsense.VideoStreamProfile.mIntrinsic
Intrinsic mIntrinsic
Definition:
VideoStreamProfile.java:5
com.intel.realsense.librealsense.VideoStreamProfile.nGetIntrinsic
static native void nGetIntrinsic(long handle, Intrinsic intrinsic)
com.intel.realsense.librealsense.VideoStreamProfile.getIntrinsic
Intrinsic getIntrinsic()
Definition:
VideoStreamProfile.java:20
com.intel.realsense.librealsense.VideoStreamProfile.getHeight
int getHeight()
Definition:
VideoStreamProfile.java:33
params
GLenum const GLfloat * params
Definition:
glad/glad/glad.h:1404
com.intel.realsense.librealsense.VideoStreamProfile.nGetResolution
static native void nGetResolution(long handle, ResolutionParams params)
com.intel.realsense.librealsense.Intrinsic.SetModel
void SetModel()
Definition:
Intrinsic.java:40
com.intel.realsense.librealsense.StreamProfile
Definition:
StreamProfile.java:4
com.intel.realsense.librealsense.VideoStreamProfile.ResolutionParams
Definition:
VideoStreamProfile.java:7
librealsense2
Author(s): Sergey Dorodnicov
, Doron Hirshberg
, Mark Horn
, Reagan Lopez
, Itay Carpis
autogenerated on Mon May 3 2021 02:50:14