本文整理汇总了Java中org.openkinect.freenect.DepthFormat类的典型用法代码示例。如果您正苦于以下问题:Java DepthFormat类的具体用法?Java DepthFormat怎么用?Java DepthFormat使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
DepthFormat类属于org.openkinect.freenect包,在下文中一共展示了DepthFormat类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: DepthHandlerImpl
import org.openkinect.freenect.DepthFormat; //导入依赖的package包/类
public DepthHandlerImpl(int width, int height, DepthFormat format) {
lock = new Object();
this.format = format;
this.width = width;
this.height = height;
frameSize = width * height;
depthFrame = new int[frameSize];
}
示例2: main
import org.openkinect.freenect.DepthFormat; //导入依赖的package包/类
public static void main(String[] args) {
DepthHandlerImpl depthHandler = new DepthHandlerImpl(640, 480, DepthFormat.D11BIT);
VideoHandlerImpl videoHandler = new VideoHandlerImpl(640, 480, VideoFormat.IR_10BIT);
KinectManager manager = new KinectManager();
manager.initializeContext();
manager.initializeDevice(0);
manager.defineDepth(depthHandler);
manager.defineVideo(videoHandler);
displayDepth(depthHandler, manager);
displayVideo(videoHandler, manager);
}
示例3: main
import org.openkinect.freenect.DepthFormat; //导入依赖的package包/类
public static void main(String[] args) {
new OpenCVManager().initializeOpenCV();
DepthHandlerImpl depthHandler = new DepthHandlerImpl(640, 480, DepthFormat.D11BIT);
OpenCVFaceDetectionHandler videoHandler = new OpenCVFaceDetectionHandler("/home/edaubert/bin/opencv/share/OpenCV/lbpcascades/lbpcascade_frontalface.xml", 640, 480);
KinectManager manager = new KinectManager();
manager.initializeContext();
manager.initializeDevice(0);
manager.defineDepth(depthHandler);
manager.defineVideo(videoHandler);
displayDepth(depthHandler, manager);
displayVideo(videoHandler, manager);
}
示例4: getFormat
import org.openkinect.freenect.DepthFormat; //导入依赖的package包/类
public DepthFormat getFormat() {
return format;
}
示例5: AbstractOpenCVDepthHandler
import org.openkinect.freenect.DepthFormat; //导入依赖的package包/类
public AbstractOpenCVDepthHandler(int width, int height, DepthFormat format) {
super(width, height, format);
}