MSX Level Mavic 2 Enterprise Dual
1502 0 2020-8-29
Uploading and Loding Picture ...(0/1)
o(^-^)o
hdrpano
lvl.4
Flight distance : 598458 ft
  • >>>
Switzerland
Offline

Mavic 2 Enterprise Dual

With the possibility to set the MSX level we can significatively increase the image quality. The Mavic 2 Enterprise Dual thermal camera has an exceptionally low resolution compared to the XT2 640. But the MSX level who combines the CMOS camera resolution gives us much better results. But you have to align perfectly both cameras.

MSX standard

004.jpg

MSX set to 25%

MSX 2

MSX 2


You can check it for free on the hdrpano rescue iOS APP

    //MARK: Set MSX Level
    func setMSXLevel(msxLevel: UInt8 = 50) {
        // 0-100
        let camera = self.fetchCameraThermal()
        if camera != nil {
            camera?.setMSXLevel(msxLevel, withCompletion:  { (error: Error?) in
                if error != nil {
                    NSLog("Error set MSX level")
                }
            })
        }
    }
   
    //MARK: Set Dual Feed Vertical
    func setDualFeedVerticalAlignmentOffset(dualOffset: Int8 = 0) {
        // +/- 40 Mavic Dual
        let camera = self.fetchCameraThermal()
        if camera != nil {
            camera?.setDualFeedVerticalAlignmentOffset(dualOffset, withCompletion:  { (error: Error?) in
                if error != nil {
                    NSLog("Error set dual offset")
                } else {
                    NSLog("Set dual offset vertical \(dualOffset)")
                }
            })
        }
    }
   
    //MARK: Set Dual Feed Horizontal
    func setDualFeedHorizontalAlignmentOffset(dualOffset: Int8 = 0) {
        // +/- 40 Mavic Dual
        let camera = self.fetchCameraThermal()
        if camera != nil {
            camera?.setDualFeedHorizontalAlignmentOffset(dualOffset, withCompletion:  { (error: Error?) in
                if error != nil {
                    NSLog("Error set dual offset")
                } else {
                    NSLog("Set dual offset horizontal \(dualOffset)")
                }
            })
        }
    }



2020-8-29
Use props
Advanced
You need to log in before you can reply Login | Register now

Credit Rules