Skip to content

Commit

Permalink
Rolling shutter M2P corection. Solve OpenDroneMap#1537
Browse files Browse the repository at this point in the history
  • Loading branch information
kikislater authored Sep 28, 2022
1 parent be5c710 commit 3c00ffb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion opendm/rollingshutter.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
'dji fc3170': 27, # DJI Mavic Air 2
'dji fc3411': 32, # DJI Mavic Air 2S

'hasselblad l1d-20c': lambda p: 47 if p.get_capture_megapixels() < 19 else 56, # DJI Mavic 2 Pro (at 16:10 => 16.8MP 47ms, at 4:3 => 19.9MP 56ms)
'hasselblad l1d-20c': lambda p: 47 if p.get_capture_megapixels() < 17 else 56, # DJI Mavic 2 Pro (at 16:10 => 16.8MP 47ms, at 3:2 => 19.9MP 56ms. 4:3 has 17.7MP with same image height as 3:2 which can be concluded as same sensor readout)

'dji fc3582': lambda p: 26 if p.get_capture_megapixels() < 48 else 60, # DJI Mini 3 pro (at 48MP readout is 60ms, at 12MP it's 26ms)

Expand Down

0 comments on commit 3c00ffb

Please sign in to comment.