Image Combining - tone-mapping MIFF doubt
Posted: 2011-01-25T03:55:54-07:00
I am using Windows and Imagemagick 6.6.7 manually compiled with HDRI ....
My problem is this :
I am trying to "combine" 3 images (keeping the maximum quality for each hence the MIFF format idea) in single script ...
Resuming the idea :
From a single RAW photo it is possible to achieve greater dynamic range if processed into 3 distinct "EV" exposures...
Something like -1EV, 0EV, +1EV combined ...
My idea would be using the HDRI + MIFF options in order not loose any info ...
My problem is that the "usage example" is very simple regarding the MIFF usage ...
I do have a DOS batch script in order to create each exposure and then combine them into the final image ...
But my idea ide would be to pipeline them in order to avoid the 3 extra files ...
for what I have read with MIFF example each time the MIFF: is called it appends an image to the previous one ... (right?)
But how can I access for instance the 3rd image ?
Or am I thinking wrong in this case ?
I have something like :
FOR %%G IN (1,3, 17,23 ) DO convert %1 -sigmoidal-contrast %%G,0%% -auto-level miff:ab_%%G.miff
convert ab_1.miff ab_3.miff ab_17.miff ab_23.miff -evaluate-sequence mean Finalimage.jpg
Is there any way to avoid creating the 4 "temp MIFF" images ?
Or there any way to give each image a weight ?
where can I find more info regarding the "convert -list evaluate " command option ...
My problem is this :
I am trying to "combine" 3 images (keeping the maximum quality for each hence the MIFF format idea) in single script ...
Resuming the idea :
From a single RAW photo it is possible to achieve greater dynamic range if processed into 3 distinct "EV" exposures...
Something like -1EV, 0EV, +1EV combined ...
My idea would be using the HDRI + MIFF options in order not loose any info ...
My problem is that the "usage example" is very simple regarding the MIFF usage ...
I do have a DOS batch script in order to create each exposure and then combine them into the final image ...
But my idea ide would be to pipeline them in order to avoid the 3 extra files ...
for what I have read with MIFF example each time the MIFF: is called it appends an image to the previous one ... (right?)
But how can I access for instance the 3rd image ?
Or am I thinking wrong in this case ?
I have something like :
FOR %%G IN (1,3, 17,23 ) DO convert %1 -sigmoidal-contrast %%G,0%% -auto-level miff:ab_%%G.miff
convert ab_1.miff ab_3.miff ab_17.miff ab_23.miff -evaluate-sequence mean Finalimage.jpg
Is there any way to avoid creating the 4 "temp MIFF" images ?
Or there any way to give each image a weight ?
where can I find more info regarding the "convert -list evaluate " command option ...