Greg 'groggy' Lehey <[email protected]> writes: > On Tuesday, 10 July 2018 at 8:10:08 -0700, Albert Szostkiewicz wrote: >> It streamlines simple work that has to be done without requirement >> of 3rd party software in the process. > > It still requires mouse pushing. If you're looking for automatic raw > conversions, you can do that too with UFRaw, which has a batch mode. > Read in your images, run ufraw-batch on them to produce TIFF output > files, and you're ready to go.
I used to use this for conversion: ---------------------------------------------- #!/bin/sh # see <http://hugin.sourceforge.net/docs/manual/16bit_workflow_with_hugin.html> # see <http://hugin.sourceforge.net/docs/manual/HDR_workflow_with_hugin.html> for i in *.cr2; do BASENAME=${i%.cr2} dcraw -v -w -4 ${BASENAME}.cr2 convert -gamma 2.2 ${BASENAME}.ppm ${BASENAME}.tif && rm ${BASENAME}.ppm exiftool -tagsfromfile ${BASENAME}.cr2 -overwrite_original_in_place -exif:all ${BASENAME}.tif done ---------------------------------------------- Best regards, Andreas -- Andreas Hirczy <[email protected]> https://itp.tugraz.at/~ahi/ Graz University of Technology phone: +43/316/873- 8190 Institute of Theoretical and Computational Physics fax: +43/316/873-10 8190 Petersgasse 16, A-8010 Graz mobile: +43/664/859 23 57 -- A list of frequently asked questions is available at: http://wiki.panotools.org/Hugin_FAQ --- You received this message because you are subscribed to the Google Groups "hugin and other free panoramic software" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/hugin-ptx/8atvp6dweq.fsf%40itp.tugraz.at. For more options, visit https://groups.google.com/d/optout.
