[hugin-ptx] Re: (Temporarily?) no more MacOSX Hugin builds from me

2009-07-13 Thread phartz...@gmail.com

On Mon, Jul 13, 2009 at 7:46 PM, Andrew Kreps wrote:

> I'll step up to the plate.  I'm a recent Mac convert and I'm already
> building Hugin, Enblend, libpano and autopano-sift-c from CVS, so all
> I should need help with is the packaging.  Feel free to point me to
> the docs and I'll get started as soon as I can.

  You are the man!!

  Harry, will he be able to post builds to your page?

  Steve

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"hugin and other free panoramic software" group.
A list of frequently asked questions is available at: 
http://wiki.panotools.org/Hugin_FAQ
To post to this group, send email to hugin-ptx@googlegroups.com
To unsubscribe from this group, send email to 
hugin-ptx-unsubscr...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/hugin-ptx
-~--~~~~--~~--~--~---



[hugin-ptx] Re: (Temporarily?) no more MacOSX Hugin builds from me

2009-07-13 Thread Andrew Kreps

On Mon, Jul 13, 2009 at 12:08 PM, Harry van der Wolf wrote:
>
> Someone needs to step in to start building OSX bundles again. I will do
> everything I can to support the new builder(s), but (again): someone really
> needs to step in as bundle builder.


I'll step up to the plate.  I'm a recent Mac convert and I'm already
building Hugin, Enblend, libpano and autopano-sift-c from CVS, so all
I should need help with is the packaging.  Feel free to point me to
the docs and I'll get started as soon as I can.

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"hugin and other free panoramic software" group.
A list of frequently asked questions is available at: 
http://wiki.panotools.org/Hugin_FAQ
To post to this group, send email to hugin-ptx@googlegroups.com
To unsubscribe from this group, send email to 
hugin-ptx-unsubscr...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/hugin-ptx
-~--~~~~--~~--~--~---



[hugin-ptx] Re: Hugin for CA removal

2009-07-13 Thread Harry van der Wolf
Hi Hein,

I have never used fulla myself. These tools are built by Ippei over a year
ago. I was too lazy to rebuild them and was planning to do that after the
0.8 release (but that's not going to happen soon now).

They were build as static binaries, meaning that "everything" needed
(libraries) would be linked inside this one binary.
Obviously this is some bug in fulla that is now showing up. It has nothing
to do with a violation of a contract. It is simply an error message by the
program stumbling on some part of it.
Don worry about perfroming illegal activities or using illegal software: Not
at all.

Harry


2009/7/13 hein 

>
> Hi!
>
> Now I try to use tca_correct and fulla. Tca_correct runs as exspected,
> but when I insert the values in fulla, the result looks like this:
>
> ---
> Last login: Mon Jul 13 01:35:31 on ttyp1
> Welcome to Darwin!
> Maci:~ hein$ fulla -r 0.743:-0.0002676:0.0002671:0.781 -b
> -0.0001442:0.0005518:-0.0004608:0.427 _MG_0172.tif
> ContractViolation:
> Precondition violation!
> Unable to open file '_MG_0172.tif'.
> (/Users/ippei/dev/hugin/hugin-svn/mac-static/../src/foreign/vigra/
> vigra_impex/codecmanager.cxx:206)
>
> caught exception:
> Precondition violation!
> Unable to open file '_MG_0172.tif'.
> (/Users/ippei/dev/hugin/hugin-svn/mac-static/../src/foreign/vigra/
> vigra_impex/codecmanager.cxx:206)
>
> Maci:~ hein$
> --
>
> What is wrong? I did not mean to violate any contract...?  - Hein.
>
>
> >
>

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"hugin and other free panoramic software" group.
A list of frequently asked questions is available at: 
http://wiki.panotools.org/Hugin_FAQ
To post to this group, send email to hugin-ptx@googlegroups.com
To unsubscribe from this group, send email to 
hugin-ptx-unsubscr...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/hugin-ptx
-~--~~~~--~~--~--~---



[hugin-ptx] Re: Autopano-sift-c memory leaks

2009-07-13 Thread Andrew Chanler
I have only found 1 small memory leak so far... 16bytes * number of images I
believe.  Here is the fix.

Index: APSCpp/APSCpp.c
===
--- APSCpp/APSCpp.c (revision 4038)
+++ APSCpp/APSCpp.c (working copy)
@@ -415,6 +415,8 @@
kpp->imageFile = strdup(imgname);
kpp->xDim = pW;
kpp->yDim = pH;
+   // free preallocated array before over-writing pointer...
+   ArrayList_delete(kpp->array);
if( mode == 0 ){
// return the KeypointN list
kpp->array = globalNaturalKeypoints;

Hopefully I'll find something more fruitful than this...

Andrew

On Sun, Jul 12, 2009 at 2:13 PM, Tom Sharpless wrote:

>
> Hi, I'm starting a new thread on this as the old one has gotten too
> long.
>
> First some background.  Hugin's autopano-sift-C project builds 3
> programs:
>  generatekeys finds SIFT keypoints in one image and puts them in an
> XML file;
>  autopano reads those files and constructs control points linking
> pairs of images;
>  autopano-sift-c combines both function, plus several enhancements,
> in one program.
> The combined program shares a great deal of code with the separate
> ones.  The main differences are that it processes all the images; does
> not write keypoint data to, or read them from, XML files;  can convert
> images to stereographic projection before finding keypoints; and can
> read source image information  from a Hugin project file.  Although it
> ships as "autopano-sift-c", that name has always designated the two-
> program package as well, so to avoid confusion let us call the
> combined program by its name in the source code tree, "APSCpp".
>
> There have been several reports of out-of-memory errors while running
> "autopano-sift-c". It is possible that some might refer to
> generatekeys/autopano, however nowadays people mostly run APSCpp, as a
> Hugin plugin.  Moreover, the combined program would be more likely to
> fail due to problems in the image processing stages, because it
> processes a series of images while generatekeys handles only one.
> However it is not clear whether these failures happened at the image
> processing or the control point processing stage.  I am guessing it
> was the first stage, because that normally has a far higher peak
> memory demand than the second.
>
> I know of no case in which such a failure has been replicated by a
> second observer.  I have not yet been able to get APSCpp to exhaust
> memory on either Windows or Linux.   And when I run it under a leak-
> checking debugger (MSVC on Windows, valgrind on Linux) I see no sign
> of memory leaks during the image processing phase.  Both tools report
> a fairly large leak in the control point phase, which I will fix.
> That is a one-time thing and could not cause a crash during image
> processing.  But under some conditions (that I have not found) it
> might conceivably build up to the point of exhausting all memory.
>
> In short, the reported failures remain undiagnosed.  So I am appealing
> to all interested parties to try to create a repeatable case where
> APSCpp runs out of memory.
>
> Meanwhile I propose to do the following:
> -- fix the leaks that valgrind detects, in both the split and combined
> programs;
> -- enable APSCpp to read PTAssembler and PTGui project files;
> -- read image alignments from project files, in preparation for layout-
> guided CP placement;
> -- remove the alignment options, as they don't work and are not likely
> to be fixed;
>
> And start thinking about how to use a preliminary alignment to guide
> better placement of control points -- maybe even close that loop,
> refining the alignment and CP selection iteratively.  This would be in
> the spirit of autopano (which is apparently based on an early version
> of Janney's excellent aligner).  I fully agree with Bruno that the
> goal should just be to select better control points, not to determine
> optimum image placement.  But I think we all agree that a decent trial
> alignment would let us come up with better CPs (if only by throwing
> out the completely bogus ones that APSC now produces fairly often) and
> that some consistency checks on such a trial alignment would be
> useful.
>
> Best, Tom
>
>
>
>
>
>
> At some point it might be nice to give APSCpp options to dump
> keypoints to and read them from files (binary or plain text, not XML).
> >
>

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"hugin and other free panoramic software" group.
A list of frequently asked questions is available at: 
http://wiki.panotools.org/Hugin_FAQ
To post to this group, send email to hugin-ptx@googlegroups.com
To unsubscribe from this group, send email to 
hugin-ptx-unsubscr...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/hugin-ptx
-~--~~~~--~~--~--~---



[hugin-ptx] Re: Hugin for CA removal

2009-07-13 Thread hein

Hi!

Now I try to use tca_correct and fulla. Tca_correct runs as exspected,
but when I insert the values in fulla, the result looks like this:

---
Last login: Mon Jul 13 01:35:31 on ttyp1
Welcome to Darwin!
Maci:~ hein$ fulla -r 0.743:-0.0002676:0.0002671:0.781 -b
-0.0001442:0.0005518:-0.0004608:0.427 _MG_0172.tif
ContractViolation:
Precondition violation!
Unable to open file '_MG_0172.tif'.
(/Users/ippei/dev/hugin/hugin-svn/mac-static/../src/foreign/vigra/
vigra_impex/codecmanager.cxx:206)

caught exception:
Precondition violation!
Unable to open file '_MG_0172.tif'.
(/Users/ippei/dev/hugin/hugin-svn/mac-static/../src/foreign/vigra/
vigra_impex/codecmanager.cxx:206)

Maci:~ hein$
--

What is wrong? I did not mean to violate any contract...?  - Hein.


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"hugin and other free panoramic software" group.
A list of frequently asked questions is available at: 
http://wiki.panotools.org/Hugin_FAQ
To post to this group, send email to hugin-ptx@googlegroups.com
To unsubscribe from this group, send email to 
hugin-ptx-unsubscr...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/hugin-ptx
-~--~~~~--~~--~--~---



[hugin-ptx] Re: (Temporarily?) no more MacOSX Hugin builds from me

2009-07-13 Thread hein


My condolation, Harry, and good luck with a new Mac eventually! Hening.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"hugin and other free panoramic software" group.
A list of frequently asked questions is available at: 
http://wiki.panotools.org/Hugin_FAQ
To post to this group, send email to hugin-ptx@googlegroups.com
To unsubscribe from this group, send email to 
hugin-ptx-unsubscr...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/hugin-ptx
-~--~~~~--~~--~--~---



[hugin-ptx] Re: Hugin 0.8 rc5 fast preview and celeste

2009-07-13 Thread phartz...@gmail.com

On Mon, Jul 13, 2009 at 4:57 PM, Bruno Postle wrote:

> It seems that it isn't just 'first timers' who use the assistant, so
> it is probably appropriate that stuff like this should become an
> option in the preferences.

  I agree.  I am far from a first timer, yet I like using the
automated assistant.  It seems to work as well for most images as
would a manual placement of points, optimizations, etc., and a lot
faster.  But, an option for the default preview window would be
beneficial for any user.

  Steve

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"hugin and other free panoramic software" group.
A list of frequently asked questions is available at: 
http://wiki.panotools.org/Hugin_FAQ
To post to this group, send email to hugin-ptx@googlegroups.com
To unsubscribe from this group, send email to 
hugin-ptx-unsubscr...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/hugin-ptx
-~--~~~~--~~--~--~---



[hugin-ptx] Re: OpenGL slow because of reloading

2009-07-13 Thread Harry van der Wolf
Hi Habi,

The most prominent change is that the OSX RC5 bundle is 32/64bit. You run it
on a macbook pro and I suppose with Leopard. It means that it will run in
64bit mode and use a 64bit address space. I think the enblend problems are
related to the earlier 32bit versions. The 64bit enblend can allocate far
more memory than the 32bit.
It should(!) function correctly on 32bit, but malloc on OSX is not very good
and leaves many chunks of memory behind. The 64bit version can allocate much
more memory. I assume it is therefore "more forgiving" as it has more memory
to use as garbage bin before choking itself in it's own garbage.
It means that the Hugin builds in future should be preferably 32/64bit for
those who can run in 64bit.

Who will build these bundles?

Hoi,
Harry


2009/7/13 David Haberthür 

>
> Dear Guido
>
> > regarding your comment "albeit it took approximately 5 hours to
> > render", I
> > expect you can speed up the calculation with more RAM. After upgrade
> > my
> > machine from 512MB to 2GB RAM the process was very quick compared to
> > the
> > less RAM configuration, especially enblend benefits from lot of free
> > memory.
> > My panos are commonly 14000x7000px built from about 32 pictures in
> > eqirectangular projection. The enblend step needs about 1.5 to 1.7GB
> > RAM
> > to run quickly, otherwise enblend goes to disk with slows down the
> > process.
>
> My MacBook Pro has 2GB of RAM, and i could only upgrade it to 3GB if
> i'd swap one 1GB for a 2GB module, something which will come after the
> transplantation of a bigger HD :)
> As others said before, I'm happy that it runs, I don't really care if
> I let it render overnight, it will be finished in the morning, if it
> takes half an hour or if it takes 5 hours...
> Cheers
> Habi
>
>
> >
>

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"hugin and other free panoramic software" group.
A list of frequently asked questions is available at: 
http://wiki.panotools.org/Hugin_FAQ
To post to this group, send email to hugin-ptx@googlegroups.com
To unsubscribe from this group, send email to 
hugin-ptx-unsubscr...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/hugin-ptx
-~--~~~~--~~--~--~---



[hugin-ptx] Re: Hugin 0.8 rc5 fast preview and celeste

2009-07-13 Thread Bruno Postle

On Mon 13-Jul-2009 at 00:36 -0400, Steve Rigby wrote:
>
> I have two things to mention as related to the subject of this 
> message.  Firstly, how do I turn off the apparently default 
> selection within Hugin of the Fast Preview window?

You can't at the moment.

The reasoning for this is that the Assistant only automates tasks 
that can be performed in the other tabs.  A 'wizard' should have 
good defaults and not present confusing options.

It seems that it isn't just 'first timers' who use the assistant, so 
it is probably appropriate that stuff like this should become an 
option in the preferences.

e.g. some Assistant users would prefer not to see a preview at all 
and others would like to send the project to the batch processor 
instead of stitching immediately.

-- 
Bruno

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"hugin and other free panoramic software" group.
A list of frequently asked questions is available at: 
http://wiki.panotools.org/Hugin_FAQ
To post to this group, send email to hugin-ptx@googlegroups.com
To unsubscribe from this group, send email to 
hugin-ptx-unsubscr...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/hugin-ptx
-~--~~~~--~~--~--~---



[hugin-ptx] Re: (Temporarily?) no more MacOSX Hugin builds from me

2009-07-13 Thread David Haberthür

On 13.07.2009, at 21:08, Harry van der Wolf wrote:

> Hi mac users,
>
> Sometimes shit happens :(
>

I also feel for you, Harry! And I hope you'll be able to get back on  
the mac-track soon, since ImageFuser will be greatly missed!
I am far from making any promises, but I'll try to start to look into  
building hugin myself, and at least try to update the wiki as I go  
along...
Habi



--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"hugin and other free panoramic software" group.
A list of frequently asked questions is available at: 
http://wiki.panotools.org/Hugin_FAQ
To post to this group, send email to hugin-ptx@googlegroups.com
To unsubscribe from this group, send email to 
hugin-ptx-unsubscr...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/hugin-ptx
-~--~~~~--~~--~--~---



[hugin-ptx] Re: hugin-mac-0.8.0-RC5 32/64bit version released

2009-07-13 Thread David Haberthür


On 13.07.2009, at 22:11, Bruno Postle wrote:

>
> On Mon 13-Jul-2009 at 01:49 -0700, Klaus Foehl wrote:
>>
>> 1) Control Points tab, in the drop-down menus with the images one
>> cannot click on the last image. Ist also appears that there is extra
>> space in the drop-down panel below the last image entry. Work-around
>> exists, as one can move the highlighting on the image list with the  
>> up/
>> down-keys.
>
> I can't reproduce this on Linux, does anyone else see this on
> OS X or Windows?

I can partially reproduce this.
I *am* able to click the last image in the list, but the blue  
background does not move down to the last image. But clicking it loads  
it just fine.
And additionally I've also got the empty space at the bottom of the  
drop-down list, both can be seen here: http://www.screencast.com/t/PvcEy32xPG
(i'm on OS X 10.5.7 with hugin 0.8.0-RC5)

habi


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"hugin and other free panoramic software" group.
A list of frequently asked questions is available at: 
http://wiki.panotools.org/Hugin_FAQ
To post to this group, send email to hugin-ptx@googlegroups.com
To unsubscribe from this group, send email to 
hugin-ptx-unsubscr...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/hugin-ptx
-~--~~~~--~~--~--~---



[hugin-ptx] Re: OpenGL slow because of reloading

2009-07-13 Thread David Haberthür

Dear Guido

> regarding your comment "albeit it took approximately 5 hours to  
> render", I
> expect you can speed up the calculation with more RAM. After upgrade  
> my
> machine from 512MB to 2GB RAM the process was very quick compared to  
> the
> less RAM configuration, especially enblend benefits from lot of free
> memory.
> My panos are commonly 14000x7000px built from about 32 pictures in
> eqirectangular projection. The enblend step needs about 1.5 to 1.7GB  
> RAM
> to run quickly, otherwise enblend goes to disk with slows down the
> process.

My MacBook Pro has 2GB of RAM, and i could only upgrade it to 3GB if  
i'd swap one 1GB for a 2GB module, something which will come after the  
transplantation of a bigger HD :)
As others said before, I'm happy that it runs, I don't really care if  
I let it render overnight, it will be finished in the morning, if it  
takes half an hour or if it takes 5 hours...
Cheers
Habi


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"hugin and other free panoramic software" group.
A list of frequently asked questions is available at: 
http://wiki.panotools.org/Hugin_FAQ
To post to this group, send email to hugin-ptx@googlegroups.com
To unsubscribe from this group, send email to 
hugin-ptx-unsubscr...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/hugin-ptx
-~--~~~~--~~--~--~---



[hugin-ptx] Re: blending artifacts, weird output & crash

2009-07-13 Thread Bruno Postle

On Mon 13-Jul-2009 at 21:07 +0200, Benjamin Schnieders wrote:
>
>Project is 112 rectilinear images, forming a nice 360 pano. Using
>cylindrical projection, hugins proposed size is 47543x8381 pixel.
>
>First run, everything was fine, except ugly (blending?) artifacts (see
>http://astrobenja.de/staticimgs/enblend1.png,
>http://astrobenja.de/staticimgs/enblend2.png,
>http://astrobenja.de/staticimgs/enblend3.png) - I remembered the "fix"
>for "Horizontal black lines in my panoramas" and tried to stitch with a
>little lower resolution

The previous reports for this bug suggest that it happens when the 
width of the output is greater than 32768 pixels.  It would be 
useful to prove or disprove this.

Some interesting tests would be to:

Try again with the output at 47543x100.
Try with the width at 32000 then at 33000.
Roll the panorama 90° using the numeric transform in the preview and 
stitch a 8381x47543 panorama instead.

>make: *** [yotest.tif] Killed
>make: *** Datei »yotest.tif« wird gelöscht

Seems that something external stopped the process, maybe an oom 
killer?

>That time, I investigated nona's output a little more thoroughly,
>finding a few images that looked like that one ->
>http://astrobenja.de/staticimgs/pos.png .

This looks ok?

-- 
Bruno

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"hugin and other free panoramic software" group.
A list of frequently asked questions is available at: 
http://wiki.panotools.org/Hugin_FAQ
To post to this group, send email to hugin-ptx@googlegroups.com
To unsubscribe from this group, send email to 
hugin-ptx-unsubscr...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/hugin-ptx
-~--~~~~--~~--~--~---



[hugin-ptx] Re: hugin-mac-0.8.0-RC5 32/64bit version released

2009-07-13 Thread Bruno Postle

On Mon 13-Jul-2009 at 01:49 -0700, Klaus Foehl wrote:
>
>1) Control Points tab, in the drop-down menus with the images one
>cannot click on the last image. Ist also appears that there is extra
>space in the drop-down panel below the last image entry. Work-around
>exists, as one can move the highlighting on the image list with the up/
>down-keys.

I can't reproduce this on Linux, does anyone else see this on 
OS X or Windows?

>2) Blending section of stitching: had "--visualize visu.jpeg" as
>default option from a previous 0.7.0 option but stops stitching
>progress as file somehow cannot be written. Same for suffix .jpg.

Have you tried --visualize=visu.tif or some other TIFF name?

>a) Drag works differently with rectilinear and cylindrical
>projections. With rectilinear I only get rotations, no shifting.

That is a difference between the two projections.  'yawing' a 
cylindrical panorama has the effect of simply shifting all the 
pixels to the right or left, though in reality you are rotating the 
scene.

-- 
Bruno

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"hugin and other free panoramic software" group.
A list of frequently asked questions is available at: 
http://wiki.panotools.org/Hugin_FAQ
To post to this group, send email to hugin-ptx@googlegroups.com
To unsubscribe from this group, send email to 
hugin-ptx-unsubscr...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/hugin-ptx
-~--~~~~--~~--~--~---



[hugin-ptx] Re: (Temporarily?) no more MacOSX Hugin builds from me

2009-07-13 Thread Harry van der Wolf
2009/7/13 phartz...@gmail.com 

>
> On Mon, Jul 13, 2009 at 3:08 PM, Harry van der Wolf
> wrote:
>
> > Hi mac users,
> >
> > Sometimes shit happens :(
>
>   Darn, Harry, I feel terribly for you.  Really, I do.  I would be
> horribly upset were my Mac to suffer a similar fate.  All I can do is
> offer a few thoughts since I do not have a modern Mac that I could
> provide to you.
>
>  Look on Craigslist for something used.  I got my iMac desktop
> machine from Apple as a refurbed unit and saved a goodly amount of
> money.  I recently obtained a Mac Mini from Apple for a friend of mine
> and got it for $400 (US) including a very nice Canon printer.  Apple
> has deals like this on a occasion.  Put Linux on a Mac.
>
>


Here in the Netherlands in Zwolle where I live we luckily have a big Apple
service firm which does sell second hand refurbished macs as well. Normally
they always have a good set of refurbished machines. Currently they have
absolutely nothing and I'll be on holiday for 4 weeks. After that I'll check
again (and maybe have to wait longer).

I will see what happens.

Harry

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"hugin and other free panoramic software" group.
A list of frequently asked questions is available at: 
http://wiki.panotools.org/Hugin_FAQ
To post to this group, send email to hugin-ptx@googlegroups.com
To unsubscribe from this group, send email to 
hugin-ptx-unsubscr...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/hugin-ptx
-~--~~~~--~~--~--~---



[hugin-ptx] Re: (Temporarily?) no more MacOSX Hugin builds from me

2009-07-13 Thread phartz...@gmail.com

On Mon, Jul 13, 2009 at 3:08 PM, Harry van der Wolf wrote:

> Hi mac users,
>
> Sometimes shit happens :(

  Darn, Harry, I feel terribly for you.  Really, I do.  I would be
horribly upset were my Mac to suffer a similar fate.  All I can do is
offer a few thoughts since I do not have a modern Mac that I could
provide to you.

  Look on Craigslist for something used.  I got my iMac desktop
machine from Apple as a refurbed unit and saved a goodly amount of
money.  I recently obtained a Mac Mini from Apple for a friend of mine
and got it for $400 (US) including a very nice Canon printer.  Apple
has deals like this on a occasion.  Put Linux on a Mac.

  At any rate, I feel for you.  Good luck.  I'll miss your builds.
And this is happening just as I got back to the list after having to
move in January, getting a new e-mail address and finally getting
around to re-subscribing.

  Steve

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"hugin and other free panoramic software" group.
A list of frequently asked questions is available at: 
http://wiki.panotools.org/Hugin_FAQ
To post to this group, send email to hugin-ptx@googlegroups.com
To unsubscribe from this group, send email to 
hugin-ptx-unsubscr...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/hugin-ptx
-~--~~~~--~~--~--~---



[hugin-ptx] (Temporarily?) no more MacOSX Hugin builds from me

2009-07-13 Thread Harry van der Wolf
Hi mac users,

*Sometimes shit happens :(
*
Friday evening I baked my macbook. I connected an external USB disk, with
it's own power supply, to my macbook. A sharp electrical crackle with an
accompanying mini lightning flash and both my macbook and that USB disk died
immediately and were completely fried. Both smelled terrible. The power
supply of the disk caused some short circuit power in both devices.
A quick repair of my macbook would be at least 400 euro's (main board
replacement) but most possibly 500+ euro's. A possibly cheaper repair by
cannibalizing parts of other macbooks could be cheaper but take at least a
couple of weeks (due to summer holidays and currently missing parts).

I used to be a convinced Linux user until I got to MacOSX in May 2006 when
my very old Dell laptop running Linux died. I was given a macbook by someone
who likes me very much. That's how my OSX adventure started. Being a Hugin
user on Linux, I wanted this on OSX as well. Ippei Ukai was working hard on
OSX improvements (and did a very good job) and  he also built bundles. But
he did not really keep up "the bundle building" with all the new
developments in my opinion. That's why I stepped in, which was also a good
way to share the workload.

As mentioned, the repair of my macbook costs more than a new basic model
amd/intel "pc" laptop, which is all I currently need and want. That's why I
decided to buy such a laptop and get back to Linux (immediately sanitizing
the disk from terrible Vista).
I think I want "some" mac back, but it might take months (macbook or iMac?)
as I need to decide whether I want the macbook repaired, buy a top model
iMac or ..? (and I'm 4 weeks on holiday starting somewhere next week)

It simply means that I will not build hugin bundles anymore for an uncertain
time (weeks or months) as I just can't do that on Linux. The "timing" is a
bit awkward just before the final 0.8.0 release, but I can't help that.
Someone needs to step in to start building OSX bundles again. I will do
everything I can to support the new builder(s), but (again): *someone really
needs to step in as bundle builder.*


FYI: I immediately built the RC5 on Linux again , with all it's whistles and
bells.

Note: what bothers me most is my own ImageFuser, which I use frequently and
can't use any longer until I have a another mac. And there is no substitute
either on Linux. I used to use Kommander
occasionally on Linux. Maybe I start
a KImageFuser "project" on Linux.

Hoi,
Harry

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"hugin and other free panoramic software" group.
A list of frequently asked questions is available at: 
http://wiki.panotools.org/Hugin_FAQ
To post to this group, send email to hugin-ptx@googlegroups.com
To unsubscribe from this group, send email to 
hugin-ptx-unsubscr...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/hugin-ptx
-~--~~~~--~~--~--~---



[hugin-ptx] Re: Hugin 0.8 rc5 fast preview and celeste

2009-07-13 Thread Harry van der Wolf
2009/7/13 Tim Nugent 

>
> Thanks Steve.
>
> If the 'aligning images' message comes up then celeste should have run
> successfully, but I'm guessing it has done something strange like remove
> too many CPs for alignment to work. Any chance you could send me the
> .pto and images?
>
> Cheers,
> Tim
>
> phartz...@gmail.com wrote:
> > On Mon, Jul 13, 2009 at 11:01 AM, Tim Nugent wrote:
> >
> >> During the celeste related crash, what is the last message in the
> >> dialogue box that says "finding CPs, running celeste, aligning images
> etc"?
> >
> >   I just tested this again to make sure I have everything straight.
> > The crash usually occurs just as the "Aligning Images" dialog box
> > appears, which is immediately after Celeste has finished running.
> > Sometimes it will crash while the Celeste progress bar dialog is still
> > being displayed, but is probably not really crashing until Celeste has
> > finished its run.  I then get the same "Hugin has unexpectedly quit"
> > dialog as one gets when quitting the application after having used the
> > Fast Preview window.  It makes no apparent difference what control
> > point placement routine I use, Pan-o-matic, Autopano Sift, etc.
> >
> >
> >> Can you also try not running celeste automatically, and instead
> >> selecting all the image on the images tab and running celeste from
> >> there, then going to fast preview. Do you still get a crash?
> >
> >   No crash under the circumstances you have outlined above.
> >
> >   Steve
> >
> > >
> >
>



I also filed a bug report for this one:
https://sourceforge.net/tracker/?func=detail&atid=550441&aid=2802192&group_id=77506

Harry

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"hugin and other free panoramic software" group.
A list of frequently asked questions is available at: 
http://wiki.panotools.org/Hugin_FAQ
To post to this group, send email to hugin-ptx@googlegroups.com
To unsubscribe from this group, send email to 
hugin-ptx-unsubscr...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/hugin-ptx
-~--~~~~--~~--~--~---



[hugin-ptx] Re: Hugin for astronomical images

2009-07-13 Thread Erik Krause

Manolo wrote:

>> http://en.wikipedia.org/wiki/Barn_door_tracker
 >> http://www.google.de/search?q=barn+door+astrophotography
> 
> Oh, thanks! This will be the next step (if I had the patience to build
> one). Here it is a detailed step-by-step design:
> http://www.astronoms.org/portal/index.php?option=com_content&task=view&id=73&Itemid=90〈=es

Hmmm, this is an equatorial mount only. The barn door is a drive 
actually, which allows for compensation of the earth's movement. You 
find a couple of step-by-step instructions in the google search results 
of above link.

best regards
-- 
Erik Krause
http://www.erik-krause.de

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"hugin and other free panoramic software" group.
A list of frequently asked questions is available at: 
http://wiki.panotools.org/Hugin_FAQ
To post to this group, send email to hugin-ptx@googlegroups.com
To unsubscribe from this group, send email to 
hugin-ptx-unsubscr...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/hugin-ptx
-~--~~~~--~~--~--~---



[hugin-ptx] Re: hugin-mac-0.8.0-RC5 32/64bit version released

2009-07-13 Thread Harry van der Wolf
2009/7/13 phartz...@gmail.com 

>
> On Mon, Jul 13, 2009 at 4:49 AM, Klaus Foehl wrote:
>
> > 3) On quit: program hugin terminated unexpectedly. As long as nothing
> > more serious happens than needing to click on "close" ok by me.
>
>   This is a long running situation that does not really create any
> operational problems since it only occurs upon quitting the
> application.  I think it has something to do with the Open GL graphics
> engine.
>
>  Steve
>

Yes, it does. A filed a bug report for it:
https://sourceforge.net/tracker/?func=detail&atid=550441&aid=2297456&group_id=77506

Harry

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"hugin and other free panoramic software" group.
A list of frequently asked questions is available at: 
http://wiki.panotools.org/Hugin_FAQ
To post to this group, send email to hugin-ptx@googlegroups.com
To unsubscribe from this group, send email to 
hugin-ptx-unsubscr...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/hugin-ptx
-~--~~~~--~~--~--~---



[hugin-ptx] Re: What is optimized FOV really?

2009-07-13 Thread Aron H



On Jul 10, 4:38 am, Klaus Foehl  wrote:
> Hello all,
>
> One further thought about the cubic and quintic terms only in
> distortion correction.
>
> Let us assume that the mapping from the solid angle space onto the
> focal plane sensor is mathematically well behaved. One standard way is
> to parametrise this into a polynomial, a standard two-dimensional
> polynomial which uses cartesian coordinates to avoid the coordinate
> singularity in polar coordinates. In a nutshell we are talking a
> smooth function (x',y')=f(x,y). In general the coordinate systems need
> not even be centered along the optical axis.
>
> If we now define a special point in this remapping and further ask
> that our remapping conserves the polar angle with reference to this
> point, it means the function f has to be composed of f_i=(x,y)*r^n
> elements. With the ansatz that we want to write these as polynomials
> as well, holomorphic functions, n=2m has to be even and r^n=(x^2+y^2)
> ^m.
>
> r=sqrt(x^2+y^2) cannot be written as a polynomial, and is not
> holomorphic for r=0.
I think I get it. You are requiring that we can write the remapping
function as a polynomial in x and y, not just in r. That rules out
using odd powers of r, because " r=sqrt(x^2+y^2) cannot be written as
a polynomial". Even powers of r can be written as a pure polynomial in
x and y.

> Wording this aspect as a symmetry invariant condition, the mapping
> formula when given in polar coordinates should map (+radius,angle) and
> (-radius,angle+180deg) onto the same point.
>
> Cheers
> Klaus

I appreciate the theory presented here, but I think we have drifted a
bit from some practical considerations. I suspect it would be a large
amount of work to change or extract the distortion equations from the
Hugin / PanoTools toolchain, across the multiple tools that use them.
So any developer or Google SOC student :) which might undertake this
would need to be convinced of the benefits. In theory, the benefit is
numerical stability, and matching best-practice academic research in
this area. However, are there practical examples of PanoTools failing
or acting badly because of its distortion model? If this change can
solve real-world problems, it might be worth it
Regards,
Aron
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"hugin and other free panoramic software" group.
A list of frequently asked questions is available at: 
http://wiki.panotools.org/Hugin_FAQ
To post to this group, send email to hugin-ptx@googlegroups.com
To unsubscribe from this group, send email to 
hugin-ptx-unsubscr...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/hugin-ptx
-~--~~~~--~~--~--~---



[hugin-ptx] Re: Hugin 0.8 rc5 fast preview and celeste

2009-07-13 Thread Tim Nugent

Thanks Steve.

If the 'aligning images' message comes up then celeste should have run 
successfully, but I'm guessing it has done something strange like remove 
too many CPs for alignment to work. Any chance you could send me the 
.pto and images?

Cheers,
Tim

phartz...@gmail.com wrote:
> On Mon, Jul 13, 2009 at 11:01 AM, Tim Nugent wrote:
> 
>> During the celeste related crash, what is the last message in the
>> dialogue box that says "finding CPs, running celeste, aligning images etc"?
> 
>   I just tested this again to make sure I have everything straight.
> The crash usually occurs just as the "Aligning Images" dialog box
> appears, which is immediately after Celeste has finished running.
> Sometimes it will crash while the Celeste progress bar dialog is still
> being displayed, but is probably not really crashing until Celeste has
> finished its run.  I then get the same "Hugin has unexpectedly quit"
> dialog as one gets when quitting the application after having used the
> Fast Preview window.  It makes no apparent difference what control
> point placement routine I use, Pan-o-matic, Autopano Sift, etc.
> 
> 
>> Can you also try not running celeste automatically, and instead
>> selecting all the image on the images tab and running celeste from
>> there, then going to fast preview. Do you still get a crash?
> 
>   No crash under the circumstances you have outlined above.
> 
>   Steve
> 
> > 
> 

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"hugin and other free panoramic software" group.
A list of frequently asked questions is available at: 
http://wiki.panotools.org/Hugin_FAQ
To post to this group, send email to hugin-ptx@googlegroups.com
To unsubscribe from this group, send email to 
hugin-ptx-unsubscr...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/hugin-ptx
-~--~~~~--~~--~--~---



[hugin-ptx] Re: Hugin 0.8 rc5 fast preview and celeste

2009-07-13 Thread phartz...@gmail.com

On Mon, Jul 13, 2009 at 11:01 AM, Tim Nugent wrote:

> During the celeste related crash, what is the last message in the
> dialogue box that says "finding CPs, running celeste, aligning images etc"?

  I just tested this again to make sure I have everything straight.
The crash usually occurs just as the "Aligning Images" dialog box
appears, which is immediately after Celeste has finished running.
Sometimes it will crash while the Celeste progress bar dialog is still
being displayed, but is probably not really crashing until Celeste has
finished its run.  I then get the same "Hugin has unexpectedly quit"
dialog as one gets when quitting the application after having used the
Fast Preview window.  It makes no apparent difference what control
point placement routine I use, Pan-o-matic, Autopano Sift, etc.


> Can you also try not running celeste automatically, and instead
> selecting all the image on the images tab and running celeste from
> there, then going to fast preview. Do you still get a crash?

  No crash under the circumstances you have outlined above.

  Steve

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"hugin and other free panoramic software" group.
A list of frequently asked questions is available at: 
http://wiki.panotools.org/Hugin_FAQ
To post to this group, send email to hugin-ptx@googlegroups.com
To unsubscribe from this group, send email to 
hugin-ptx-unsubscr...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/hugin-ptx
-~--~~~~--~~--~--~---



[hugin-ptx] Re: Hugin for astronomical images

2009-07-13 Thread Manolo



On 11 jul, 15:07, Erik Krause  wrote:

> A bit off topic here, but did you consider using a barn door tracker
> (also known as scotch mount because of it's cheapness 
> :-)http://en.wikipedia.org/wiki/Barn_door_trackerhttp://www.google.de/search?q=barn+door+astrophotography

Oh, thanks! This will be the next step (if I had the patience to build
one). Here it is a detailed step-by-step design:
http://www.astronoms.org/portal/index.php?option=com_content&task=view&id=73&Itemid=90&lang=es

Manolo
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"hugin and other free panoramic software" group.
A list of frequently asked questions is available at: 
http://wiki.panotools.org/Hugin_FAQ
To post to this group, send email to hugin-ptx@googlegroups.com
To unsubscribe from this group, send email to 
hugin-ptx-unsubscr...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/hugin-ptx
-~--~~~~--~~--~--~---



[hugin-ptx] Re: Hugin 0.8 rc5 fast preview and celeste

2009-07-13 Thread Tim Nugent

Hi Steve,

During the celeste related crash, what is the last message in the 
dialogue box that says "finding CPs, running celeste, aligning images etc"?

Can you also try not running celeste automatically, and instead 
selecting all the image on the images tab and running celeste from 
there, then going to fast preview. Do you still get a crash?

Cheers,
Tim

Steve Rigby wrote:
>I have two things to mention as related to the subject of this  
> message.  Firstly, how do I turn off the apparently default selection  
> within Hugin of the Fast Preview window?
> 
>Secondly, I am having a difficulty using Celeste in conjunction  
> with the Fast Preview window when I have set Celeste to run  
> automatically after the generation of control points.  Hugin crashes  
> in this situation, though this behavior may be erratic.  I'll have to  
> look at this a bit more in depth, but was wondering of anyone else is  
> seeing something similar?
> 
>I am using an iMac, Core 2 Duo and Leopard 10.5.4.
> 
>I see that the "Hugin has unexpectedly quit" situation remains  
> after using the Fast Preview window.  This is not a problem for me,  
> just an observation of a long term iissue.
> 
>Steve
> 
> 
> > 
> 

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"hugin and other free panoramic software" group.
A list of frequently asked questions is available at: 
http://wiki.panotools.org/Hugin_FAQ
To post to this group, send email to hugin-ptx@googlegroups.com
To unsubscribe from this group, send email to 
hugin-ptx-unsubscr...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/hugin-ptx
-~--~~~~--~~--~--~---



[hugin-ptx] Re: hugin-mac-0.8.0-RC5 32/64bit version released

2009-07-13 Thread phartz...@gmail.com

On Mon, Jul 13, 2009 at 4:49 AM, Klaus Foehl wrote:

> 3) On quit: program hugin terminated unexpectedly. As long as nothing
> more serious happens than needing to click on "close" ok by me.

  This is a long running situation that does not really create any
operational problems since it only occurs upon quitting the
application.  I think it has something to do with the Open GL graphics
engine.

  Steve

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"hugin and other free panoramic software" group.
A list of frequently asked questions is available at: 
http://wiki.panotools.org/Hugin_FAQ
To post to this group, send email to hugin-ptx@googlegroups.com
To unsubscribe from this group, send email to 
hugin-ptx-unsubscr...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/hugin-ptx
-~--~~~~--~~--~--~---



[hugin-ptx] Re: FYI, Content-Preserving Projections for Wide-Angle Images by Adobe

2009-07-13 Thread Alexandre Prokoudine

On 10 июл, 22:54, Tom Sharpless  wrote:

> Each lead (and junior)  author has said he would like to distribute a
> free version of his program, but that neither Adobe nor Microsoft
> would allow that to be open source

I'm not quite sure. The MS guy who is in charge for their Photosynth
software actually released code from his research projects under GPL.
We'll see :)

I do know however that information in the Adobe related papers is not
always sufficient for creating software. The one from seam carving was
(wasn't Adobe at the time, though), but the one from PatchMatch
already isn't -- that's what Carlo told me.

Alexandre
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"hugin and other free panoramic software" group.
A list of frequently asked questions is available at: 
http://wiki.panotools.org/Hugin_FAQ
To post to this group, send email to hugin-ptx@googlegroups.com
To unsubscribe from this group, send email to 
hugin-ptx-unsubscr...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/hugin-ptx
-~--~~~~--~~--~--~---



[hugin-ptx] Re: hugin-mac-0.8.0-RC5 32/64bit version released

2009-07-13 Thread Klaus Foehl

Hello,

A quick bug report, yes I know it should got onto the bug-tracker as
well, but work comes first.

Mac mini Tigre 10.4.11.

1) Control Points tab, in the drop-down menus with the images one
cannot click on the last image. Ist also appears that there is extra
space in the drop-down panel below the last image entry. Work-around
exists, as one can move the highlighting on the image list with the up/
down-keys.

2) Blending section of stitching: had "--visualize visu.jpeg" as
default option from a previous 0.7.0 option but stops stitching
progress as file somehow cannot be written. Same for suffix .jpg. Have
not tried yet absolute paths (IIRC was not necessary in the past,
maybe I had an external enblend somewhere then).

3) On quit: program hugin terminated unexpectedly. As long as nothing
more serious happens than needing to click on "close" ok by me.

Regards

Klaus

P.S.
a) Drag works differently with rectilinear and cylindrical
projections. With rectilinear I only get rotations, no shifting.

b) The new output cropping tool works rather nicely. No need for post-
processing most of the time.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"hugin and other free panoramic software" group.
A list of frequently asked questions is available at: 
http://wiki.panotools.org/Hugin_FAQ
To post to this group, send email to hugin-ptx@googlegroups.com
To unsubscribe from this group, send email to 
hugin-ptx-unsubscr...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/hugin-ptx
-~--~~~~--~~--~--~---



[hugin-ptx] Re: OpenGL slow because of reloading

2009-07-13 Thread Guido Kohlmeyer

Dear David,

regarding your comment "albeit it took approximately 5 hours to render", I
expect you can speed up the calculation with more RAM. After upgrade my
machine from 512MB to 2GB RAM the process was very quick compared to the
less RAM configuration, especially enblend benefits from lot of free
memory.
My panos are commonly 14000x7000px built from about 32 pictures in
eqirectangular projection. The enblend step needs about 1.5 to 1.7GB RAM
to run quickly, otherwise enblend goes to disk with slows down the
process.

Guido

>
> On 07.06.2009, at 18:45, Harry van der Wolf wrote:
>
>>
>>
>> 2009/6/5 David Haberthür 
>>
>>
>>
>> i could help with providing a test-case, the panorama i shot last
>> saturday evening [1] contains +100 images and +7000 control points
>> generated with pan-o-matic. i'm still struggling with stitching it
>> with full resolution, somehow i chokes at the fusing-step when trying
>> to stitch it in sizes bigger than 1px wide, now i've stitched it
>> in "only" 2694 x 635 px (os x, with harrys newest svn-builld).
>>
>> Hi Habi,
>>
>> Nice pano.
>> You are saying that it chokes on 1px wide (1 by ?).
>> What error message do you get?
>>
>> Harry
>
> Dear all.
> I'm happy to say that  with hugin 0.8.0-RC5 I no longer have the
> problem with this panorama it stitched fine (with a size of
> 17806x4346, albeit it took approximately 5 hours to render :)
> Thanks for all the effort of all involved people!
> Habi
>
>
>
> >
>



--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"hugin and other free panoramic software" group.
A list of frequently asked questions is available at: 
http://wiki.panotools.org/Hugin_FAQ
To post to this group, send email to hugin-ptx@googlegroups.com
To unsubscribe from this group, send email to 
hugin-ptx-unsubscr...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/hugin-ptx
-~--~~~~--~~--~--~---



[hugin-ptx] Hugin 0.8 rc5 fast preview and celeste

2009-07-13 Thread Steve Rigby

   I have two things to mention as related to the subject of this  
message.  Firstly, how do I turn off the apparently default selection  
within Hugin of the Fast Preview window?

   Secondly, I am having a difficulty using Celeste in conjunction  
with the Fast Preview window when I have set Celeste to run  
automatically after the generation of control points.  Hugin crashes  
in this situation, though this behavior may be erratic.  I'll have to  
look at this a bit more in depth, but was wondering of anyone else is  
seeing something similar?

   I am using an iMac, Core 2 Duo and Leopard 10.5.4.

   I see that the "Hugin has unexpectedly quit" situation remains  
after using the Fast Preview window.  This is not a problem for me,  
just an observation of a long term iissue.

   Steve


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"hugin and other free panoramic software" group.
A list of frequently asked questions is available at: 
http://wiki.panotools.org/Hugin_FAQ
To post to this group, send email to hugin-ptx@googlegroups.com
To unsubscribe from this group, send email to 
hugin-ptx-unsubscr...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/hugin-ptx
-~--~~~~--~~--~--~---