gpt4 book ai didi

android - CameraSource Google Mobile 视觉 API 中的 setRequestedFps 是什么意思

转载 作者:太空宇宙 更新时间:2023-11-03 12:29:18 25 4
gpt4 key购买 nike

移动视觉API中的setRequestedFps是什么意思。

相机代码:

mCameraSource =
new CameraSource.Builder(getApplicationContext(), textRecognizer)
.setFacing(CameraSource.CAMERA_FACING_BACK)
.setRequestedPreviewSize(1280, 1024)
.setRequestedFps(40.0f)

.setFlashMode(useFlash ? Camera.Parameters.FLASH_MODE_TORCH : null)
.setFocusMode(autoFocus ? Camera.Parameters.FOCUS_MODE_CONTINUOUS_PICTURE : null)
.build();

正在初始化处理对象。

ocrDetectorProcessor  =new OcrDetectorProcessor(this,mGraphicOverlay,documentType);
TextRecognizer textRecognizer = new TextRecognizer.Builder(context).build();
textRecognizer.setProcessor(ocrDetectorProcessor);

处理器类

class OcrDetectorProcessor{
public OcrDetectorProcessor(OcrCaptureActivity ocrCaptureActivity,GraphicOverlay<OcrGraphic> mGraphicOverlay,String documentType) {

}
@Override
public void receiveDetections(Detector.Detections<TextBlock> detections) {

}}

我的问题:如果我设置 setRequestedFps(40.0f) 那么 receiveDetections 将在一秒钟内调用 40 次

最佳答案

是的,如果设备支持。如果不是,它将更改为可用的最佳 FPS。

Google APIs for Android 所述

Sets the requested frame rate in frames per second. If the exact requested value is not available, the best matching available value is selected. Default: 30.

关于android - CameraSource Google Mobile 视觉 API 中的 setRequestedFps 是什么意思,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38458180/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com