Hi Bruno,
Thanks for the quick reply. Let's go through your comments:
On Nov 27, 10:59 pm, Bruno Postle <
br...@postle.net> wrote:
> On Tue 27-Nov-2007 at 08:45 -0800, Pedro Venda wrote:
> >When clicking "3. Create Panorama..." on the "Assistant" tab or "Save
> >project and Stitch" on the "Stitcher" tab, an error pops up saying
> >"Error while executing process" and the stitching process does not
> >start.
Here is a screen shot of the error:
http://img527.imageshack.us/img527/7512/huginerrorsd4.png
> I haven't built hugin for a week (2007-11-19), but all this code was
> updated since then, so it is possible this is a bug in the current
> trunk.
Possibly, but I doubt it. I believe the problem lies somewhere else on
some other binary...
But no proof of this yet.
> >I am using the svn trunk version, last updated today (2007-11-27 at
> >about 13h30). Version 0.7b4 stitches panoramas as usual.
> >I figure that hugin may not be finding a binary whether external or
> >compiled with hugin. I can also replicate the problem using
> >hugin_stitch_project directly.
>
> Do you get any error messages when running hugin_stitch_project?
Running hugin_stitch_project works just as if I clicked the "Save
project and stitch" button. I believe this is the intended behaviour.
hugin_stitch_project opens a dialog box asking for the project file.
After that, it replies with the same error as I get from the hugin
gui.
> You can also stitch the project directly on the command-line with
> 'make'. Current SVN hugin produces a makefile whenever you save,
> just run it like so:
>
> make -f
foo1234_foo5678.pto.mk
>
> This will stitch and blend everything and should report any errors
> during the process.
Here's what comes out:
-----------------------------------------------------------------
$ make -f
20070210T114428-20070210T114451.pto.mk
nona -r ldr -m TIFF_m -o 20070210T114428-20070210T114451 -i 0 /home/
pedro/Pictures/pano-01/./20070210T114428-20070210T114451.pto
nona: stitch a panorama image
It uses the transform function from PanoTools, the stitching itself
is quite simple, no seam feathering is done.
all interpolators of panotools are supported
The following output formats (n option of panotools p script line)
are supported:
JPG, TIFF, PNG : Single image formats without feathered blending:
TIFF_m : multiple tiff files
TIFF_multilayer : Multilayer tiff files, readable by The Gimp 2.0
Usage: nona [options] -o output project_file (image files)
Options:
-c create coordinate images (only TIFF_m output)
make: *** [20070210T114428-20070210T1144510000.tif] Error 1
-----------------------------------------------------------------
It really seems that nona is misbehaving...
What I found is that nona does not like the parameters '-m TIFF_m' or
'-r ldr' or even '-i 0'.
Not being a C++ coder, I found in hugin1/tools/nona.cpp, the getopt
string "cho:t:" (line 73) meaning that nona does not accept any of the
i, r or m switches that come from the makefile written by hugin. So
there is a clear mismatch here.
Is nona not being updated in the code repository?
Cheers,
Pedro Venda.