patj...@gmail.com schrieb am Dienstag, 16. Mai 2023 um 21:08:05 UTC+2:

I've created a .bat file to run hugin. This is a windows command-tool file. 
To run this, hugin needs to be on the environmental path, and imagemagick 
should be as well

pano_modify --canvas=AUTO --crop=AUTO -o --center --straighten %1.pto 


This command is not doing what you think it does. The -o switch requires a 
filename - so the result of this command is written to a file --center and 
the --center command is not done.
Look at the output of the commands. You should be see something like:
Written output to --center

(Do not simply copy and paste. Try to understand to commands and look also 
at the output, it can contain a lot of additional information. Otherwise 
there are more high level functions available - see below.)

rem convert z%1.tif -resize 7000x z%1r.jpg

Not sure what you doing here. Instead of creating a pano and then resize it 
adjust the pano_modify command to get the final size in one go.
 

In my use, I set up a .bat file to call the bat file:

convert file0436.jpg afile01.jpg
convert file0439.jpg afile02.jpg
 ..... convert more files 

Why this? Converting a jpg file will require a new re-compression and this 
will degrade the image quality.
So rename the file only or copy it.
Or more easily Hugin can also handle non consecutive numbered image. So 
there is no need to rename the files.

But a final remark: I don't understand what you try to achieve. 
PTBatcherGUI has already a lot of functions for automatic running assistant 
and stitching.
Activate option stitch after assistant in PTBatcherGUI and then
pto_gen -o %1.pto %2
ptbatchergui --assistant %1.pto

Even if you don't want to use PTBatcherGUI the whole script can be 
simplified to a three liner
pto_gen  -o %1.pto %2
hugin_executor --assistant %1.pto
hugin_executor --stitching --prefix=z%1 %1.pto


-- 
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 hugin-ptx+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/hugin-ptx/75bbc455-35ce-4e22-a768-bd8606661f3bn%40googlegroups.com.

Reply via email to