[hugin-ptx] Re: Default file locations for Add Images, Open Project File and Save Project dialog boxes

2020-05-20 Thread Stan Tess
Hi and thanks,

I'm not sure why  my save as dialogue was pointing to the temp folder 
except I never completed a full cycle  of stitching with Hugin but with 
more testing I see you were correct in that The save as dialog is using by 
default the folder of the first image.  That behavior is fine withe me but 
the Add images... dialogue points to the last used folder and that is what 
I want to change. Unfortunately the Open... and Add images... dialogue 
boxes point to the same folder. the last used folder.  If you use Open... 
to open the last project repeatedly you may want to keep the existing 
behavior but if you generally navigate to the most recent folder to add 
images and complete the project in one sitting you may want to change that 
behavior.  

Below is a batch script that will change the Add images default folder 
location to the most recent folder in my file structure and open Hugin. You 
may need to make changes to work with your particular file structure but 
this is a start.


@title = "StartHugin"

@echo off

:: A batch script to change the default folder location for  Load images... 
and Open... dialog boxes to the most recent sub folder in a folder and then 
open Hugin

:: set mydate=%date:~10,4%%date:~4,2%%date:~7,2%
set myYear=%date:~10,4%

:: Find the latest folder used
FOR /F " tokens=*" %%i IN ('dir "S:\Digital Photographs\%myYear%" /b /ad-h 
/o-d') DO (
SET a=%%i
GOTO :found
)  

echo No subfolder found
goto :eof


:found


:: Change reg value for actualPath to most resent folder in this Folder 
format:   "S:\Digital Photographs\()\(mmdd)\"  =  "S:\Digital 
Photographs\%myYear%\%a%\"   
::  We also need an extra \ at end to escape the \ character.
reg add "HKCU\Software\hugin" /v actualPath /t REG_SZ  /F  /d "S:\Digital 
Photographs\%myYear%\%a%\\"


:: Start Hugin
START "" "C:\Program Files\Hugin\bin\Hugin.exe" 



REM echo.
REM echo.
REM echo.
REM echo.
REM echo.   StartHugin has run
REM echo.
REM echo.
REM echo.
REM echo.


REM pause




On Tuesday, May 19, 2020 at 11:47:04 AM UTC-4, T. Modes wrote:
>
> Hi,
>
> Am Dienstag, 19. Mai 2020 01:09:52 UTC+2 schrieb Stan Tess:
>>
>> I’ve noticed that both the Add Images dialog box and the Open Project 
>> File dialog box open to the last used folder by default.  
>>
>
> yes, these both dialogs and many other are using the last used folder.
>  
>
>> I have also notice the Save Project File opens to User\AppData\Local\Temp 
>> by default.  I would like to change these locations. 
>>
>
> The save as dialog is using by default the folder of the first image. The 
> default folder and default filename can be chosen in the preferences 
> dialog, tab filename, default project filename.
> Either your images are in the temp folder or you have changed this setting 
> to the temp folder.
>
> Thomas
>

-- 
A list of frequently asked questions is available at: 
http://wiki.panotools.org/Hugin_FAQ
--- 
You received this message because you are subscribed to the Google Groups 
"hugin and other free panoramic software" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to hugin-ptx+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/hugin-ptx/91edecd2-e61d-4963-a105-b56149e6f151%40googlegroups.com.


[hugin-ptx] Re: Default file locations for Add Images, Open Project File and Save Project dialog boxes

2020-05-20 Thread Stan Tess
Thanks,  I agree that saving projects in the same folder as the images is 
what I want to do.  I have code in my batch script that finds the latest 
used folder so I can change the default folder for the *Add Images dialog 
box and the Open Project File dialog box *from the last folder used to the 
newest folder where the newest images will be.   I found that the default 
folders are actually stored and persisted in the registry.  You can change 
the values there but you have to do it before you instantiate Hugin*.  *Once 
Hugin is open it places the values in volatile memory and they aren't 
easily accessible to change.  

On Tuesday, May 19, 2020 at 9:54:38 AM UTC-4, Abrimaal wrote:
>
> The temporary folder is emptied at exit, you can change its location in 
> Preferences -> Filenames -> Temporary dir
>
> Saving projects in the same folder as the images is the best option ever. 
> Believe me, if you had one folder for projects, after creating 5000 
> projects you would never find it.
>
> On Tuesday, May 19, 2020 at 1:09:52 AM UTC+2, Stan Tess wrote:
>>
>> *Hi,*
>>
>>  
>>
>> *I am new to Hugin and I could use some help.  I’ve noticed that both the 
>> Add Images dialog box and the Open Project File dialog box open to the last 
>> used folder by default.  I have also notice the Save Project File opens to 
>> User\AppData\Local\Temp by default.  I would like to change these 
>> locations. Where are these default folder locations stored?  I open Hugin 
>> with a win batch file so I would probably change the default folder 
>> locations in the batch file as needed.  I found a couple of entries in the 
>> registry but changing these folder locations didn’t change the default 
>> locations when I opened any of the three dialog boxes so I assume the 
>> folder location is probably stored in a file somewhere.*
>>
>>  
>>
>> *Thanks and best regards,*
>>
>> *Stan Tess*
>>
>>  
>>
>>  
>>
>

-- 
A list of frequently asked questions is available at: 
http://wiki.panotools.org/Hugin_FAQ
--- 
You received this message because you are subscribed to the Google Groups 
"hugin and other free panoramic software" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to hugin-ptx+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/hugin-ptx/8d8ef705-414f-44b5-a3fa-1d0fbecc020a%40googlegroups.com.


[hugin-ptx] Default file locations for Add Images, Open Project File and Save Project dialog boxes

2020-05-18 Thread Stan Tess
Hi,

 

I am new to Hugin and I could use some help.  I've noticed that both the Add
Images dialog box and the Open Project File dialog box open to the last used
folder by default.  I have also notice the Save Project File opens to
User\AppData\Local\Temp by default.  I would like to change these locations.
Where are these default folder locations stored?  I open Hugin with a win
batch file so I would probably change the default folder locations in the
batch file as needed.  I found a couple of entries in the registry but
changing these folder locations didn't change the default locations when I
opened any of the three dialog boxes so I assume the folder location is
probably stored in a file somewhere.

 

Thanks and best regards,

Stan Tess

 

 

-- 
A list of frequently asked questions is available at: 
http://wiki.panotools.org/Hugin_FAQ
--- 
You received this message because you are subscribed to the Google Groups 
"hugin and other free panoramic software" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to hugin-ptx+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/hugin-ptx/5ec2f5f3.1c69fb81.898b.c3eb%40mx.google.com.


Re: [hugin-ptx] Hugin 2015.0 released

2015-08-18 Thread Stan Green
Habi,
Thank you for the update.  I will be anxiously waiting for the new Mac build.  
The old one would not work on Yosemite.
Thank you,
Stan
> On Aug 18, 2015, at 5:17 PM, David Haberthür  
> wrote:
> 
> Ciao Stan.
> 
>> On 17 Aug 2015, at 01:09, Stan Green  wrote:
>> Are you guys going to build a Mac OS 10 version or did I miss the Mac 
>> compatible release?
> 
> Hugin releases are always built by volunteers of the community.
> Up to now this was Mathieu Desile for OS X, he has not (yet) provided an 
> up-to-date build.
> 
> A not-so-up-to-date how-to for building hugin on OS X can be found on 
> http://wiki.panotools.org/Build_a_MacOSX_Universal_Hugin_bundle_with_Xcode or 
> http://wiki.panotools.org/Hugin_Compiling_OSX
> I cannot provide a binary, since I’m using Homebrew [1] instead of MacPorts 
> or Fink and have not succeeded yet.
> 
> Greetings,
> Habi
> 
> [1]: http://brew.sh
> 
> -- 
> A list of frequently asked questions is available at: 
> http://wiki.panotools.org/Hugin_FAQ
> --- 
> You received this message because you are subscribed to the Google Groups 
> "hugin and other free panoramic software" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to hugin-ptx+unsubscr...@googlegroups.com.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/hugin-ptx/F18B3F85-7EE2-48EA-91FC-6A54E571CE19%40gmail.com.
> For more options, visit https://groups.google.com/d/optout.

-- 
A list of frequently asked questions is available at: 
http://wiki.panotools.org/Hugin_FAQ
--- 
You received this message because you are subscribed to the Google Groups 
"hugin and other free panoramic software" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to hugin-ptx+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/hugin-ptx/4EC440D1-8E07-4F6B-81E4-AB0D6B3AA3D4%40verizon.net.
For more options, visit https://groups.google.com/d/optout.


Re: [hugin-ptx] Hugin 2015.0 released

2015-08-16 Thread Stan Green
Are you guys going to build a Mac OS 10 version or did I miss the Mac 
compatible release?
Stan
> On Aug 16, 2015, at 6:19 PM, ecs1...@gmail.com wrote:

> 
> I was hoping to see a long standing problem get fixed but it's still there.  
> Please see the attached screen shot.  The number boxes for "displayed images" 
> is not just a cosmetic issue, it's also an operational issue if the number of 
> images exceeds 30.  
> 
> 
> 
> On 8/16/2015 2:32 AM, Stefan Peter wrote:
>> Hi list,
>> 
>> On 08.08.2015 10:56, T. Modes wrote:
>>> Hi all,
>>> 
>>> after release candidate 3 we are releasing today Hugin 2015.0
>>> 
>> Hi All
>> 
>> Please find packages of hugin 2015.0.0 for Ubuntu 14.04 (Trusty) and
>> 15.04 (Vivid) and 15.10 in the Hugin PPA Packagers "latest Hugin Build" at
>> https://launchpad.net/~hugin/+archive/ubuntu/hugin-builds 
>> <https://launchpad.net/~hugin/+archive/ubuntu/hugin-builds>
>> 
>> As always these packages are based on the Debian PhotoTools Maintainers
>> work, namely Andreas Metzler: Thank you guys!
>> 
>> As with every Hugin update, it is recommended to reload the preferences
>> (File -> Preferences) in every tab of the Preferences dialog.
>> 
>> Installation instructions:
>> 
>> If you already have this PPA in your packet sources, no additional
>> changes are required, you will get the latest hugin package with your
>> next update run (sudo apt-get update; sudo apt-get upgrade).
>> 
>> Otherwise, please proceed as fallows:
>> 
>> Open a terminal window and issue the following command:
>> 
>> sudo add-apt-repository ppa:hugin/hugin-builds
>> 
>> The title of the PPA and the key used to sign it will be displayed. You
>> will have to confirm the inclusion of this PPA to the package sources of
>> you system by pressing enter.
>> 
>> Afterward, you can update you system using the commands
>> 
>> sudo apt-get update
>> sudo apt-get upgrade
>> 
>> or whatever other method you prefer to update your system.
>> 
>> The same is explained at
>> https://launchpad.net/~hugin/+archive/ubuntu/hugin-builds/ 
>> <https://launchpad.net/~hugin/+archive/ubuntu/hugin-builds/>
>> when you click 'Read about installing' under the title "Adding this PPA
>> to your system"
>> 
>> 
>> Please send bug reports to this list or use
>> https://bugs.launchpad.net/hugin/+filebug 
>> <https://bugs.launchpad.net/hugin/+filebug>
>> to report a bug.
>> 
>> Thank you very much for your participation.
>> 
>> Cheers
>> 
>> Stefan Peter
>> 
> 
> -- 
> Kim Cheung
> 
> -- 
> A list of frequently asked questions is available at: 
> http://wiki.panotools.org/Hugin_FAQ <http://wiki.panotools.org/Hugin_FAQ>
> --- 
> You received this message because you are subscribed to the Google Groups 
> "hugin and other free panoramic software" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to hugin-ptx+unsubscr...@googlegroups.com 
> <mailto:hugin-ptx+unsubscr...@googlegroups.com>.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/hugin-ptx/55D10C8E.9040002%40gmail.com 
> <https://groups.google.com/d/msgid/hugin-ptx/55D10C8E.9040002%40gmail.com?utm_medium=email&utm_source=footer>.
> For more options, visit https://groups.google.com/d/optout 
> <https://groups.google.com/d/optout>.

-- 
A list of frequently asked questions is available at: 
http://wiki.panotools.org/Hugin_FAQ
--- 
You received this message because you are subscribed to the Google Groups 
"hugin and other free panoramic software" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to hugin-ptx+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/hugin-ptx/744122C6-2896-4B79-AA9C-8FC8E980022B%40verizon.net.
For more options, visit https://groups.google.com/d/optout.


Re: [hugin-ptx] 2014.0.0

2015-02-10 Thread Stan Green
Here is the latest.  
1.  As I reported earlier, PS CS6 (Photomerge) created a painless pano and the 
CS6 control point detector had no problems finding the control points and 
creating the pano.
2.  I went back to 2012.0.0 and no longer got the wxWidget Debug Alert, 
however, CPfind would not work autonomously and I had to manually select the 
control points.  It should be noted the last time I ran hugin, I was using 
OS10.8, I am now using OS10.10.  
3.  Based on my observations I have concluded that 2014.0.0 will not run with 
OS 10.10 (wxWidget Debug Alert) and I believe that CPfind that used to run 
satisfactorily under OS10.8 will no longer function under OS10.10.  It appears 
that OS10.10 is the culprit, i.g., when Apple went to 10.10 something broke.
I am hoping you guys can correct these apparent bugs in a timely manner, but in 
the mean time I will process my panos in CS6.
Thanks for all you help,
Stan

> On Feb 10, 2015, at 12:41 AM, Terry Duell  wrote:
> 
> Hello David,
> 
> On Tue, 10 Feb 2015 16:34:50 +1100, David W. Jones  <mailto:gnomeno...@gmail.com>> wrote:
> 
>> On 02/09/2015 11:01 AM, Terry Duell wrote:
>>> On Tue, 10 Feb 2015 06:42:06 +1100, Gnome Nomad 
>>> wrote:
>>> 
>>>>> There does seem to something amiss with the way your mailer quotes the
>>>> message you are replying to, or the way my mailer handles it. It was very
>>>> difficult to sort out what was quoted text and what was your response in
>>>> much of your post.
>>> 
>>> The above para, now quoted by my mailer gives a clue as to how your mail
>>> is rendered here.
>>> Only the first line of the para was quoted, the rest appeared unquoted.
>>> 
>>>> I don't know - outside of the linewrap w/o quoting each line above, looks
>>>> OK to me. Will bcc my regular address & see what Thunderbird makes of it.
>>>> 
>>> 
>>> Cheers,
>> 
>> And replying using Thunderbird.
> 
> which looks OK here.
> 
>> 
>> When I look at your original email (to which mine was a reply) in 
>> Thunderbird, there is no blank line between the "It was tongue-in-cheek" et 
>> al line and "There does seem to be something amiss" et al. It shows that way 
>> in both Google's Gmail app and Thunderbird.
>> 
>> I know if I told Thunderbird to rewrap the email, it would merge those two 
>> paragraphs together.
>> 
>> I blame the pollution of the practical email standards on Outlook. ;)
>> 
> 
> You are probably right.
> 
> Cheers,
> -- 
> Regards,
> Terry Duell
> 
> -- 
> A list of frequently asked questions is available at: 
> http://wiki.panotools.org/Hugin_FAQ <http://wiki.panotools.org/Hugin_FAQ>
> ---You received this message because you are subscribed to the Google Groups 
> "hugin and other free panoramic software" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to hugin-ptx+unsubscr...@googlegroups.com 
> <mailto:hugin-ptx+unsubscr...@googlegroups.com>.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/hugin-ptx/op.xttt27j7rs0ygh%40localhost.localdomain
>  
> <https://groups.google.com/d/msgid/hugin-ptx/op.xttt27j7rs0ygh%40localhost.localdomain>.
> For more options, visit https://groups.google.com/d/optout 
> <https://groups.google.com/d/optout>.

-- 
A list of frequently asked questions is available at: 
http://wiki.panotools.org/Hugin_FAQ
--- 
You received this message because you are subscribed to the Google Groups 
"hugin and other free panoramic software" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to hugin-ptx+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/hugin-ptx/B718B73F-E279-4B71-B415-58D51AC6ADFC%40verizon.net.
For more options, visit https://groups.google.com/d/optout.


Re: [hugin-ptx] 2014.0.0

2015-02-09 Thread Stan Green
Terry,
I am on a Mac (OS-10.10.2).  The site I used for the initial down load of 
2014.0.0 was: http://hugin.sourceforge.net/download/ 
<http://hugin.sourceforge.net/download/>  


> On Feb 9, 2015, at 4:08 PM, Terry Duell  wrote:
> 
> Hello Stan,
> 
> On Tue, 10 Feb 2015 06:42:29 +1100, Stan Green  wrote:
> 
>> Going to JPEGs did NOT work.  I received the wxWidgets Debug Alert as soon 
>> as I started hugin, even BEFORE I loaded the images.
> 
> OK, not good.
> 
>> Is there a different down load site?
> 
> I am guessing that you have used 
> <http://sourceforge.net/projects/hugin/files/hugin/hugin-2014.0/> to get a 
> Windows version, is that correct?
> If so, you might try one of the other Windows builds.
> If not Windows, then you will have to help us with info on which OS and from 
> where?
> 
> Cheers,
> -- 
> Regards,
> Terry Duell
> 
> -- 
> A list of frequently asked questions is available at: 
> http://wiki.panotools.org/Hugin_FAQ
> ---You received this message because you are subscribed to the Google Groups 
> "hugin and other free panoramic software" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to hugin-ptx+unsubscr...@googlegroups.com.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/hugin-ptx/op.xts6cwzvrs0ygh%40localhost.localdomain.
> For more options, visit https://groups.google.com/d/optout.

-- 
A list of frequently asked questions is available at: 
http://wiki.panotools.org/Hugin_FAQ
--- 
You received this message because you are subscribed to the Google Groups 
"hugin and other free panoramic software" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to hugin-ptx+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/hugin-ptx/4FEAF289-BB3E-4294-83EA-700E127A691F%40verizon.net.
For more options, visit https://groups.google.com/d/optout.


Fwd: [hugin-ptx] 2014.0.0

2015-02-09 Thread Stan Green
Just tried it in Photoshop CS6, please forgive my sin.  Life is good! It worked 
painlessly (PSD) required no manual loading of control points and best of all, 
I received no nasty widget alerts.
At this point I suspect I have a corrupted hugin download file.  Does anybody 
have a suggestion where a clean 2014.0.0 download resides?
Thanks,
Stan

> Begin forwarded message:
> 
> Date: February 9, 2015 at 2:42:29 PM EST
> From: Stan Green 
> Subject: Re: [hugin-ptx] 2014.0.0
> To: hugin-ptx@googlegroups.com
> Reply-To: hugin-ptx@googlegroups.com
> 
> Going to JPEGs did NOT work.  I received the wxWidgets Debug Alert as soon as 
> I started hugin, even BEFORE I loaded the images.
> Is there a different down load site?
> Should I go back to 2012.0.0?
> Well there is always PS CS6.
> 
>> On Feb 9, 2015, at 3:42 AM, Terry Duell  wrote:
>> 
>> On Mon, 09 Feb 2015 17:21:19 +1100, Gnome Nomad  wrote:
>> 
>> [snip]
>> 
>>> 
>>>>> What happened to the idiot proof interface?
>>>> 
>>>> Probably just trying to proof against a new set of idiots :-)
>>>> Changes to the hugin gui interface were adopted in hugin-2013.0.0 and
>>> briefly described in the tutorial here <
>>> http://hugin.sourceforge.net/tutorials/new-gui/en.shtml>.
>>> 
>>> I don't think the intent was "idiot-proofing." (Sometimes I think the  2013+
>>> UI is a bit idiotic itself, such as the split between the Preview &
>>> Panorama editing screens.) But it's a work in progress, as they say.
>>> 
>> 
>> It was tongue-in-cheek, it did have a smiley.
>> There does seem to something amiss with the way your mailer quotes the 
>> message you are replying to, or the way my mailer handles it. It was very 
>> difficult to sort out what was quoted text and what was your response in 
>> much of your post.
>> 
>> Cheers,
>> -- 
>> Regards,
>> Terry Duell
>> 
>> -- 
>> A list of frequently asked questions is available at: 
>> http://wiki.panotools.org/Hugin_FAQ
>> ---You received this message because you are subscribed to the Google Groups 
>> "hugin and other free panoramic software" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to hugin-ptx+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/hugin-ptx/op.xtr7tczcrs0ygh%40localhost.localdomain.
>> For more options, visit https://groups.google.com/d/optout.
> 
> -- 
> A list of frequently asked questions is available at: 
> http://wiki.panotools.org/Hugin_FAQ
> --- 
> You received this message because you are subscribed to the Google Groups 
> "hugin and other free panoramic software" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to hugin-ptx+unsubscr...@googlegroups.com.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/hugin-ptx/9B6BA951-C7B9-4BEC-9159-82C4B5D5A56E%40verizon.net.
> For more options, visit https://groups.google.com/d/optout.

-- 
A list of frequently asked questions is available at: 
http://wiki.panotools.org/Hugin_FAQ
--- 
You received this message because you are subscribed to the Google Groups 
"hugin and other free panoramic software" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to hugin-ptx+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/hugin-ptx/DCD888F6-B962-4DB1-82F7-E52696B7F657%40verizon.net.
For more options, visit https://groups.google.com/d/optout.


Re: [hugin-ptx] 2014.0.0

2015-02-09 Thread Stan Green
Going to JPEGs did NOT work.  I received the wxWidgets Debug Alert as soon as I 
started hugin, even BEFORE I loaded the images.
Is there a different down load site?
Should I go back to 2012.0.0?
Well there is always PS CS6.

> On Feb 9, 2015, at 3:42 AM, Terry Duell  wrote:
> 
> On Mon, 09 Feb 2015 17:21:19 +1100, Gnome Nomad  wrote:
> 
> [snip]
> 
>> 
 What happened to the idiot proof interface?
>>> 
>>> Probably just trying to proof against a new set of idiots :-)
>>> Changes to the hugin gui interface were adopted in hugin-2013.0.0 and
>> briefly described in the tutorial here <
>> http://hugin.sourceforge.net/tutorials/new-gui/en.shtml>.
>> 
>> I don't think the intent was "idiot-proofing." (Sometimes I think the  2013+
>> UI is a bit idiotic itself, such as the split between the Preview &
>> Panorama editing screens.) But it's a work in progress, as they say.
>> 
> 
> It was tongue-in-cheek, it did have a smiley.
> There does seem to something amiss with the way your mailer quotes the 
> message you are replying to, or the way my mailer handles it. It was very 
> difficult to sort out what was quoted text and what was your response in much 
> of your post.
> 
> Cheers,
> -- 
> Regards,
> Terry Duell
> 
> -- 
> A list of frequently asked questions is available at: 
> http://wiki.panotools.org/Hugin_FAQ
> ---You received this message because you are subscribed to the Google Groups 
> "hugin and other free panoramic software" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to hugin-ptx+unsubscr...@googlegroups.com.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/hugin-ptx/op.xtr7tczcrs0ygh%40localhost.localdomain.
> For more options, visit https://groups.google.com/d/optout.

-- 
A list of frequently asked questions is available at: 
http://wiki.panotools.org/Hugin_FAQ
--- 
You received this message because you are subscribed to the Google Groups 
"hugin and other free panoramic software" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to hugin-ptx+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/hugin-ptx/9B6BA951-C7B9-4BEC-9159-82C4B5D5A56E%40verizon.net.
For more options, visit https://groups.google.com/d/optout.


Re: [hugin-ptx] 2014.0.0

2015-02-08 Thread Stan Green
Terry,
Thanks for your help.  How are things in Oz?
Stan

> On Feb 8, 2015, at 9:09 PM, Terry Duell  wrote:
> 
> Hello Stan,
> 
> On Mon, 09 Feb 2015 12:03:45 +1100, Stan Green  wrote:
> 
>> I always wait at least one year before I download the next version.  Today I 
>> went from 2012.0.0 to 2014.0.0 and tried to generate a pano on a set of Raw 
>> images that I had stored in Light Room.  No, I did not try to use Raw 
>> images, I first converted them to TIFFs and moved them to the desk top.
> 
> What OS, and where did you get your copy of hugin-2014.0.0? OS10.10.2, I got 
> my copy at: http://hugin.sourceforge.net/download/  

> 
>> 
>> The first problem I encountered is shown on the following screen shot.  I 
>> was not sure what to do so I chose “Cancel”.  BTW, it did not suppress 
>> further warnings, I received the alert several more times.
>> 
> 
> I have not seen this before.
> I am guessing that this means you have a hugin built with debugging 'on', and 
> that there is some problem with WxWidgets.
> Others may know better.
> 
>> 
>> 
>> The second problem was that I was forced to manually select the control 
>> points.  I was testing the 2015.0.0 on a set of TIFFs that I had previously 
>> used to create a pano under 2012.0 where I had not encountered any problems. 
>>  It was not a great pano but it ran with no problems.
> 
> Can you elaborate on "...forced to manually select control points”? I had to 
> manually select the control points,  As far as I could tell CPFind did not 
> find the Cps.
> Did CPFind not return any control points, or did something else happen?
> 
>> 
>> The third problem (I gave up at this point) was that when I selected “Create 
>> panorama” I saw the following screen:
>> 
> 
> OK, that's expected,
> 
>> 
>> Followed by:
>> 
> 
> This screen suggests that hugin hasn't been able to read the metadata it 
> needs from your input images, i.e. it doesn't seem to know about the hfov, 
> which probably affected the finding of control points. At this point you 
> could enter a hfov= 50 (say) each time you are asked, and see what happens.
> I would have expected hugin to pop up a dialog box when you first loaded your 
> images, asking for the hfov, if it wasn't able to figure it from the image 
> metadata.
> Can you try conversion from RAW to JPEG and pass the JPEGs to hugin and see 
> if this makes any difference.
> You might also try the "Advanced" or 'expert" interface and see if you get 
> asked for the hfov for each image when you use "Add images".
>> 
>> What happened to the idiot proof interface?
> 
> Probably just trying to proof against a new set of idiots :-)
> Changes to the hugin gui interface were adopted in hugin-2013.0.0 and briefly 
> described in the tutorial here 
> <http://hugin.sourceforge.net/tutorials/new-gui/en.shtml>.
> 
> Cheers,
> -- 
> Regards,
> Terry Duell
> 
> -- 
> A list of frequently asked questions is available at: 
> http://wiki.panotools.org/Hugin_FAQ
> ---You received this message because you are subscribed to the Google Groups 
> "hugin and other free panoramic software" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to hugin-ptx+unsubscr...@googlegroups.com.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/hugin-ptx/op.xtrpl2o1rs0ygh%40localhost.localdomain.
> For more options, visit https://groups.google.com/d/optout.

-- 
A list of frequently asked questions is available at: 
http://wiki.panotools.org/Hugin_FAQ
--- 
You received this message because you are subscribed to the Google Groups 
"hugin and other free panoramic software" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to hugin-ptx+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/hugin-ptx/5AFFC166-9017-4D3D-98E0-A7E042122246%40verizon.net.
For more options, visit https://groups.google.com/d/optout.


[hugin-ptx] Using Hugin with LightRoom

2014-07-11 Thread Stan Green
Has anybody worked out an easy way to create a panorama using Hugin in 
combination with Light Room 5 without having to first export the images to the 
desktop?

-- 
A list of frequently asked questions is available at: 
http://wiki.panotools.org/Hugin_FAQ
--- 
You received this message because you are subscribed to the Google Groups 
"hugin and other free panoramic software" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to hugin-ptx+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/hugin-ptx/AA5C3851-51FB-452C-8B33-64145E78E7E0%40verizon.net.
For more options, visit https://groups.google.com/d/optout.


Re: [hugin-ptx] Hugin 2011.4 giving me fits

2012-11-09 Thread stan
Carl,
I've given up for now.  
I was able to start at the left and create a fairly decent pano using 6 images. 
 When I added the 7th image the pano folded back on its self.  I then went to 
the right side and created a pano using 6 images, not too bad but it became 
clear that the waves were causing weird results in spite of manually selecting 
the CPs.  I was planning to send the pile garbage to you via DropBox but 
DropBox has locked up my machine.  Bottom line, I will take a new set of shots 
(without waves) and try again later.
Thanks for you help,
Stan


-- 
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


Re: [hugin-ptx] Hugin 2011.4 giving me fits

2012-11-09 Thread stan
How do you suggest I up load the images, I will change them to JPEG in order to 
keep the size down.  
At the risk of blasphemy I went to Photo merge in PS 5.5, this was tediously, 
creepy, crawly slow (unacceptably, I had time to go up stairs and make a second 
cup of coffee and finished it before PS completed the operation) but PS found 
the CPs and the horizon was flat; the color was good too.
On Nov 9, 2012, at 9:26 AM, Carl von Einem wrote:

> Surrender not accepted for such a simple partial panorama... ;-)
> 
> I'm not sure if one can expect good control point detection in the center 
> images of your panorama. Waves are always a changing and yet so similar ;-)  
> I did not use the waves, I manually selected CP features in the rocks.
> For you scenario you'll need some manual alignment via the Fast Preview 
> window. Hope you didn't you zoom during taking the shots? (Did not zoom or 
> otherwise alter the FOV) Make sure they all use the same fov. Did you shoot 
> them handheld? I used a home made NPP on my tripod. Wouldn't be a problem, 
> though.
> 
> I also had to tweak the foggy horizon of this panorama and carefully select 
> some CPs manually:
> http://worldwidepanorama.org/wwp_rss/go/n7775  I like the shot, it looked 
> more complicated than mine.
> 
> In your case I'd reset all values (Camera and Lens tab) and step by step 
> optimize  while looking for some nasty misplaced CPs. One problem I 
> encountered while manually selecting the CPs was that Hugin kept trying to 
> move them some place other than the feature I selected.
> 
> How about uploading the complete project somewhere so someone can have a look 
> at it?
> 
> Cheers,
> Carl
> 
> stan schrieb am 09.11.12 14:44:
>> Carl,
>> I surrender!  This is white flag time.
>> I got the Autopano-sift to function but it too has trouble
>> finding the CPs, even in locations where there is good contrast
>> and the CP features are sharp.  As for the result, take a look
>> at the attached screen shot, there are no words in English to
>> describe this mess.
>> Stan
> 
> complete (hijacked) thread is here
> https://groups.google.com/group/hugin-ptx/browse_thread/thread/31ac07859a5ae43a
> 
> -- 
> 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

-- 
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


Re: [hugin-ptx] Hugin 2011.4 giving me fits

2012-11-09 Thread stan
Harry,
I followed the instructions described in the "Read me folder", shown in red 
below.  The Installer automatically placed the executables in the following 
location: User/Library/Application support/Hugin/Autopano.  However, when I 
started Hugin and went to Preferences the executables are listed as 
"Configured, not installed", see the attached screen shot.   How do I get Hugin 
2012.0 to recognize the location that the Installer selected?  I never 
experienced this problem in any of the previous versions of Hugin.
Stan

AutoCP binary Installers for Hugin. 

In this dmg you will you will find:
- an "Install ..." application that will install the binary or binaries
- and the binary or binaries itself in the Generator folder.

You can either double click the "Install.."  application or drop
the plugin onto the Install application.

After installtion you can configure the AutoCP generator. You can create 
multiple configurations based on one AutoCP generator.

You start Hugin, you load your images, select the AutoCP generator 
configuration of your choice and click "Create Control Points" to use the 
plugin.


-- 
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] Other CP finders

2012-11-08 Thread Stan Green
Harry,

I found Autopano-Sift-c and Panomatic.  I down loaded the files and when I 
selected install they went to: User/Library/Application support/Hugin/Autopano. 
 However, when I started Hugin and went to preferences they are listed as 
"Configured, not installed", see the attached screen shot.  Where should they 
be and how do I go about getting them there?

Stan

-- 
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
<>

Re: [hugin-ptx] Hugin 2011.4 giving me fits

2012-11-08 Thread stan
Can you give me a hint where to find Autopano-sift-c and panomatic.


On Nov 8, 2012, at 4:41 PM, Harry van der Wolf wrote:

> 
> 
> 2012/11/8 stan 
> Harry,
> Vertical line was checked I set Preferences to "Default".  I deselected 
> "Detect Vertical Line" in Preferences and reran Hugin, "Roller Coaster" 
> effect remains.  CPfind still has trouble founding the Control Points; 
> required some manual intervention. Perhaps I should consider reloading 
> Autopano-sift-C or Panomatic?
> Thanks,
> Stan
> 
> 
> Yes, you can always try that. 
> They all use different algorithms. one algorithm might work better in one 
> situation then another.
> I can't give you a best solution. 
> 
> 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

-- 
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


Re: [hugin-ptx] Hugin 2011.4 giving me fits

2012-11-08 Thread stan
Harry,
Vertical line was checked I set Preferences to "Default".  I deselected "Detect 
Vertical Line" in Preferences and reran Hugin, "Roller Coaster" effect remains. 
 CPfind still has trouble founding the Control Points; required some manual 
intervention. Perhaps I should consider reloading Autopano-sift-C or Panomatic?
Thanks,
Stan


On Nov 8, 2012, at 8:22 AM, Harry van der Wolf wrote:

> 
> 
> 2012/11/8 Harry van der Wolf 
> In your Preferences, do you have vertical linefind on? If so, switch it off 
> and try again please.
>  
> Harry
> 
> To give some extra info: vertical linefind was NOT in 2010.4 and appeared (as 
> far as I can remember in 2011.4). Vertical linefind is really excellent when 
> making panos with vertical lines in it (I assume you guessed that one 
> already) like buildings and so on, but gives me headaches in landscapes, 
> especially if you have not really 90 degree vertical angles like trees. As 
> hugin tries to morph your images to make them fit, you will immediately get a 
> distorted hoizon.
> Maybe that's happening in your pano even though I don't see a "vertical 
> looking" line in your pano apart from "maybe" the vertical shoulders of some 
> of the rocks.
>  
> 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

-- 
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


Re: [hugin-ptx] Hugin 2011.4 giving me fits

2012-11-07 Thread stan
Absolutely set ALL the prefs to default.  I really loved using 2010.4, 2012.0 
not so sure.

On Nov 7, 2012, at 7:25 PM, Carlos Eduardo G. Carvalho (Cartola) wrote:

> Hi Stan,
> 
> just to be sure, have you done this step Harry suggested? "In 2011.4 (but 
> also if you use the new 2012.0), you might also try to first to set all 
> preferences to their defaults on all the tabs of the Preferences screen."
> 
> Cheers,
> 
> 
> Carlos E G Carvalho (Cartola)
> http://cartola.org/360
> http://www.panoforum.com.br/
> 
> 
> 
> 2012/11/7 stan 
> Harry,
> 
> 
> here is a screen shot of the pano from 2012.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 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
> 
> 
> 
> 
> Here is a screen shot of the pano from 2010.4
> 
> 
> 
> 
> 
> Here is the pto of the 2012.0 effort:
> 
> 
> The set-up with 2010.4 was effortless, Hugin found all of the Control points 
> and stitched the image with no problem.  The set-up with 2012.0 is driving me 
> crazy, CPfind is having problems finding the control points and the image is 
> self explanatory.
> 
> My image source is a Canon 24/105 lens.  I do not use Fisheye.  I guess you 
> would call my desired pano to be about 180 degrees (in this example 13 images 
> wide x 1 image high)
> 
> 
> Thanks for all your patience and help,
> Stan
> 
> 
> 
> On Nov 7, 2012, at 5:34 PM, Harry van der Wolf wrote:
> 
>> 
>> 
>> 2012/11/7 stan 
>> 
> 
>> Do you think that I should go back to 2010.4?
>> 
>> Stan
>> 
>> No,
>> 
>> I think you should share your pto with us and you should give some 
>> explanation of what source images you use like fisheye or rectilineair, and 
>> what kind of panorama you are try to achieve, like full 360x180, 360 or 
>> partial.
>> 
>> Some setups are more difficult then others.
>> 
>> 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
> 
> 
> 
> 
> -- 
> 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

-- 
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


Re: [hugin-ptx] Hugin 2011.4 giving me fits

2012-11-07 Thread stan
Harry,

Thanks for your response.  In your email you mentioned that there was a problem 
with "Mountain Lion".  However, I am using OS 10.7.5 (Lion) not 10.8.

I just down loaded 2012.0 and I am not impressed.  I set all of the preferences 
to "Default" and used CPfind to create a quick-look pano.  After spending 
considerable time manually finding Cps that CPfind was unable to find and then 
moref time in the Control Point Table discarding some badly mismatched control 
points (BTW, I then had to go back and manually select additional Cps) I ended 
up with a quick-look pano that has a horizon that looks like roller coaster.  
When I attempted to create the final pano I encountered a Tiff Library warning 
but ultimately got the final pano.  On the "good news" side, the color 
rendition across the 13 images is MUCH better with 2012, however, the horizon 
is ugly.   Version 2010.4 created a "flat horizon" pano with no problems but 
had an ugly color and brightness shift across the scene.  

Do you think that I should go back to 2010.4?

Stan


On Nov 7, 2012, at 1:46 AM, Harry van der Wolf wrote:

> Hi Stan,
> 
> 
> First of all: Version 2012.0 has just been released and Yesterday evening the 
> 2012 bundle has been uploaded. You might just have missed it.
> 
> 
> When switching from 2010.4 to 2011.4 I assume you didn't read the "Read Me 
> First" document inside the dmg. It describes that the integrated openmp 
> enabled enblend is not compatible on (Mountain) Lion. You should use the 
> non-openmp version.
> 
> In 2011.4 (but also if you use the new 2012.0), you might also try to first 
> to set all preferences to their defaults on all the tabs of the Preferences 
> screen.
> 
> And finally: Since 2011.2 cpfind is the high-quality inthegrated control 
> point detector. autopano-sift-C and pan-o-matic are deprecated. Not because 
> they are worse but they are restricted by all kinds of patents.
> 
> 
> 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

-- 
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 2011.4 giving me fits

2012-11-06 Thread stan
I just down loaded Hugin 2011.4 and I am encountering a great many problems, 
for example under Hugin 2010.4 with a 13 image scene there were no problems 
automatically locating the control points (Cps) and it was easily stitched.  I 
selected the same set of 13 TIFS and using 2011.4 I was forced to manually 
identify the Cps, in spite of the fact that I could easily see the CPs and they 
were quite sharp.  When I tried to manually select the Cps, Hugin kept putting 
them some place other than the spot I selected.  After a long and tedious 
stitching I finally achieved a pano that looked satisfactory and I then 
selected the button to finalize the pano.  That is when the real problems 
began, specifically Hugin now continues to crash when I try to open the pano.  
I have attached the failure log.

Process: Hugin [65336]
Path:/Applications/Hugin/Hugin.app/Contents/MacOS/Hugin
Identifier:  net.sourceforge.hugin.Hugin
Version: 2011.4.0 (cf9be9344356)
Code Type:   X86 (Native)
Parent Process:  launchd [134]

Date/Time:   2012-11-06 17:43:29.229 -0500
OS Version:  Mac OS X 10.7.5 (11G63)
Report Version:  9

Interval Since Last Report:  2802951 sec
Crashes Since Last Report:   6
Per-App Interval Since Last Report:  5085 sec
Per-App Crashes Since Last Report:   5
Anonymous UUID:  D065BF1B-3E60-4902-8344-FB84B681A708

Crashed Thread:  0  Dispatch queue: com.apple.main-thread

Exception Type:  EXC_CRASH (SIGABRT)
Exception Codes: 0x, 0x

Application Specific Information:
objc[65336]: garbage collection is OFF
abort() called

Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
0   libsystem_kernel.dylib  0x9b40a9c6 __pthread_kill + 10
1   libsystem_c.dylib   0x90259f78 pthread_kill + 106
2   libsystem_c.dylib   0x9024abdd abort + 167
3   net.sourceforge.hugin.Hugin 0x001b877d celeste::SafeAbs(int) + 125
4   net.sourceforge.hugin.Hugin 0x00039428 
boost::shared_ptr::operator->() const + 56
5   net.sourceforge.hugin.base_wx   0x011650a7 
HuginBase::ImageCache::postEvent(boost::shared_ptr,
 boost::shared_ptr) + 183
6   net.sourceforge.hugin.Hugin 0xfa95 
huginApp::relayImageLoaded(ImageReadyEvent&) + 85
7   libwx_macu-2.8.0.7.0.dylib  0x005dbbb2 
wxEvtHandler::ProcessEventIfMatches(wxEventTableEntryBase const&, 
wxEvtHandler*, wxEvent&) + 114
8   libwx_macu-2.8.0.7.0.dylib  0x005dbd2f 
wxEventHashTable::HandleEvent(wxEvent&, wxEvtHandler*) + 111
9   libwx_macu-2.8.0.7.0.dylib  0x005dc60f 
wxEvtHandler::ProcessEvent(wxEvent&) + 207
10  libwx_macu-2.8.0.7.0.dylib  0x005dc6ac 
wxEvtHandler::ProcessPendingEvents() + 108
11  libwx_macu-2.8.0.7.0.dylib  0x0054ed09 
wxAppConsole::ProcessPendingEvents() + 105
12  com.apple.CoreFoundation0x90e5913f 
__CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 15
13  com.apple.CoreFoundation0x90e58af6 __CFRunLoopDoSources0 + 246
14  com.apple.CoreFoundation0x90e829c8 __CFRunLoopRun + 1112
15  com.apple.CoreFoundation0x90e821dc CFRunLoopRunSpecific + 332
16  com.apple.CoreFoundation0x90e82088 CFRunLoopRunInMode + 120
17  com.apple.HIToolbox 0x9530d543 RunCurrentEventLoopInMode + 
318
18  com.apple.HIToolbox 0x954aa4e1 GetNextEventMatchingMask + 
493
19  com.apple.HIToolbox 0x954aa847 WNEInternal + 434
20  com.apple.HIToolbox 0x954a9b14 WaitNextEvent + 53
21  com.apple.HIToolbox 0x9548a422 ModalDialog + 1638
22  com.apple.HIToolbox 0x954922e1 RunStandardAlert + 741
23  libwx_macu-2.8.0.7.0.dylib  0x00643994 wxMessageDialog::ShowModal() 
+ 2388
24  libwx_macu-2.8.0.7.0.dylib  0x005e302b wxMessageBox(wxString 
const&, wxString const&, long, wxWindow*, int, int) + 107
25  net.sourceforge.hugin.Hugin 0x0011d3c2 
PT::wxLoadPTProjectCmd::execute() + 3938
26  net.sourceforge.hugin.Hugin 0x000297f8 
CommandHistory::addCommand(AppBase::Command*, bool) + 104
27  net.sourceforge.hugin.Hugin 0x000bc47c 
MainFrame::LoadProjectFile(wxString const&) + 1628
28  net.sourceforge.hugin.Hugin 0x00014458 huginApp::OnInit() + 9496
29  net.sourceforge.hugin.Hugin 0x000157b1 wxAppConsole::CallOnInit() + 
17
30  libwx_macu-2.8.0.7.0.dylib  0x00588870 wxEntry(int&, wchar_t**) + 
112
31  net.sourceforge.hugin.Hugin 0xf9a8 main + 24
32  net.sourceforge.hugin.Hugin 0xf736 start + 258
33  net.sourceforge.hugin.Hugin 0xf65d start + 41

Thread 1:: Dispatch queue: com.apple.libdispatch-manager
0   libsystem_kernel.dylib  0x9b40b90a kevent + 10
1   libdispatch.dylib   0x901e4e04 _dispatch_mgr_invoke + 969
2   libdispatch.dylib   0x901e3853 _dispatch_mgr_thread + 53

Thread 2:
0   libsystem_k

[hugin-ptx] Is 2011.4.0 compatible with "Mountain Lion"?

2012-08-04 Thread stan
Is 2011.4.0 compatible with "Mountain Lion"?

-- 
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


Re: [hugin-ptx] Re: hugin plugin interface - developers please liaise

2011-01-16 Thread stan
Hi Terry,
Thanks for your help.  It WORKED!
I loaded "cpfind".  Is this your recommended CP generator?
Thanks again,
Stan
On Jan 16, 2011, at 5:14 PM, Terry Duell wrote:

> Hullo Stan,
> 
> On Mon, 17 Jan 2011 09:11:21 +1100, stan  wrote:
> 
>> Harry,
>> I just downloaded Hugin 2010.4.0 and I must be having a senior moment 
>> because the CP generator got lost.  Where do I go to get them again and how 
>> do you recommend I install them?
> 
> Try saving your '.hugin' file, then go to preferences > Control point 
> Detectors and select 'Load defaults', and see if that fixes the problem.
> 
> Cheers,
> -- 
> Regards,
> Terry Duell
> 
> -- 
> 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

-- 
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


Re: [hugin-ptx] Re: hugin plugin interface - developers please liaise

2011-01-16 Thread stan
Harry, 
I just downloaded Hugin 2010.4.0 and I must be having a senior moment because 
the CP generator got lost.  Where do I go to get them again and how do you 
recommend I install them?
Thanks,
Stan

-- 
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


Re: [hugin-ptx] Parallax correction.

2010-02-09 Thread stan
I recently attempted to build one for my Sigma 28-200.  It appeared that the 
entrance pupil location corresponded to a red ring near the front of the lens.  
So I assumed that it was the pupil location and made the device with a fixed 
rail.  I came pretty close, there is a slight alignment error at 28mm.  When I 
"zoomed" to about 30mm the alignment error became very small.   I really do not 
know how good is good enough, but since I do mostly landscapes  I am declaring 
success.
Stan


-- 
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


Re: [hugin-ptx] Trouble with Hugin stitching or is it blending?

2010-01-10 Thread stan
Allan, 
Thanks for you response.  
I think I followed your suggestions;  I went to stitcher and deselected 
"Blended & fused panorama".  I now get a new set of weirdness.  Is there some 
way that I could get my set of images directly to you?

Stan

On Jan 10, 2010, at 2:06 PM, AKS-Gmail-IMAP wrote:

> Stan,
> 
> The startup Stitcher setting for OS X Hugin has "Blended and fused panorama" 
> selected in the Exposure Function settings section. You should not have 
> anything selected for Exposure Function for images that are not stacks. This 
> startup setting is a pitfall for new Hugin users who might assume that a 
> startup setting is the recommended mode. Perhaps this is what is happening. 
> Your results should be stunning.
> 
> BTW, if you do want to use Exposure optimization, make this step the last 
> step prior to stitching and save your project before Exposure optimization 
> step. I do not recall an undo being added for Exposure optimization and its 
> results are sometimes undesirable.  I agree about this one!!
> 
> Allan
> 
> On Jan 10, 2010, at 11:42 AM, Stan Green wrote:
> 
>> I am a new Hugin User and I have encountered a vexing problem.   I use MAC 
>> OS-10.6.2
>> I have a six sequence set of long distance pictures taken in Alaska of the 
>> Wrangel-St Elias National Park. When I use CS3 to stitch, the result appears 
>> to be seamless and all segments are uniform in exposure, albeit dark. 
>> However, when I used Hugin the result is weird. The anchor pic (pic 1) is 
>> VERY much lighter than the other five and there is a obvious blend seam. The 
>> exposure for pictures 2 thru 6 are uniform (somewhat dark) and no blend 
>> seam.  The exposure for pic 1 is OK,  but is much brighter than the other 
>> five.  When I repeated this sequence again I got a different set of light 
>> and dark images.
>> HELP!
>> Stan
>> -- 
>> 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
> 
> -- 
> 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

-- 
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] Trouble with Hugin stitching or is it blending?

2010-01-10 Thread Stan Green
I am a new Hugin User and I have encountered a vexing problem.   I use MAC 
OS-10.6.2
I have a six sequence set of long distance pictures taken in Alaska of the 
Wrangel-St Elias National Park. When I use CS3 to stitch, the result appears to 
be seamless and all segments are uniform in exposure, albeit dark. 
However, when I used Hugin the result is weird. The anchor pic (pic 1) is VERY 
much lighter than the other five and there is a obvious blend seam. The 
exposure for pictures 2 thru 6 are uniform (somewhat dark) and no blend seam.  
The exposure for pic 1 is OK,  but is much brighter than the other five.  When 
I repeated this sequence again I got a different set of light and dark images.
HELP!
Stan-- 
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