Hi Rafal,
Thank you for your quick response! Sorry that I did not describe the plots very well. The plots show the inverse CDF of contrast amplitude and loss for the entire image (I set loss to negative, the sort all the data). So for example, reading from the left side of the plot 20% of the "video" image has contrast loss >= 0.6, and reading from the right side of the plot 20% of ward97 has contrast amplification of >=0.55.
This difference is reproducible in the compare_hdr_vs_tonemapped.m example. After running compare_hdr_vs_tonemapped.m to examine the mai11 result:
20a21
> ms.base_ppd = 2^ceil(log2(ppd));
24a26
> ms.band_freqs = 2.^-(0:(height)) * ms.base_ppd / 2;
26,29c28,31
< % Frequency peaks of each band
< ms.band_freqs = [1 0.3228*2.^-(0:(height-1))] * ms.ppd/2;
<
< ms.P = laplacian_pyramid( I, height+1 );
---
> % Resample to fix the frequency of the bands
> I_res = imresize( I, ms.base_ppd/ms.ppd, 'bilinear' );
>
> ms.P = laplacian_pyramid( I_res, height+1 );
36a39
> I = imresize( I, ms.img_sz );