Home
last modified time | relevance | path

Searched refs:cameraMgr (Results 1 – 3 of 3) sorted by relevance

/ohos5.0/docs/zh-cn/third-party-cases/
H A Dtake-picture-and-preview.md89 …initCamera方法通过创建相机管理器实例cameraMgr来创建画面输出对象previewOutput。cameraMgr再通过创建CaptureSession实例来配置会话,完成相机功能的…
131 this.cameraMgr = camera.getCameraManager(globalThis.cameraContext);//获取相机管理器实例
133 this.camerasArray = this.cameraMgr.getSupportedCameras();//获取支持指定的相机设备对象
138 this.cameraInput = this.cameraMgr.createCameraInput(mCamera);
140 this.capability = this.cameraMgr.getSupportedOutputCapability(mCamera);//查询相机设备支持的输出能力
143 this.previewOutput = this.cameraMgr.createPreviewOutput(
150 this.photoOutPut = this.cameraMgr.createPhotoOutput(
154 this.capSession = this.cameraMgr.createCaptureSession();//创建CaptureSession实例
/ohos5.0/foundation/multimedia/camera_framework/frameworks/native/camera/test/moduletest/src/
H A Dcamera_framework_moduletest.cpp4185 sptr<CameraManager> cameraMgr = CameraManager::GetInstance(); variable
4186 ASSERT_NE(cameraMgr, nullptr);
4188 …sptr<CameraOutputCapability> capability = cameraMgr->GetSupportedOutputCapability(cameras_[0], pho…
4191 sptr<CaptureSession> captureSession = cameraMgr->CreateCaptureSession(photoMode);
4272 sptr<CameraManager> cameraMgr = CameraManager::GetInstance(); variable
4273 ASSERT_NE(cameraMgr, nullptr);
4278 sptr<CaptureSession> captureSession = cameraMgr->CreateCaptureSession(portraitMode);
4332 sptr<CameraManager> cameraMgr = CameraManager::GetInstance(); variable
4333 ASSERT_NE(cameraMgr, nullptr);
4335 …sptr<CameraOutputCapability> capability = cameraMgr->GetSupportedOutputCapability(cameras_[0], vid…
[all …]
/ohos5.0/foundation/graphic/graphic_3d/lume/Lume_3D/src/ecs/systems/
H A Drender_system.cpp399 …const ICameraComponentManager& cameraMgr, const RenderCamera& baseCamera, const Entity& prePassEnt… in CreateColorPrePassRenderCamera() argument
415 if (const auto prePassCameraHandle = cameraMgr.Read(prePassEntity); prePassCameraHandle) { in CreateColorPrePassRenderCamera()