GitHub is where people build software. More than 150 million people use GitHub to discover, fork, and contribute to over 420 million projects.
1. Common API for Android Camera. Has been encapsulated Camera1 Camera2, UvcCamera. 2. Encapsulate preview View, based on CameraApi. TextureView preview, GLSurfaceView preview, binocular preview can be implemented, and the preview interface can flexibly configure parameters such as image, Scale, ...
dependencies{implementation'com.github.Liuguihong:AndroidUVCCamera:1.0.0'} 2.创建UVCCameraProxy对象 UVCCameraProxymUVCCamera=newUVCCameraProxy(this); 3.添加配置(可选) mUVCCamera.getConfig().isDebug(true)// 是否调试.setPicturePath(PicturePath.APPCACHE)// 图片保存路径,保存在app缓存还是sd卡.setDi...
dependencies { implementation 'com.github.Liuguihong:AndroidUVCCamera:1.0.0' } 2.创建UVCCameraProxy对象 UVCCameraProxy mUVCCamera = new UVCCameraProxy(this); 3.添加配置(可选) mUVCCamera.getConfig() .isDebug(true) // 是否调试 .setPicturePath(PicturePath.APPCACHE) // 图片保存路径,保存在app...
a simple example using opencv in UVCcamera. Contribute to o0olele/UVCcamera-Opencv development by creating an account on GitHub.
dependencies{implementation'com.github.Liuguihong:AndroidUVCCamera:1.0.0'} 2.创建UVCCameraProxy对象 3.添加配置(可选) mUVCCamera.getConfig().isDebug(true)// 是否调试.setPicturePath(PicturePath.APPCACHE)// 图片保存路径,保存在app缓存还是sd卡.setDirName("uvccamera")// 图片保存目录名称.setProduct...
UVC camera QT demo based on V4L2. Contribute to ConvergenceSoftware/v4l2_camera_demo development by creating an account on GitHub.
library and sample to access to UVC web camera on non-rooted Android device - UVCCamera/libuvccamera/src/main/java/com/serenegiant/usb/UVCCamera.java at master · saki4510t/UVCCamera
The most important is that you should override getRootView()/getCameraViewContainer()/ getCameraView() at least which means fragment's root view 、texture or surface view and it's container。Of course, the same as CameraActivity and now you can see the uvc camera preview。
https://github.com/saki4510t/UVCCamera UVCCamera 听名字就知道使用UVC( USB VEDIO CLASS) 协议的通用类库。linux原生支持,基本支持市面上所有免区USB摄像头。 此开源库包含JNI及android封装的类库。是目前最好用的安卓USB摄像头类库。 UVCCamera来控制、管理与外接设备的连接, ...