Hi,
I was trying to get the similar output to dcraw 9.26-x64 from LibRaw 1.7beta1-x64, but had no luck. Is it possible to get the exact 1:1 match to dcraw? It seems LibRaw is performing some sort of auto adjustment beyond "no_auto_bright", I tried "no_auto_scale" from my code too but it didn't help.
dcraw command:
"dcraw.exe" -v -w +M -n 10 -H 0 -o 1 -W -g 1.0 1.0 -q 3 -6 -4 -T "image.cr2"
dcraw_emu command:
"dcraw_emu.exe" -v -w +M -n 10 -H 0 -o 1 -W -g 1.0 1.0 -q 3 -6 -4 -T "image.cr2"
I uploaded a sample here:
https://www.dropbox.com/sh/h1sh66mfikzx4ei/AAAfNEFsHpEkWw5zwApXZN2ia?dl=0
Thank you!
Yes, LibRaw performs
To turn it off, use '-c 0' switch of dcraw_emu (or set imgdata.params.adjust_maximum_thr to 0.0).
Simple test:
-- Alex Tutubalin @LibRaw LLC
P.S. Please note -h key (half
P.S. Please note -h key (half interpolation), because AHD interpolation is slightly different in LibRaw and dcraw.
For binary comparison, you may use -q 1 (VNG interpolation, same in LibRaw and dcraw).
-- Alex Tutubalin @LibRaw LLC
Solved, now I'm able to get
Solved, now I'm able to get the exact match.
Thank you!