5

複数の から点群を生成するアプリがありますARFrame。画像のキャプチャに使用されたカメラにはダイナミック ホワイト バランスがあり、キャプチャ セッションの途中で変更できるようです。

ARView、ARSession、または ARCamera を構成して、セッション中に強制的にホワイト バランスをロックするにはどうすればよいですか?

次のパラメータにアクセスできますが、ホワイト バランスに関連するものは何も表示されません。

var arView: ARView!
let session: ARSession = arView.session
var sampleFrame: ARFrame = session.currentFrame! 
let camera = sampleFrame.camera


func configureSessionAndRun() {

        arView.automaticallyConfigureSession = false
        let configuration = ARWorldTrackingConfiguration()
        
        configuration.sceneReconstruction = .meshWithClassification
        configuration.frameSemantics = .smoothedSceneDepth
        configuration.planeDetection = [.horizontal, .vertical]
        
        configuration.environmentTexturing = .automatic
        
        arView.session.run(configuration)
    }
4

1 に答える 1