[MacOSX] test build for Lion & Mountain Lion

288 views
Skip to first unread message

furai

unread,
Apr 1, 2013, 6:14:19 PM4/1/13
to hugin and other free panoramic software
Hello,

I've built hugin with a 10.7+ compatibility; it is based on commit
84a5e46f89aa on the 2013.0 branch.

It is a 32/64 build, with a macosx 10.7 deployment target; I've built
it on Mountain lion, so I can only hope it will run on Lion. There is
no real reason why I chose 32/64 binaries, but since I could do it,
I've kept it (after some reading, I don't think there's any reason for
lion binary to have 32 bits build).

Enblend version is 4.1.1; I've built it with gcc-4.6, so openmp should
not be an issue (or so have I understand).

It is based on a new xcode project, as I have great difficulties using
the Hugin.xcodeproj that is in the mac directory.
Furthermore, I am still having difficulty using the script that create
links between resources so it is a "normal" build and the total size
is kind of large (450Mib).

The reason behind this new xcode project is that I've encountered
numerous trial and fail when building the provided xcode project using
xcode 4 on lion and up. Harry, are you build hugin with xcode 3 ?

I wanted to know if someone could test this build and let know what
problem he encounters.

The .dmg (130Mib) is here :
http://matthieu.desile.free.fr/hugin/Hugin-Release-2013.0.0.6243:84a5e46f89aa.dmg

Sources are here :
https://bitbucket.org/_furai/hugin

Scripts for building External dependencies are here :
https://github.com/furai/hugin-external-scripts

Cheers,

Matthieu

Harry van der Wolf

unread,
Apr 3, 2013, 5:04:56 PM4/3/13
to hugi...@googlegroups.com
Hi Matthieu/furai,

2013/4/2 furai <matthie...@gmail.com>

Hello,

I've built hugin with a 10.7+ compatibility; it is based on commit
84a5e46f89aa on the 2013.0 branch.

Great!! I'm glad someone did it.
 

It is a 32/64 build, with a macosx 10.7 deployment target; I've built
it on Mountain lion, so I can only hope it will run on Lion. There is
no real reason why I chose 32/64 binaries, but since I could do it,
I've kept it (after some reading, I don't think there's any reason for
lion binary to have 32 bits build).


I tried on my old 10.6.8 macbook pro and it didn't work, but that's normal as the you set the minimal deployment target to 10.7
I managed to get my hands on a 10.8.3 apple and your program starts.
I had a very weird experience when starting hugin for the first time. It started partially off screen and as the window bar was off screen as well I couldn't drag it back. And as Hugin doesn't have the display->zoom function either I couldn't zoom it either.
So I closed Hugin, opened "Library/Preferences/hugin\ Preferences" in vi and set the "main frame" options accordingly.
[MainFrame]
ShowStartTip=0
width=400
height=408
positionX=700
positionY=244
maximized=0

(I describe it this detailed so that others users might benefit from it).

When loading files everything works. When trying to align cpfind fails as it can't find libflann

dyld: Library not loaded: @executable_path/../Libraries/libflann.dylib
  Referenced from: /Applications/Hugin/Hugin.app/Contents/MacOS/./cpfind
  Reason: image not found
Trace/BPT trap: 5

I suppose you used and external libflann. My project uses the internal flann and for this my complete_bundle.sh doesn't contain libflann as a library.

 
Enblend version is 4.1.1; I've built it with gcc-4.6, so openmp should
not be an issue (or so have I understand).

It is compiled against openmp version 2008-5.
Both enblend and enfuse crash with a BPT trap: 5 error which means they can't find a library/framework.
I checked with e.g. "tool -L enblend" (uppercase L). This command will show against which libraries/frameworks your binary or library is compiled. That 10.8.3 machine doesn't have Xcode on it, but I can check that just as well on my own mac.
Anyway, the error is :

/Applications/Hugin/PTBatcherGUI.app/Contents/MacOS/enblend --compression=90 -f6366x1270+82+110 -o P1040510-P1040514.jpg -- P1040510-P10405140000.tif P1040510-P10405140001.tif P1040510-P10405140002.tif P1040510-P10405140003.tif P1040510-P10405140004.tif

dyld: Library not loaded: @executable_path/../Libraries/libgsl.0.dylib

  Referenced from: /Applications/Hugin/PTBatcherGUI.app/Contents/MacOS/enblend

  Reason: image not found


The libgsl.0.dylib is in the right place (and symbolic link libgsl.dylib is also in place), so this requires a little more investigation.

 

It is based on a new xcode project, as I have great difficulties using
the Hugin.xcodeproj that is in the mac directory.

I can't currently check it as that 10.8.3 machine (which isn't mine) doesn't have XCode on it.
 
Furthermore, I am still having difficulty using the script that create
links between resources so it is a "normal" build and the total size
is kind of large (450Mib).

We can discuss this linking stuff.
 

The reason behind this new xcode project is that I've encountered
numerous trial and fail when building the provided xcode project using
xcode 4 on lion and up. Harry, are you build hugin with xcode 3 ?

Yes, still being on 10.6.8 means that I'm restricted to 3.2.6.

 
I wanted to know if someone could test this build and let know what
problem he encounters.

See up in this mail :)


To answer a question from your previous mail:
- in the xcode project, is there a reason why hugin_base, vigra_impex
  are frameworks ?
Yes and No, Ippei Ukai initially made this XCode project. He choose to go for frameworks as that is the default way of building of Apple. The reason for this (by apple) is that a framework contains the library itself and the header files, which makes it a self contained unit for further development.
I just continued on that. I have been thinking of splitting the hugin_base framework into smaller frameworks but never really worked on that. You compiled to dylibs and completely got rid of the Hugin internal frameworks: fine with me.

Thanks a lot for stepping in. You came this far without help so the last few hurdles should be easily to manage.

Harry

furai

unread,
Apr 6, 2013, 11:15:28 AM4/6/13
to hugin and other free panoramic software
Hi,

[...]
I had other weird behaviors :
- moving the fast preview window will move the project window and
I could
not make the project window in the first ground, it would stay
behind the
fast preview window; I don't seem to have it anymore.
- when launching Hugin, the window is at minimum size, and then it
expand
to its "normal" size; this behavior I still have, though it does
not have
any consequence nor does it cause any trouble.

> When loading files everything works. When trying to align cpfind fails as
> it can't find libflann
[...]
> I suppose you used and external libflann. My project uses the internal
> flann and for this my complete_bundle.sh doesn't contain libflann as a
> library.

No, in fact, I'm using the one that comes Hugin, but I did not
copied it in
the bundle. Now that I tested my build more completely, it was the
case
with other ones. I corrected that.

> > Enblend version is 4.1.1; I've built it with gcc-4.6, so openmp should
> > not be an issue (or so have I understand).
>
> It is compiled against openmp version 2008-5.
> Both enblend and enfuse crash with a BPT trap: 5 error which means they
> can't find a library/framework.
> I checked with e.g. "tool -L enblend" (uppercase L). This command will show
> against which libraries/frameworks your binary or library is compiled. That
> 10.8.3 machine doesn't have Xcode on it, but I can check that just as well
> on my own mac.
> Anyway, the error is :
[...]
> The libgsl.0.dylib is in the right place (and symbolic link libgsl.dylib is
> also in place), so this requires a little more investigation.

That was another problem : ids were not changed on the external
libraries
that where needed; external libraries needed by external libraries
were not
embeded (I was checking only the binaries, not the libraries).

I now have a script that checks these problem so it should not
happen again
(I hope).

> > It is based on a new xcode project, as I have great difficulties using
> > the Hugin.xcodeproj that is in the mac directory.
>
> I can't currently check it as that 10.8.3 machine (which isn't mine)
> doesn't have XCode on it.
>
> > Furthermore, I am still having difficulty using the script that create
> > links between resources so it is a "normal" build and the total size
> > is kind of large (450Mib).
>
> We can discuss this linking stuff.

That was why I asked if you were using xcode3, because xcode4 is
doing some
weird stuff; for example, I can embed HuginStitchProjet.app in
Hugin.app/Contents/Resources fine, but when I try to link the
Resources
folder once in InstallerFolder, xcode says that there's no
Resources folder
in Hugin.app/Contents/Resources (which is not true as I can see it
in
Finder, Terminal, ...).

Anyway, I found another way to achieve the same goal and from a
huge 450
Mib, the archive is now 124 Mib.

> > The reason behind this new xcode project is that I've encountered
> > numerous trial and fail when building the provided xcode project using
> > xcode 4 on lion and up. Harry, are you build hugin with xcode 3 ?
>
> > Yes, still being on 10.6.8 means that I'm restricted to 3.2.6.
> > I wanted to know if someone could test this build and let know what
> > problem he encounters.

I still have an old disk that has a Snow Leopard on it to test a
build with
the project you cleaned, but I have no confidence in myself : I
already
tried in the past with the original project (the last time was
maybe
1 year ago) and I failed (the best result was Hugin launching with
a
Japanese locale for no reason and I was unable to know the cause).

But I was using xcode4.0, so I'll give it a try with xcode 3.2.6.

> > See up in this mail :)
>
> To answer a question from your previous mail:
> - in the xcode project, is there a reason why hugin_base, vigra_impex
> are frameworks ?
> Yes and No, Ippei Ukai initially made this XCode project. He choose to go
> for frameworks as that is the default way of building of Apple. The reason
> for this (by apple) is that a framework contains the library itself and the
> header files, which makes it a self contained unit for further development.
> I just continued on that. I have been thinking of splitting the hugin_base
> framework into smaller frameworks but never really worked on that. You
> compiled to dylibs and completely got rid of the Hugin internal frameworks:
> fine with me.

That was the only reason I could think of but I have never seen
the hugin
frameworks used in any other projects, so I thought there may be
another
reason.

> Thanks a lot for stepping in. You came this far without help so the last
> few hurdles should be easily to manage.

And with your help and testing, I corrected some errors and have
now a
(I hope) usable build.

I will try to find my Snow Leopard disk to try to build your
project. It
should take me a week to have results, I will gladly post results
when I
have some.

Cheers,

Matthieu

PS: I uploaded a new build, 64-bits only, for OSX Lion and Mountain
Lion :
http://matthieu.desile.free.fr/hugin/Hugin-Release-2013.0.0.6274-95c3b2328f69-10.7.dmg

Harry van der Wolf

unread,
Apr 7, 2013, 5:38:49 AM4/7/13
to hugi...@googlegroups.com
Hi Matthieu,

Your new bundle works fine apart from your own mentioned behavior.

2013/4/6 furai <matthie...@gmail.com>

    I had other weird behaviors :
    - moving the fast preview window will move the project window and
I could
      not make the project window in the first ground, it would stay
behind the
      fast preview window; I don't seem to have it anymore.

I do have it.
 
    - when launching Hugin, the window is at minimum size, and then it
expand
      to its "normal" size; this behavior I still have, though it does
not have
      any consequence nor does it cause any trouble.

I have it too. It alsmost seems as if it "copies" the size of the splash screen and then expands to it's own size.
 
There are quite some issues with wxwindows 2.9.4 and it's also the reason why I went back to 2.9.3. Next to that 2.9.4 has some more "anomalies" which show up in the images screen in the panorama editor.
I'm now also suspecting 2.9.4 for the weird behavior in screen/window sizes itself (but that's only a guess).
Also some "batch" screen keeps hanging behind the main PTBatcherGui screen.

Again: I had so much issues with 2.9.4 that I went back to 2.9.3

A new wxwindows 2.9.5 is about to be released (currently in svn), which should also fix the drag&drop issue we currently have.
In carbon it functions (2012.0 based on carbon), in cocoa (2012.1 and 2013.0 based on cocoa) it doesn't.
And Thomas found the relating bug <http://trac.wxwidgets.org/ticket/13460>


    I will try to find my Snow Leopard disk to try to build your
project. It
    should take me a week to have results, I will gladly post results
when I
    have some.


You can of course do that, but please save yourself the trouble. If it is for some reason necessary that an XCode is still to be build from 10.6.8 I will take my old macbook pro and build it from there.
Another option could be to do a build from you XCode project with the minimal deployment target set to 10.6. If your new Xcode will do that you are perfectly fine as you can cover almost every platform.
Please don't think I feel bitter or something like that because "my" XCode project is abandoned. If a new one does the job, so much better. Mine (or actually Ippe Ukai's)  project already contained a lot of garbage from the past.

 

PS: I uploaded a new build, 64-bits only, for OSX Lion and Mountain
Lion :
http://matthieu.desile.free.fr/hugin/Hugin-Release-2013.0.0.6274-95c3b2328f69-10.7.dmg


As mentioned: it works fine (on 10.8.3)  apart from the weird behavior possibily introduced to wxwindows 2.9.4

Harry

furai

unread,
Apr 8, 2013, 6:21:33 PM4/8/13
to hugin and other free panoramic software
Hi Harry,

On 7 avr, 11:38, Harry van der Wolf <hvdw...@gmail.com> wrote:
> Hi Matthieu,
>
> Your new bundle works fine apart from your own mentioned behavior.

Thank you for testing

> 2013/4/6 furai <matthieu.des...@gmail.com>
>
> > I had other weird behaviors :
[...]
>
> There are quite some issues with wxwindows 2.9.4 and it's also the reason
> why I went back to 2.9.3.
[...]
> Again: I had so much issues with 2.9.4 that I went back to 2.9.3

Knowing that, I also linked Hugin to 2.9.3. And now I remember why
I used
version 2.9.4 : 2.9.3 was not easy to compile on Lion and higher;
I
backported some changes from 2.9.4 (with my very limited
knowledge : I just
replace parts that were giving compile errors with their
counterpart in
2.9.4); I made a patch that is in my external script repository.

> A new wxwindows 2.9.5 is about to be released (currently in svn), which
> should also fix the drag&drop issue we currently have.
> In carbon it functions (2012.0 based on carbon), in cocoa (2012.1 and
> 2013.0 based on cocoa) it doesn't.
> And Thomas found the relating bug <http://trac.wxwidgets.org/ticket/13460>

OK. I seem to have no problem to build the master branch on
Mountain Lion
and I will try building Hugin against it later.
Version 2.9.4 was easier to build, i.e. it compiled fine and I
know nothing
about wx development so it felt safer. I also do not know bugs
that are
related to the wxOSX port; for example, I had no idea there was a
problem
with drag'n'drop, as I do not use it.

> I will try to find my Snow Leopard disk to try to build your> project. It
> > should take me a week to have results, I will gladly post results
> > when I
> > have some.
>
> You can of course do that, but please save yourself the trouble. If it is
> for some reason necessary that an XCode is still to be build from 10.6.8 I
> will take my old macbook pro and build it from there.
> Another option could be to do a build from you XCode project with the
> minimal deployment target set to 10.6. If your new Xcode will do that you
> are perfectly fine as you can cover almost every platform.

And with that info, you made my day. I thought I could not build
for a
deployment target if I did not have the SDK that goes with it, but
in fact,
the two are somewhat unrelated. Thank you very much for this...

> Please don't think I feel bitter or something like that because "my" XCode
> project is abandoned. If a new one does the job, so much better. Mine (or
> actually Ippe Ukai's) project already contained a lot of garbage from the
> past.

It was also to make me feel safe; I discovered a lot about XCode
internals
and how it works when making this new project, and I did not want
to miss
anything in the making.

For example, I am now trying to build the hsi part and I have
trouble with
with g++ not finding a constructor and I do not know if the
problem comes
from how I generate the wrapper, if my build settings are not
good, if I
missed something when reading your project, ...

On a similar note, is hugin-ptx the mailing list to ask if I
encounter a
problem with the building of enblend ? I am having a problem with
the
configure script and the cmake script, so that I have to use
configure to
generate config.h and then cmake to build enblend.

> > PS: I uploaded a new build, 64-bits only, for OSX Lion and Mountain
> > Lion :
>
> >http://matthieu.desile.free.fr/hugin/Hugin-Release-2013.0.0.6274-95c3...
>
> As mentioned: it works fine (on 10.8.3) apart from the weird behavior
> possibily introduced to wxwindows 2.9.4

with now knowledge of what the macosx_deployment_target does, I
uploaded a
new build, this time with OSX 10.6 as the deployment target.

http://matthieu.desile.free.fr/hugin/Hugin-Release-2013.0.0.6275-05973d403ccb-10.6.dmg

I also made an archive of the external repository, which could be used
as an SDK
(as is done for the Windows build), but I don't know if anyone will
find it
useful (or usable) or if it is helpful at all:

http://matthieu.desile.free.fr/hugin/repository-2013-04-08.tar.gz

Thank you again for your time and help,

Matthieu

furai

unread,
Apr 11, 2013, 3:57:19 AM4/11/13
to hugin and other free panoramic software
Hello,

Just a quick update : I have finally built the hsi part and it seems
to work fine (here).

So here is a new archive, with the latest revision, compatible with
MacOSX 10.6 to 10.8, 32 and 64 bits.

http://matthieu.desile.free.fr/hugin/Hugin-Release-2013.0.0.6286-fdd381ca1714-10.6.dmg

Cheers,

Matthieu

Carl von Einem

unread,
Apr 12, 2013, 6:34:03 AM4/12/13
to hugi...@googlegroups.com
Salut Matthieu,

furai schrieb am 11.04.13 09:57:
thanks for your efforts of building binaries for OS X. Yesterday I tried
the dmg and copied the contents on my Intel Mac (running 10.6). Both
Hugin and PTBatcherGUI won't open, they instantly close and I get this
error message (please note the "Dyld Error Message"):

Process: Hugin [386]
Path:
/Users/carl/Applications/hugin/Hugin-Release-2013.0.0.6286-fdd381ca1714-10.6/Hugin.app/Contents/MacOS/Hugin
Identifier: net.sourceforge.hugin.Hugin
Version: 2013.0.0.6286:fdd381ca1714 (6286:fdd381ca1714)
Code Type: X86-64 (Native)
Parent Process: launchd [97]

Date/Time: 2013-04-11 13:10:08.645 +0200
OS Version: Mac OS X 10.6.8 (10K549)
Report Version: 6

Interval Since Last Report: 6076606 sec
Crashes Since Last Report: 89
Per-App Crashes Since Last Report: 1
Anonymous UUID: D5494658-4AE5-4827-AA94-BEF40C5BF3B7

Exception Type: EXC_BREAKPOINT (SIGTRAP)
Exception Codes: 0x0000000000000002, 0x0000000000000000
Crashed Thread: 0

Dyld Error Message:
Symbol not found: ___progname
Referenced from:
/Users/carl/Applications/hugin/Hugin-Release-2013.0.0.6286-fdd381ca1714-10.6/Hugin.app/Contents/MacOS/../Frameworks/libpano13.2.dylib
Expected in: /usr/lib/libSystem.B.dylib
in
/Users/carl/Applications/hugin/Hugin-Release-2013.0.0.6286-fdd381ca1714-10.6/Hugin.app/Contents/MacOS/../Frameworks/libpano13.2.dylib

Binary Images:
0x100000000 - 0x10025efff +net.sourceforge.hugin.Hugin
2013.0.0.6286:fdd381ca1714 (6286:fdd381ca1714)
<927E2A87-F05F-32BE-B33F-2120D7422065>
/Users/carl/Applications/hugin/Hugin-Release-2013.0.0.6286-fdd381ca1714-10.6/Hugin.app/Contents/MacOS/Hugin
0x10033a000 - 0x100386fe7 com.apple.glut 3.4.4
(GLUT-3.4.4) <78324374-C4AC-2358-3D61-55060E44FC38>
/System/Library/Frameworks/GLUT.framework/Versions/A/GLUT
0x100407000 - 0x100464ff7 +libbase_wx.dylib 2013.0.0
(compatibility 2013.0.0) <47F7A1BD-F57C-3283-8B8D-8C62E4F96916>
/Users/carl/Applications/hugin/Hugin-Release-2013.0.0.6286-fdd381ca1714-10.6/Hugin.app/Contents/Frameworks/libbase_wx.dylib
0x1004a7000 - 0x1004bcff7 +libceleste.dylib 2013.0.0
(compatibility 2013.0.0) <5237F280-9858-3F2B-AA62-A20F1930D913>
/Users/carl/Applications/hugin/Hugin-Release-2013.0.0.6286-fdd381ca1714-10.6/Hugin.app/Contents/Frameworks/libceleste.dylib
0x1004c7000 - 0x1004c9ff7 +libhpi.dylib 2013.0.0
(compatibility 2013.0.0) <875368CC-9A0E-3B53-A9E6-A603058424AA>
/Users/carl/Applications/hugin/Hugin-Release-2013.0.0.6286-fdd381ca1714-10.6/Hugin.app/Contents/Frameworks/libhpi.dylib
0x1004cd000 - 0x100aabfe7 +libhugin_base.dylib 2013.0.0
(compatibility 2013.0.0) <0C607F67-0F0E-36B7-A935-3079BF47ED53>
/Users/carl/Applications/hugin/Hugin-Release-2013.0.0.6286-fdd381ca1714-10.6/Hugin.app/Contents/Frameworks/libhugin_base.dylib
0x100e77000 - 0x100eb4ff7 +libhugin_vigra_impex.dylib
2013.0.0 (compatibility 2013.0.0) <20ECB894-155C-3CFD-9D5B-B086B6ED4BBE>
/Users/carl/Applications/hugin/Hugin-Release-2013.0.0.6286-fdd381ca1714-10.6/Hugin.app/Contents/Frameworks/libhugin_vigra_impex.dylib
0x100ed5000 - 0x100f03fff +libicpfind.dylib 2013.0.0
(compatibility 2013.0.0) <A57C655D-F3C9-3B12-83F6-532AE233CCF5>
/Users/carl/Applications/hugin/Hugin-Release-2013.0.0.6286-fdd381ca1714-10.6/Hugin.app/Contents/Frameworks/libicpfind.dylib
0x100f26000 - 0x100f4cfef +libmakefile.dylib 2013.0.0
(compatibility 2013.0.0) <126EE318-CAD4-3FB3-BD0B-3CF23CCC9538>
/Users/carl/Applications/hugin/Hugin-Release-2013.0.0.6286-fdd381ca1714-10.6/Hugin.app/Contents/Frameworks/libmakefile.dylib
0x100f71000 - 0x100f7efff +libboost_signals-1_46.dylib
??? (???) <DABC4106-064B-3B60-AE64-255150C19C3A>
/Users/carl/Applications/hugin/Hugin-Release-2013.0.0.6286-fdd381ca1714-10.6/Hugin.app/Contents/Frameworks/libboost_signals-1_46.dylib
0x100f8c000 - 0x100f90fff +libboost_system-1_46.dylib ???
(???) <36158381-4B7D-3DD3-8FCF-0A194DC1D055>
/Users/carl/Applications/hugin/Hugin-Release-2013.0.0.6286-fdd381ca1714-10.6/Hugin.app/Contents/Frameworks/libboost_system-1_46.dylib
0x100f94000 - 0x100fa4ff7 +libboost_thread-1_46.dylib ???
(???) <297C6A17-92D4-3614-B69C-CDFB7E5B82D2>
/Users/carl/Applications/hugin/Hugin-Release-2013.0.0.6286-fdd381ca1714-10.6/Hugin.app/Contents/Frameworks/libboost_thread-1_46.dylib
0x100fb9000 - 0x101150fff +libexiv2.12.dylib 13.0.0
(compatibility 13.0.0) <B9D803AA-4A2D-3D34-942E-1CBCE38F5211>
/Users/carl/Applications/hugin/Hugin-Release-2013.0.0.6286-fdd381ca1714-10.6/Hugin.app/Contents/Frameworks/libexiv2.12.dylib
0x1011f7000 - 0x10123fff7 +libGLEW.1.9.0.dylib 1.9.0
(compatibility 1.9.0) <0268C7DC-3A2C-34A8-AC87-87279400B1C1>
/Users/carl/Applications/hugin/Hugin-Release-2013.0.0.6286-fdd381ca1714-10.6/Hugin.app/Contents/Frameworks/libGLEW.1.9.0.dylib
0x10126d000 - 0x1012d5ff7 +libpano13.2.dylib 3.0.0
(compatibility 3.0.0) <B0AE36B5-3977-31F7-82E4-D3E9EB4E1D51>
/Users/carl/Applications/hugin/Hugin-Release-2013.0.0.6286-fdd381ca1714-10.6/Hugin.app/Contents/Frameworks/libpano13.2.dylib
0x1012e3000 - 0x10133cfe7 +libtiff.3.dylib 13.7.0
(compatibility 13.0.0) <7B635DDE-6555-3281-903A-AE2753091A92>
/Users/carl/Applications/hugin/Hugin-Release-2013.0.0.6286-fdd381ca1714-10.6/Hugin.app/Contents/Frameworks/libtiff.3.dylib
0x101348000 - 0x101d49fff
+libwx_osx_cocoau-2.9.3.0.0.dylib ??? (???)
<6FD1B957-E818-3AB2-83D7-327A62977103>
/Users/carl/Applications/hugin/Hugin-Release-2013.0.0.6286-fdd381ca1714-10.6/Hugin.app/Contents/Frameworks/libwx_osx_cocoau-2.9.3.0.0.dylib
0x102186000 - 0x102192ff7
+libwx_osx_cocoau_gl-2.9.3.0.0.dylib ??? (???)
<426DC8B8-F6F7-3EDC-B234-B89E0C52F691>
/Users/carl/Applications/hugin/Hugin-Release-2013.0.0.6286-fdd381ca1714-10.6/Hugin.app/Contents/Frameworks/libwx_osx_cocoau_gl-2.9.3.0.0.dylib
0x1021a1000 - 0x1021acfff +liblevmar.dylib 2013.0.0
(compatibility 2013.0.0) <B0D3488E-575C-32E6-AFFF-9B2B6CAE70F5>
/Users/carl/Applications/hugin/Hugin-Release-2013.0.0.6286-fdd381ca1714-10.6/Hugin.app/Contents/Frameworks/liblevmar.dylib
0x1021af000 - 0x1021c3fff +libboost_filesystem-1_46.dylib
??? (???) <49642E74-7F2D-3A58-87AE-2AF5E43DE698>
/Users/carl/Applications/hugin/Hugin-Release-2013.0.0.6286-fdd381ca1714-10.6/Hugin.app/Contents/Frameworks/libboost_filesystem-1_46.dylib
0x1021d6000 - 0x10227efe7 +libboost_regex-1_46.dylib ???
(???) <220671E1-DCC2-39FF-BBF0-97297495677B>
/Users/carl/Applications/hugin/Hugin-Release-2013.0.0.6286-fdd381ca1714-10.6/Hugin.app/Contents/Frameworks/libboost_regex-1_46.dylib
0x1022f2000 - 0x10230ffe7 +liblensfun.dylib ??? (???)
<A300C8F4-2258-3098-9886-3D4A8CB60BE2>
/Users/carl/Applications/hugin/Hugin-Release-2013.0.0.6286-fdd381ca1714-10.6/Hugin.app/Contents/Frameworks/liblensfun.dylib
0x102316000 - 0x10234afe7 +libjpeg.8.dylib 13.0.0
(compatibility 13.0.0) <73A4F4DC-253A-3990-A12A-5CA18324E61D>
/Users/carl/Applications/hugin/Hugin-Release-2013.0.0.6286-fdd381ca1714-10.6/Hugin.app/Contents/Frameworks/libjpeg.8.dylib
0x102351000 - 0x102392ff7 +libHalf.7.dylib 8.0.0
(compatibility 8.0.0) <5556A5B9-98D0-3D69-B346-89372A4C18A2>
/Users/carl/Applications/hugin/Hugin-Release-2013.0.0.6286-fdd381ca1714-10.6/Hugin.app/Contents/Frameworks/libHalf.7.dylib
0x102395000 - 0x10243ffe7 +libIlmImf.7.dylib 8.0.0
(compatibility 8.0.0) <959F6F7C-F1CD-3ABB-A789-46E40D0F6476>
/Users/carl/Applications/hugin/Hugin-Release-2013.0.0.6286-fdd381ca1714-10.6/Hugin.app/Contents/Frameworks/libIlmImf.7.dylib
0x102477000 - 0x102496ff7 +libpng14.14.dylib 14.0.0
(compatibility 14.0.0) <97E418CF-EE2F-32CC-84E1-3D172EE017B3>
/Users/carl/Applications/hugin/Hugin-Release-2013.0.0.6286-fdd381ca1714-10.6/Hugin.app/Contents/Frameworks/libpng14.14.dylib
0x10249e000 - 0x1025acfe7 +libglib-2.0.0.dylib 3601.0.0
(compatibility 3601.0.0) <A0716622-61F4-3D93-B9E2-B8C949DD8C1D>
/Users/carl/Applications/hugin/Hugin-Release-2013.0.0.6286-fdd381ca1714-10.6/Hugin.app/Contents/Frameworks/libglib-2.0.0.dylib
0x1025da000 - 0x1025e3ff7 +libintl.8.dylib 10.2.0
(compatibility 10.0.0) <B7B39556-E6B8-3F18-897F-488C4C6AC1D6>
/Users/carl/Applications/hugin/Hugin-Release-2013.0.0.6286-fdd381ca1714-10.6/Hugin.app/Contents/Frameworks/libintl.8.dylib
0x1025e8000 - 0x1026deff7 +libiconv.2.dylib 8.1.0
(compatibility 8.0.0) <4CCEC6D6-7B1B-3A55-B0C6-C65020C95A2E>
/Users/carl/Applications/hugin/Hugin-Release-2013.0.0.6286-fdd381ca1714-10.6/Hugin.app/Contents/Frameworks/libiconv.2.dylib
0x1026eb000 - 0x1026f9ff7 +libImath.7.dylib 8.0.0
(compatibility 8.0.0) <2FA72A0B-BB6B-3FE2-9B85-8FC58658BFCA>
/Users/carl/Applications/hugin/Hugin-Release-2013.0.0.6286-fdd381ca1714-10.6/Hugin.app/Contents/Frameworks/libImath.7.dylib
0x1026fe000 - 0x102705ff7 +libIex.7.dylib 8.0.0
(compatibility 8.0.0) <EDA3E857-11C8-3DCF-9587-B6E7DC9ED01A>
/Users/carl/Applications/hugin/Hugin-Release-2013.0.0.6286-fdd381ca1714-10.6/Hugin.app/Contents/Frameworks/libIex.7.dylib
0x102715000 - 0x102716fff +libIexMath.7.dylib 8.0.0
(compatibility 8.0.0) <F4DA7CFE-34A8-3237-B9C5-10CE67DE6741>
/Users/carl/Applications/hugin/Hugin-Release-2013.0.0.6286-fdd381ca1714-10.6/Hugin.app/Contents/Frameworks/libIexMath.7.dylib
0x10271a000 - 0x10271dff7 +libIlmThread.7.dylib 8.0.0
(compatibility 8.0.0) <1BB821D8-E3E2-3D60-929E-2E83EB58E39E>
/Users/carl/Applications/hugin/Hugin-Release-2013.0.0.6286-fdd381ca1714-10.6/Hugin.app/Contents/Frameworks/libIlmThread.7.dylib
0x102722000 - 0x102740fef +libexpat.1.dylib 8.0.0
(compatibility 8.0.0) <688E7A7A-11C5-385F-9850-7027D0234CF1>
/Users/carl/Applications/hugin/Hugin-Release-2013.0.0.6286-fdd381ca1714-10.6/Hugin.app/Contents/Frameworks/libexpat.1.dylib
0x102747000 - 0x10274dff7 com.apple.agl 3.0.12
(AGL-3.0.12) <3E1CF810-2E94-B757-FE5C-4B0CA2275D5F>
/System/Library/Frameworks/AGL.framework/Versions/A/AGL
0x102754000 - 0x102892ff7 +libpython2.7.dylib 2.7.0
(compatibility 2.7.0) <65A24C63-8BAA-3C06-8314-013CAFBED280>
/Users/carl/Applications/hugin/Hugin-Release-2013.0.0.6286-fdd381ca1714-10.6/Hugin.app/Contents/Frameworks/libpython2.7.dylib
0x7fff5fc00000 - 0x7fff5fc3bdef dyld 132.1 (???)
<1CF125D0-00E6-8665-8C72-C68DCC709C4D> /usr/lib/dyld
0x7fff8002d000 - 0x7fff803cafe7 com.apple.QuartzCore 1.6.3
(227.37) <16DFF6CD-EA58-CE62-A1D7-5F6CE3D066DD>
/System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
0x7fff803cb000 - 0x7fff803ecfe7 libPng.dylib ??? (???)
<D8EC7740-EE32-865A-2F75-C9EDE2135510>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
0x7fff803ed000 - 0x7fff80676ff7 com.apple.security 6.1.2
(55002) <772E1B13-8271-02F8-B1FE-023592A7AED7>
/System/Library/Frameworks/Security.framework/Versions/A/Security
0x7fff80994000 - 0x7fff80999fff libGIF.dylib ??? (???)
<3BAD0DE8-8151-68B0-2244-A4541C738972>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
0x7fff8099a000 - 0x7fff809afff7 com.apple.LangAnalysis 1.6.6
(1.6.6) <DC999B32-BF41-94C8-0583-27D9AB463E8B>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
0x7fff80bbc000 - 0x7fff810c2ff7 com.apple.VideoToolbox
0.484.60 (484.60) <F55EF548-56E4-A6DF-F3C9-6BA4CFF5D629>
/System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbox
0x7fff810c3000 - 0x7fff81233fff com.apple.QTKit 7.7 (1793)
<6C8A8451-1FE5-79F5-3D6D-8FA846866609>
/System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
0x7fff81234000 - 0x7fff813f5fef libSystem.B.dylib 125.2.11
(compatibility 1.0.0) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69>
/usr/lib/libSystem.B.dylib
0x7fff8146b000 - 0x7fff8146bff7 com.apple.Accelerate.vecLib
3.6 (vecLib 3.6) <DA9BFF01-40DF-EBD5-ABB7-787DAF2D77CF>
/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
0x7fff8146c000 - 0x7fff8160efef com.apple.WebKit 6534.58
(6534.58.2) <381E4984-6833-24A1-8F5E-B66DCD6340E2>
/System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
0x7fff81618000 - 0x7fff81756fff com.apple.CoreData 102.1 (251)
<32233D4D-00B7-CE14-C881-6BF19FD05A03>
/System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
0x7fff817e3000 - 0x7fff817f7fff libGL.dylib ??? (???)
<2ECE3B0F-39E1-3938-BF27-7205C6D0358B>
/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x7fff81852000 - 0x7fff818c3ff7 com.apple.AppleVAFramework
4.10.27 (4.10.27) <6CDBA3F5-6C7C-A069-4716-2B6C3AD5001F>
/System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
0x7fff818c4000 - 0x7fff81bc2fff com.apple.HIToolbox 1.6.5
(???) <AD1C18F6-51CB-7E39-35DD-F16B1EB978A8>
/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x7fff81c1d000 - 0x7fff81ddcfff com.apple.ImageIO.framework
3.0.6 (3.0.6) <92882FD3-CB3F-D0BE-DDDA-43B4BEE10F58>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/ImageIO
0x7fff81ddd000 - 0x7fff81debff7 libkxld.dylib ??? (???)
<8145A534-95CC-9F3C-B78B-AC9898F38C6F> /usr/lib/system/libkxld.dylib
0x7fff81dec000 - 0x7fff81e78fef SecurityFoundation ??? (???)
<D844BB57-386A-0A43-249E-9BE035C2AB53>
/System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
0x7fff81e85000 - 0x7fff81ecdff7 libvDSP.dylib 268.0.1
(compatibility 1.0.0) <170DE04F-89AB-E295-0880-D69CAFBD7979>
/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x7fff81ece000 - 0x7fff81ed9ff7
com.apple.speech.recognition.framework 3.11.1 (3.11.1)
<F0DDF27E-DB55-07CE-E548-C62095BE8167>
/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
0x7fff81eda000 - 0x7fff81effff7 com.apple.CoreVideo 1.6.2
(45.6) <E138C8E7-3CB6-55A9-0A2C-B73FE63EA288>
/System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
0x7fff81f40000 - 0x7fff81ff5fe7 com.apple.ink.framework 1.3.3
(107) <FFC46EE0-3544-A459-2AB9-94778A75E3D4>
/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
0x7fff81ff6000 - 0x7fff81ff6ff7 com.apple.Cocoa 6.6 (???)
<68B0BE46-6E24-C96F-B341-054CF9E8F3B6>
/System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
0x7fff8233b000 - 0x7fff82463ff7 com.apple.MediaToolbox
0.484.60 (484.60) <F921A5E6-E260-03B4-1458-E5814FA1924D>
/System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbox
0x7fff82464000 - 0x7fff824f4fff com.apple.SearchKit 1.3.0
(1.3.0) <4175DC31-1506-228A-08FD-C704AC9DF642>
/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
0x7fff8265a000 - 0x7fff8266bff7 libz.1.dylib 1.2.3
(compatibility 1.0.0) <FB5EE53A-0534-0FFA-B2ED-486609433717>
/usr/lib/libz.1.dylib
0x7fff827c0000 - 0x7fff827c3fff com.apple.help 1.3.2 (41.1)
<BD1B0A22-1CB8-263E-FF85-5BBFDE3660B9>
/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
0x7fff827d8000 - 0x7fff827d9ff7
com.apple.audio.units.AudioUnit 1.6.7 (1.6.7)
<49B723D1-85F8-F86C-2331-F586C56D68AF>
/System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
0x7fff827da000 - 0x7fff82a5cfff com.apple.Foundation 6.6.8
(751.63) <E10E4DB4-9D5E-54A8-3FB6-2A82426066E4>
/System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x7fff82a5d000 - 0x7fff82a98fff com.apple.AE 496.5 (496.5)
<208DF391-4DE6-81ED-C697-14A2930D1BC6>
/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x7fff82c7c000 - 0x7fff82cc1fff com.apple.CoreMediaIOServices
140.0 (1496) <D93293EB-0B84-E97D-E78C-9FE8D48AF58E>
/System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/CoreMediaIOServices
0x7fff82ce6000 - 0x7fff82d9cff7 libobjc.A.dylib 227.0.0
(compatibility 1.0.0) <03140531-3B2D-1EBA-DA7F-E12CC8F63969>
/usr/lib/libobjc.A.dylib
0x7fff82d9f000 - 0x7fff82db1fe7 libsasl2.2.dylib 3.15.0
(compatibility 3.0.0) <76B83C8D-8EFE-4467-0F75-275648AFED97>
/usr/lib/libsasl2.2.dylib
0x7fff82db2000 - 0x7fff82dd2fff
com.apple.DirectoryService.Framework 3.6 (621.15)
<9AD2A133-4275-5666-CE69-98FDF9A38B7A>
/System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
0x7fff82dd3000 - 0x7fff82df6fff com.apple.opencl 12.3.6
(12.3.6) <42FA5783-EB80-1168-4015-B8C68F55842F>
/System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
0x7fff82ebb000 - 0x7fff82ee3fff com.apple.DictionaryServices
1.1.2 (1.1.2) <E9269069-93FA-2B71-F9BA-FDDD23C4A65E>
/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
0x7fff82f59000 - 0x7fff82f5bfff libRadiance.dylib ??? (???)
<BF694EE5-6FDA-553A-CC89-F7135618E9C7>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
0x7fff82f5c000 - 0x7fff82fb1ff7
com.apple.framework.familycontrols 2.0.2 (2020)
<F09541B6-5E28-1C01-C1AE-F6A2508670C7>
/System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
0x7fff82fb2000 - 0x7fff83073fef com.apple.ColorSync 4.6.8
(4.6.8) <7DF1D175-6451-51A2-DBBF-40FCA78C0D2C>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
0x7fff83140000 - 0x7fff8318aff7 com.apple.Metadata 10.6.3
(507.15) <DE238BE4-5E22-C4D5-CF5C-3D50FDEE4701>
/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x7fff8319d000 - 0x7fff831b8ff7 com.apple.openscripting 1.3.1
(???) <FD46A0FE-AC79-3EF7-AB4F-396D376DDE71>
/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
0x7fff831b9000 - 0x7fff83205fff libauto.dylib ??? (???)
<F7221B46-DC4F-3153-CE61-7F52C8C293CF> /usr/lib/libauto.dylib
0x7fff83236000 - 0x7fff8323cff7 com.apple.DiskArbitration 2.3
(2.3) <857F6E43-1EF4-7D53-351B-10DE0A8F992A>
/System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x7fff8323d000 - 0x7fff8329dfe7 com.apple.framework.IOKit 2.0
(???) <4F071EF0-8260-01E9-C641-830E582FA416>
/System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x7fff8329e000 - 0x7fff832adfff com.apple.NetFS 3.2.2 (3.2.2)
<7CCBD70E-BF31-A7A7-DB98-230687773145>
/System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
0x7fff832ed000 - 0x7fff83464fe7 com.apple.CoreFoundation 6.6.6
(550.44) <BB4E5158-E47A-39D3-2561-96CB49FA82D4>
/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff83465000 - 0x7fff83539fe7 com.apple.CFNetwork 454.12.4
(454.12.4) <C83E2BA1-1818-B3E8-5334-860AD21D1C80>
/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x7fff83555000 - 0x7fff83576fff libresolv.9.dylib 41.1.0
(compatibility 1.0.0) <9410EC7F-4D24-6740-AFEE-90405750FAD7>
/usr/lib/libresolv.9.dylib
0x7fff83577000 - 0x7fff83611fff
com.apple.ApplicationServices.ATS 275.19 (???)
<2DE8987F-4563-4D8E-45C3-2F6F786E120D>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
0x7fff8365c000 - 0x7fff83661fff libGFXShared.dylib ??? (???)
<6BBC351E-40B3-F4EB-2F35-05BDE52AF87E>
/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
0x7fff83662000 - 0x7fff83663fff liblangid.dylib ??? (???)
<EA4D1607-2BD5-2EE2-2A3B-632EEE5A444D> /usr/lib/liblangid.dylib
0x7fff83664000 - 0x7fff8367afe7
com.apple.MultitouchSupport.framework 207.11 (207.11)
<8233CE71-6F8D-8B3C-A0E1-E123F6406163>
/System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
0x7fff8370b000 - 0x7fff8373cfff libGLImage.dylib ??? (???)
<562565E1-AA65-FE96-13FF-437410C886D0>
/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
0x7fff838df000 - 0x7fff838e2ff7 libCoreVMClient.dylib ???
(???) <75819794-3B7A-8944-D004-7EA6DD7CE836>
/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
0x7fff83aa0000 - 0x7fff83bb6ff7 libxml2.2.dylib 10.3.0
(compatibility 10.0.0) <3814FCF9-92B9-A6AB-E76A-F7021894AA3F>
/usr/lib/libxml2.2.dylib
0x7fff83ceb000 - 0x7fff83cebff7 com.apple.CoreServices 44 (44)
<DC7400FB-851E-7B8A-5BF6-6F50094302FB>
/System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x7fff83cec000 - 0x7fff83cf3fff com.apple.OpenDirectory 10.6
(10.6) <4200CFB0-DBA1-62B8-7C7C-91446D89551F>
/System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
0x7fff83cf4000 - 0x7fff84137fef libLAPACK.dylib 219.0.0
(compatibility 1.0.0) <0CC61C98-FF51-67B3-F3D8-C5E430C201A9>
/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x7fff84138000 - 0x7fff84151fff com.apple.CFOpenDirectory 10.6
(10.6) <CCF79716-7CC6-2520-C6EB-A4F56AD0A207>
/System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
0x7fff84152000 - 0x7fff841a1ff7
com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1)
<01B370FB-D524-F660-3826-E85B7F0D85CD>
/System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordServer
0x7fff841a2000 - 0x7fff841b6ff7
com.apple.speech.synthesis.framework 3.10.35 (3.10.35)
<621B7415-A0B9-07A7-F313-36BEEDD7B132>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
0x7fff845cf000 - 0x7fff8464efe7 com.apple.audio.CoreAudio
3.2.6 (3.2.6) <79E256EB-43F1-C7AA-6436-124A4FFB02D0>
/System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x7fff846e1000 - 0x7fff846e1ff7 com.apple.Accelerate 1.6
(Accelerate 1.6) <2BB7D669-4B40-6A52-ADBD-DA4DB3BC0B1B>
/System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x7fff846e2000 - 0x7fff846e2ff7 com.apple.Carbon 150 (152)
<29318EF4-8EB3-11C1-1AA5-CA67B3B1AC16>
/System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
0x7fff846e3000 - 0x7fff8479cfff libsqlite3.dylib 9.6.0
(compatibility 9.0.0) <2C5ED312-E646-9ADE-73A9-6199A2A43150>
/usr/lib/libsqlite3.dylib
0x7fff8479d000 - 0x7fff847f0ff7 com.apple.HIServices 1.8.3
(???) <F6E0C7A7-C11D-0096-4DDA-2C77793AA6CD>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
0x7fff847f1000 - 0x7fff8483afef libGLU.dylib ??? (???)
<B0F4CA55-445F-E901-0FCF-47B3B4BAE6E2>
/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
0x7fff8483b000 - 0x7fff8483bff7 com.apple.ApplicationServices
38 (38) <10A0B9E9-4988-03D4-FC56-DDE231A02C63>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
0x7fff8483c000 - 0x7fff858a6fff com.apple.WebCore 6534.58
(6534.58.2) <4B06C20C-4DA7-7E36-532A-3086D087880E>
/System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versions/A/WebCore
0x7fff8595b000 - 0x7fff85a75fff libGLProgrammability.dylib ???
(???) <D1650AED-02EF-EFB3-100E-064C7F018745>
/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib
0x7fff85a76000 - 0x7fff85a7bff7 com.apple.CommonPanels 1.2.4
(91) <4D84803B-BD06-D80E-15AE-EFBE43F93605>
/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
0x7fff85a7c000 - 0x7fff85a8bfef com.apple.opengl 1.6.14
(1.6.14) <ECAE2D12-5BE3-46E7-6EE5-563B80B32A3E>
/System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
0x7fff85a93000 - 0x7fff85a94ff7 com.apple.TrustEvaluationAgent
1.1 (1) <74800EE8-C14C-18C9-C208-20BBDB982D40>
/System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
0x7fff8646d000 - 0x7fff864b4ff7 com.apple.coreui 2 (114)
<D7645B59-0431-6283-7322-957D944DAB21>
/System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
0x7fff864b5000 - 0x7fff86673fff libicucore.A.dylib 40.0.0
(compatibility 1.0.0) <97A75BFB-0DB6-6F44-36B0-97B7F7208ABB>
/usr/lib/libicucore.A.dylib
0x7fff86708000 - 0x7fff8670eff7 com.apple.CommerceCore 1.0
(9.1) <3691E9BA-BCF4-98C7-EFEC-78DA6825004E>
/System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCore.framework/Versions/A/CommerceCore
0x7fff8670f000 - 0x7fff86750fef com.apple.QD 3.36 (???)
<5DC41E81-32C9-65B2-5528-B33E934D5BB4>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
0x7fff86756000 - 0x7fff86797fef com.apple.CoreMedia 0.484.60
(484.60) <6B73A514-C4D5-8DC7-982C-4E4F0231ED77>
/System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
0x7fff867e8000 - 0x7fff867ecff7 libmathCommon.A.dylib 315.0.0
(compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5>
/usr/lib/system/libmathCommon.A.dylib
0x7fff867ed000 - 0x7fff8689dfff edu.mit.Kerberos 6.5.11
(6.5.11) <085D80F5-C9DC-E252-C21B-03295E660C91>
/System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
0x7fff8689e000 - 0x7fff868b5fff com.apple.ImageCapture 6.1
(6.1) <79AB2131-2A6C-F351-38A9-ED58B25534FD>
/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
0x7fff868b6000 - 0x7fff868e1ff7 libxslt.1.dylib 3.24.0
(compatibility 3.0.0) <3630A97F-55C1-3F34-CA63-3847653C9645>
/usr/lib/libxslt.1.dylib
0x7fff868e2000 - 0x7fff8695ffef libstdc++.6.dylib 7.9.0
(compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C>
/usr/lib/libstdc++.6.dylib
0x7fff8696a000 - 0x7fff86a4ffef com.apple.DesktopServices
1.5.11 (1.5.11) <39FAA3D2-6863-B5AB-AED9-92D878EA2438>
/System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
0x7fff86aab000 - 0x7fff86b88fff com.apple.vImage 4.1 (4.1)
<C3F44AA9-6F71-0684-2686-D3BBC903F020>
/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x7fff86b99000 - 0x7fff86ecdfef
com.apple.CoreServices.CarbonCore 861.39 (861.39)
<1386A24D-DD15-5903-057E-4A224FAF580B>
/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
0x7fff86f05000 - 0x7fff87227fef com.apple.JavaScriptCore
6534.58 (6534.58.1) <5F2E1462-5167-67D0-01FF-0D0424889B5C>
/System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
0x7fff8722f000 - 0x7fff87231fff
com.apple.print.framework.Print 6.1 (237.1)
<CA8564FB-B366-7413-B12E-9892DA3C6157>
/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
0x7fff872cc000 - 0x7fff8734aff7 com.apple.CoreText 151.13
(???) <5C6214AD-D683-80A8-86EB-328C99B75322>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.framework/Versions/A/CoreText
0x7fff874cf000 - 0x7fff87510fff com.apple.SystemConfiguration
1.10.8 (1.10.2) <78D48D27-A9C4-62CA-2803-D0BBED82855A>
/System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x7fff87511000 - 0x7fff875cefff
com.apple.CoreServices.OSServices 359.2 (359.2)
<BBB8888E-18DE-5D09-3C3A-F4C029EC7886>
/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
0x7fff875f0000 - 0x7fff87606fef libbsm.0.dylib ??? (???)
<42D3023A-A1F7-4121-6417-FCC6B51B3E90> /usr/lib/libbsm.0.dylib
0x7fff87607000 - 0x7fff876c9fe7 libFontParser.dylib ??? (???)
<EF06F16C-0CC9-B4CA-7BD9-0A97FA967340>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
0x7fff87707000 - 0x7fff8775dfe7 libTIFF.dylib ??? (???)
<2DBEC120-DAA7-3789-36A2-A205BCDF2D72>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
0x7fff8776c000 - 0x7fff8776cff7 com.apple.vecLib 3.6 (vecLib
3.6) <08D3D45D-908B-B86A-00BA-0F978D2702A7>
/System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
0x7fff8776d000 - 0x7fff8788cfe7 libcrypto.0.9.8.dylib 0.9.8
(compatibility 0.9.8) <14115D29-432B-CF02-6B24-A60CC533A09E>
/usr/lib/libcrypto.0.9.8.dylib
0x7fff8788d000 - 0x7fff879c2fff
com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7)
<F4814A13-E557-59AF-30FF-E62929367933>
/System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
0x7fff879c3000 - 0x7fff881cdfe7 libBLAS.dylib 219.0.0
(compatibility 1.0.0) <FC941ECB-71D0-FAE3-DCBF-C5A619E594B8>
/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x7fff88325000 - 0x7fff8834cff7 libJPEG.dylib ??? (???)
<08758593-6436-B29E-1DA8-F15597835EC1>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
0x7fff885b7000 - 0x7fff885baff7 com.apple.securityhi 4.0
(36638) <38935851-09E4-DDAB-DB1D-30ADC39F7ED0>
/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
0x7fff885bb000 - 0x7fff88fb5ff7 com.apple.AppKit 6.6.8
(1038.36) <4CFBE04C-8FB3-B0EA-8DDB-7E7D10E9D251>
/System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x7fff89006000 - 0x7fff89040fff libcups.2.dylib 2.8.0
(compatibility 2.0.0) <4F2A4397-89BD-DEAC-4971-EE838FFA0964>
/usr/lib/libcups.2.dylib
0x7fff89146000 - 0x7fff89842ff7 com.apple.CoreGraphics 1.545.0
(???) <58D597B1-EB3B-710E-0B8C-EC114D54E11B>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
0x7fff8a041000 - 0x7fff8a0c6ff7
com.apple.print.framework.PrintCore 6.3 (312.7)
<CDFE82DD-D811-A091-179F-6E76069B432D>
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
0x7fff8a14a000 - 0x7fff8a1b4fe7 libvMisc.dylib 268.0.1
(compatibility 1.0.0) <75A8D840-4ACE-6560-0889-2AFB6BE08E59>
/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x7fff8a1b5000 - 0x7fff8a255fff com.apple.LaunchServices 362.3
(362.3) <B90B7C31-FEF8-3C26-BFB3-D8A48BD2C0DA>
/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x7fff8a256000 - 0x7fff8a25cff7 IOSurface ??? (???)
<04EDCEDE-E36F-15F8-DC67-E61E149D2C9A>
/System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
0x7fffffe00000 - 0x7fffffe01fff libSystem.B.dylib ??? (???)
<9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib

Model: MacPro5,1, BootROM MP51.007F.B03, 12 processors, 6-Core Intel
Xeon, 2.66 GHz, 26 GB, SMC 1.39f11
Graphics: ATI Radeon HD 5770, ATI Radeon HD 5770, PCIe, 1024 MB
Memory Module: global_name
AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8E),
Broadcom BCM43xx 1.0 (5.10.131.42.4)
Bluetooth: Version 2.4.5f3, 2 service, 19 devices, 1 incoming serial ports
Network Service: Ethernet 2, Ethernet, en1
PCI Card: ATI Radeon HD 5770, sppci_displaycontroller, Slot-1
Serial ATA Device: HL-DT-ST DVD-RW GH41N
Serial ATA Device: WDC WD1001FALS-41Y6A0, 931,51 GB
USB Device: Keyboard Hub, 0x05ac (Apple Inc.), 0x1006, 0xfd100000 / 2
USB Device: Apple Keyboard, 0x05ac (Apple Inc.), 0x0221, 0xfd120000 / 3
USB Device: BRCM2046 Hub, 0x0a5c (Broadcom Corp.), 0x4500, 0x5a100000 / 2
USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x8215,
0x5a110000 / 4
USB Device: EIZO USB HID Monitor, 0x056d (Eizo), 0x0002, 0x3d100000 / 2
FireWire Device: built-in_hub, Up to 800 Mb/sec

Harry van der Wolf

unread,
Apr 12, 2013, 9:07:50 AM4/12/13
to hugi...@googlegroups.com


2013/4/12 Carl von Einem <ca...@einem.net>
Salut Matthieu,

furai schrieb am 11.04.13 09:57:


Just a quick update : I have finally built the hsi part and it seems
to work fine (here).
So here is a new archive, with the latest revision, compatible with
MacOSX 10.6 to 10.8, 32 and 64 bits.
http://matthieu.desile.free.fr/hugin/Hugin-Release-2013.0.0.6286-fdd381ca1714-10.6.dmg

thanks for your efforts of building binaries for OS X. Yesterday I tried the dmg and copied the contents on my Intel Mac (running 10.6). Both Hugin and PTBatcherGUI won't open, they instantly close and I get this error message (please note the "Dyld Error Message"):

<Snip>


Dyld Error Message:
  Symbol not found: ___progname
  Referenced from: /Users/carl/Applications/hugin/Hugin-Release-2013.0.0.6286-fdd381ca1714-10.6/Hugin.app/Contents/MacOS/../Frameworks/libpano13.2.dylib
  Expected in: /usr/lib/libSystem.B.dylib
 in /Users/carl/Applications/hugin/Hugin-Release-2013.0.0.6286-fdd381ca1714-10.6/Hugin.app/Contents/MacOS/../Frameworks/libpano13.2.dylib
 
<snip>

I had the same on my old 10.6 macbook pro. I assume libpano "didn't  listen" to the minimum deployment target. I vaguely remember I had that before especially when compiling with cmake. Somehow that setting is not taken into account without patching the Makefile.

I will try to test this weekend on that 10.8 macbook.

And if your really got Python to work then that's very nice.

Harry


furai

unread,
Apr 13, 2013, 5:58:12 AM4/13/13
to hugi...@googlegroups.com
Hi,

I am away until monday, so I can not say for sure, but I think I used cmake to build libpano. I will try with configure and post an update as soon as possible.

Cheers,

Matthieu

furai

unread,
Apr 18, 2013, 3:34:17 AM4/18/13
to hugi...@googlegroups.com
Hi,

It seems building for OSX 10.6 on a 10.8 mac can be difficult.

I checked the libpano13 building process and the macosx-min-version=10.6 was set as it should be, I was using ./configure, not cmake as I thought. So, long story short, I got a 10.6 sdk and I built libpano and wxWidgets using this SDK, as I discovered wxWidgets was having a "symbol not found" problem either.

Here is a new build, using the new "version" of the libraries that were causing trouble on 10.6 :

http://matthieu.desile.free.fr/hugin/Hugin-Release-2013.0.0.6290-901c5fd7f02c-10.6.dmg

Cheers,

Matthieu

PS: it seems the hsi part works if you have a working python2.7 environment; on a pristine installation, it complains about site.py not being present. I can work on it, but only later, as I will be away for two weeks.

furai

unread,
Apr 21, 2013, 6:05:49 PM4/21/13
to hugi...@googlegroups.com
Hello,

I said in my last email that the python scripting part did work, but not always. I now better understand how python works (mostly) and I embedded it more completely than before, so that it should work.

Here is a build that should work on 10.6 (thanks Harry and Carl), with the "Actions" menu accessible.

http://matthieu.desile.free.fr/hugin/Hugin-hsi-Release-2013.0.0.6290-901c5fd7f02c-10.6.dmg

There is also a script in HuginTools named hugin_python that can be used to test scripts.

I have not yet embedded wxPython so that crop_cp cannot be used, but others scripts should work.

If there is trouble running hugin_python, you can unset the PYTHONPATH environment variable.

This build is 64bits only, as I found that since I oonly had the 64bits build of gcc, the 32bits version enblend was unusable. Building gcc-4.8 for 32/64bits is doable but it is much more problem than what I want to run into.

Cheers,

Matthieu.

PS: I am now really away for two weeks and I can not be of any help during this time; however, if someone feels like it, all I have done is here :
    https://bitbucket.org/_furai/hugin

the external dependencies are built using these scripts:
    https://github.com/furai/hugin-external-scripts

and I tar'ed the repository :
    http://matthieu.desile.free.fr/hugin/repository-2013-04-21.tar.gz

___matthieu___

unread,
May 7, 2013, 3:05:37 AM5/7/13
to hugi...@googlegroups.com
Hello,

I have built a new version based on the 2013.0 branch that now has Python support for 10.6 and with wxPython embedded, which means that the plugin "Crop Control Points" works.

It is here : http://matthieu.desile.free.fr/hugin/Hugin-Release-2013.0.0.6316-68a477c87b0a-10.6.dmg

It is a 64bits only build, it works on 10.6 and 10.8.

If anyone see any problem, please do not hesitate to report it to me.

The only problems I see are :
  - on 10.6, you have an error if you try to run hugin_python from the command line and import hsi; you can nevertheless import wx (but it's a small consolation)
  - you cannot run the python plugins if you launch Hugin from the dmg.
These problems do not affect the way hugin works, they are only small side problems (for me)

Cheers,

Matthieu

___matthieu___

unread,
May 11, 2013, 10:31:30 AM5/11/13
to hugin and other free panoramic software
Hi,

> The only problems I see are :
>   - on 10.6, you have an error if you try to run hugin_python from the
> command line and import hsi; you can nevertheless import wx (but it's a
> small consolation)

This one I resolved : you can now use hugin_python from the command
line and import wx and hsi.

Here it is :

http://matthieu.desile.free.fr/hugin/Hugin-Release-2013.0.0.6320-53691abbeb55-10.6.dmg

If you run into any trouble, do not hesitate.

Thanks,

Matthieu

___matthieu___

unread,
May 11, 2013, 5:01:36 PM5/11/13
to hugin and other free panoramic software
Hello,

Since I noticed a bug* that I was able to find a patch for, here is a
new build :

http://matthieu.desile.free.fr/hugin/Hugin-Release-2013.0.0.6321-4a43fef669c1-10.6.dmg

Cheers,

Matthieu

*: http://groups.google.com/group/hugin-ptx/browse_thread/thread/23a46125156635dd

Donald Johnston

unread,
May 11, 2013, 5:15:41 PM5/11/13
to hugi...@googlegroups.com
Matthieu … I just tested this level and it works well for me except for the following two points.

1. when I start Hugin there is a whitish-grey rectangular box sitting in front of the "Tip of the Day" window.  I can just see the top of that window enough that I can drag it out from under the rectangle and read what it says.  When I exit the tips window the rectangle also disappears.

2. perhaps you've seen the previous set of emails about --linearmatch that Thomas was helping me with.  The concensus is that the default Control Points Detector under Preferences should be called when using the Align button on the Assistant tab.  It sounds like it works on Thomas' machine (not sure what OS he is running) but isn't working on your build on my Mac.  Does this work on you machine?

Here is my System information from Hugin:

Operating System: Mac OS X (Darwin 12.3.0 x86_64)
Architecture: 64 bit
Free memory: 0 kiB

Hugin
Version: 2013.0.0.6320:53691abbeb55 built by Matthieu DESILE
Path to resources: /Applications/HuginNew/Hugin.app/Contents/Resources/xrc/
Path to data: /Applications/HuginNew/Hugin.app/Contents/Resources/xrc/
Path to public lensfun database: /Applications/HuginNew/Hugin.app/Contents/Resources/lensfun
Path to user lensfun database: /Users/donaldjohnston/.local/share/lensfun

Libraries
wxWidgets: 2.9.3.1
libpano13: 2.9.19 
Boost: 1.46.1
Exiv2: 0.23.0
Lensfun: 0.2.7.0

--
--
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 hugi...@googlegroups.com
To unsubscribe from this group, send email to hugin-ptx+...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/hugin-ptx

---
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+...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.



___matthieu___

unread,
May 12, 2013, 8:27:57 PM5/12/13
to hugin and other free panoramic software
Hello Donald,

On 11 mai, 23:15, Donald Johnston <dgjohns...@accesscomm.ca> wrote:
> Matthieu … I just tested this level and it works well for me except for the following two points.
>
> 1. when I start Hugin there is a whitish-grey rectangular box sitting in front of the "Tip of the Day" window.  I can just see the top of that window enough that I can drag it out from under the rectangle and read what it says.  When I exit the tips window the rectangle also disappears.

I can not reproduce this problem; I remember having it once but I am
now unable to reproduce it.

Does it happen all the time ? Does the problem appear on project
with errors, or with projects containing a lot of images ?
Does it happen if you launch Hugin without opening a project ?

> 2. perhaps you've seen the previous set of emails about --linearmatch that Thomas was helping me with.  The concensus is that the default Control Points Detector under Preferences should be called when using the Align button on the Assistant tab.  It sounds like it works on Thomas' machine (not sure what OS he is running) but isn't working on your build on my Mac.  Does this work on you machine?

I had not read this thread; I will look into it.

Cheers,

Matthieu

___matthieu___

unread,
May 13, 2013, 3:34:41 AM5/13/13
to hugin and other free panoramic software
Hello,

[...]> > 1. when I start Hugin there is a whitish-grey rectangular box
sitting in front of the "Tip of the Day" window.  I can just see the
top of that window enough that I can drag it out from under the
rectangle and read what it says.  When I exit the tips window the
rectangle also disappears.
>
>   I can not reproduce this problem; I remember having it once but I am
> now unable to reproduce it.

I am now having the problem you describe; your two problems are
related.
I will try and find a way to reproduce it.

Cheers,

Matthieu

Donald Johnston

unread,
May 13, 2013, 11:33:27 AM5/13/13
to hugi...@googlegroups.com
Matthieu, to answer the question about starting hugin … I mostly start hugin without a project. That is I start hugin, load images, do align, and create pano. So, as soon as I start hugin I'm getting the triangle problem.

___matthieu___

unread,
May 13, 2013, 7:33:07 PM5/13/13
to hugi...@googlegroups.com
Hi,

I found how to reproduce the problem you're having.

- First, why the default CP settings is not used :

hugin Preferences lives in ~/Library/Preferences. When icpfind is launched, a new set of preferences is created in the $HOME directory, but it is only a minimal one (it has only two sections concerning Autopano and only one control point configuration). As a reminder, it is attached to this post.

In the assistant, when you hit the Align button, the first program used is icpfind, which creates its "empty" preferences file and then this file is used to search the configuration you use. Since it has only one control point configuration in this file, the ones that are defined in $HOME/Library/Preferences/hugin Preferences is not used.

I can reproduce it with the beta one build and my build, using the GUI and the CLI tool.

- Second, why there is a greyish box.

To reproduce this, you have to have a specific combination :
- hugin GUI is set to Advanced or Expert (/GuiLevel=1 or /GuiLevel=2)
- the tip of the day is displayed (/MainFrame/ShowStartTip != 0)
- and the GL Preview Frame is not shown (/GLPreviewFrame/isShown=0)

With my build, it works every time : the splash screen is displayed, the splashscreen is greyed out (I think the image contained and/or the frame is destroyed) the Main Frame appears but the frame that contained the splash screen is still present, though empty.
The tip of the day is then displayed, but under the frame that contained the splash screen.

There are workarounds :
- in Library/Preferences/hugin Preferences, if I change GLPreviewFrame/isShown to 1, the splash screen really disappears
- if I do not display the tip of the day, the splash screen really disappears, even if the GL Preview Frame is not shown.

I can reproduce it with my build every time I have these conditions. I can also reproduce with the beta 1 build, although with more difficulty (it depends which window has the focus, or something like that) which could mean that the order the windows appears in could be important.

Although I know how to reproduce these problems, I tried debugging in Xcode but I can only poke around without really knowing where to look; if someone could point me some directions, I would gladly help.

Thanks,

Matthieu
hugin-Preferences-created-by-icpfind.txt

___matthieu___

unread,
May 14, 2013, 5:05:57 PM5/14/13
to hugi...@googlegroups.com
Hi,


On Tuesday, May 14, 2013 1:33:07 AM UTC+2, ___matthieu___ wrote:
Hi,

I found how to reproduce the problem you're having.

- First, why the default CP settings is not used :

hugin Preferences lives in ~/Library/Preferences. When icpfind is launched, a new set of preferences is created in the $HOME directory, but it is only a minimal one (it has only two sections concerning Autopano and only one control point configuration). As a reminder, it is attached to this post.

In the assistant, when you hit the Align button, the first program used is icpfind, which creates its "empty" preferences file and then this file is used to search the configuration you use. Since it has only one control point configuration in this file, the ones that are defined in $HOME/Library/Preferences/hugin Preferences is not used.

I can reproduce it with the beta one build and my build, using the GUI and the CLI tool.

More on this :

The second "hugin Preferences" file is created on src/hugin1/icpfind/icpfind.cpp::iCPApp::ReadDetectorConfig() on the "config.Flush();" call.

After that, I do not know what to do to investigate further.

Cheers,

Matthieu

David Haberthür

unread,
May 15, 2013, 5:36:16 PM5/15/13
to hugi...@googlegroups.com
Ciao Matthieu.
I wanted to try your build, but the link in your emails below give me an "ERREUR 404 - Document non trouvé" page and I cannot download your build.
Did you remove the files from your webspace?
Greetings from Switzerland,
Habi

David Haberthür

unread,
May 15, 2013, 5:40:52 PM5/15/13
to hugi...@googlegroups.com
Sorry for the too fast email. I've seen that I can just go to http://matthieu.desile.free.fr/hugin/ and download the .dmg from there. Will test it now :)
Habi

___matthieu___

unread,
May 24, 2013, 10:10:23 AM5/24/13
to hugin and other free panoramic software
Hello Donald,

On 13 mai, 17:33, Donald Johnston <dgjohns...@accesscomm.ca> wrote:
> Matthieu, to answer the question about starting hugin … I mostly start hugin without a project.
> That is I start hugin, load images, do align, and create pano.  So, as soon as I start hugin I'm getting the triangle problem.

I have made a new build with a possible solution to the problem you
are facing :

http://matthieu.desile.free.fr/hugin/Hugin-Release-2013.0.0.6282-a9991501efd8-10.6.dmg

If you encounter any other problem with this build, do not hesitate
to tell me,

Cheers,

Matthieu

dgjoh...@accesscomm.ca

unread,
May 24, 2013, 1:34:15 PM5/24/13
to hugi...@googlegroups.com
Thanks Matthieu. I guess I meant "rectangle". I am away from Mac for 2 weeks so will test then.

Sent from my BlackBerry® wireless handheld
Reply all
Reply to author
Forward
0 new messages