[Hugin-devs] [Bug 703736] Re: Hugin contains a bundled zthread-2.3.1

2011-03-11 Thread tmodes
Thanks Andreas, pushed to repository.

** Changed in: hugin
   Status: Confirmed = Fix Committed

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/703736

Title:
  Hugin contains a bundled zthread-2.3.1

Status in Hugin - Panorama Tools GUI:
  Fix Committed

Bug description:
  src/foreign/zthread is a bundled version of zthread
  http://zthread.sourceforge.net/ This is a problem with some Linux
  distributions such as Debian and fedora that have policies to not ship
  multiple versions of the same library.

  The solution would be to modify the cmake configuration to allow
  building against a system version of this library, and/or to remove
  the bundled library altogether.

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 730834] Re: 'Identify' in Preview tab of Fast Preview window is always active

2011-03-12 Thread tmodes
With the new group dragging mode the identify feature is now always on.
With the patch you switch it off. It will only work if the first tab is 
activated.

With the patch in the drag tab you can not easily check which images you
selected for dragging. This was the intention of the code modification.

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/730834

Title:
  'Identify' in Preview tab of Fast Preview window is always active

Status in Hugin - Panorama Tools GUI:
  New

Bug description:
  Affects at least hugin 2011.0 on OS X 10.4 and 10.6:
  Identify in the Preview tab of the Fast Preview window is always on, no 
matter if the Identify button is activated or not. This seems to affect the 
visibility of the Overview which is plain black and only flickers while I hover 
over the image numbers. 
  Maybe related with 'Photometrics' being enabled, sometimes when this is 
disabled the Overview is suddenly visible.

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 733793] Re: About window crashes on OSX for 2011.0 beta versions

2011-03-13 Thread tmodes
Is snapshot the released beta version? This should be fixed in 2011.0
branch. See https://bugs.launchpad.net/hugin/+bug/726318

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/733793

Title:
  About window crashes on OSX  for 2011.0 beta versions

Status in Hugin - Panorama Tools GUI:
  New

Bug description:
  The aboutdialog.cpp crashes hugin in the 2011 branch. The aboutdialog
  in the trunk works correctly.

  This is due to the fact that the aboutdialog.cpp within the 2011.0 (beta) 
branch is different from the trunk one.
  I have already been fiddling with the code the past couple of days but I'm 
obviously an even worse programmer than I expected to be as I can't repair it.

  Can this please be fixed?

  The trunk contains the code (This functions!):
  =
  void AboutDialog::SetMode(int newMode)
  {
  if(m_mode==newMode){
  return;
  }
  if((newMode!=6)(m_mode!=6)){
  m_mode=newMode;
  return;
  }
  // image to be displayed on dedication tab
  if(newMode==6){
  m_logo.LoadFile(huginApp::Get()-GetXRCPath() +
  wxT(data/) + wxT(logo.png),
  wxBITMAP_TYPE_PNG);
  m_logoImgCtrl-SetBitmap(m_logo);
  m_mode=newMode;
  return;
  }
  // image to be displayed on any other tab
  if(m_mode==6){
  m_logo.LoadFile(huginApp::Get()-GetXRCPath() +
  wxT(data/) + wxT(logo.png),
  wxBITMAP_TYPE_PNG);
  m_logoImgCtrl-SetBitmap(m_logo);
  m_mode=newMode;
  return;
  }
  };
  =

  
  The 2011.0 branch contains the code (This crashes hugin!):
  =
  void AboutDialog::SetMode(int newMode)
  {
  if(m_mode==newMode){
  return;
  }

  switch ( newMode ) {

  case 0 :
  // about tab
wxString strFile = 
MacGetPathToBundledResourceFile(CFSTR(splash.png));
SetLogo(wxT(strFile));
  break;

  case 6 :
  // dedication tab
strFile = 
MacGetPathToBundledResourceFile(CFSTR(dedication.png));
SetLogo(wxT(strFile));
  break;

  default :
  // all other tabs
strFile = 
MacGetPathToBundledResourceFile(CFSTR(logo.png));
SetLogo(wxT(strFile));

  }

  m_mode=newMode;
  return;
  };
  =

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 730834] Re: 'Identify' in Preview tab of Fast Preview window is always active

2011-03-13 Thread tmodes
During dragging there happen no highlighting. 
What I wanted to say is that when you move the mouse in the drag mode over the 
image toggle buttons the corresponding image is highlighted. This should help 
to identify the images for the individual drag mode. So these 2 use case are 
the same function and should show the same behaviour.

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/730834

Title:
  'Identify' in Preview tab of Fast Preview window is always active

Status in Hugin - Panorama Tools GUI:
  New

Bug description:
  Affects at least hugin 2011.0 on OS X 10.4 and 10.6:
  Identify in the Preview tab of the Fast Preview window is always on, no 
matter if the Identify button is activated or not. This seems to affect the 
visibility of the Overview which is plain black and only flickers while I hover 
over the image numbers. 
  Maybe related with 'Photometrics' being enabled, sometimes when this is 
disabled the Overview is suddenly visible.

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 731217] Re: setting for default project name is ignored

2011-03-13 Thread tmodes
Fix commited.
This bug had nothing to do with a wrong or missing quoting as mentioned in 
comment #1

** Changed in: hugin
   Status: New = Fix Committed

** Changed in: hugin
Milestone: None = 2011.0beta3

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/731217

Title:
  setting for default project name is ignored

Status in Hugin - Panorama Tools GUI:
  Fix Committed

Bug description:
  Affects hugin-mac-2011.0-beta2

  While trying to stitch a panorama the casual User will experience an error 
message:
enblend: unknown option -U

  One of two reasons is that the 'Project Name' setting isn't functional. 
  Even if the setting in Preferences - General tab - 'User Interface'...
   Project Name: [ ] based on containing folder 
  ...is disabled the following will be suggested as a file name when the 
Stitch now... button is pressed:
  -Volumes-HD name-Users-Account name-path-to-project-file-project-name
  while it should be just
  project-name

  Of course I know that I simply have to overwrite the suggested file
  name with something that doesn't start with a '-' but IMHO hugin
  shouldn't suggest that at all, i.e. check for conflicts in output file
  name.

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 703735] Re: Hugin contains a bundled tclap-1.2.0

2011-03-13 Thread tmodes
** Changed in: hugin
   Status: New = Fix Committed

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/703735

Title:
  Hugin contains a bundled tclap-1.2.0

Status in Hugin - Panorama Tools GUI:
  Fix Committed

Bug description:
  src/foreign/tclap is a bundled version of tclap
  http://tclap.sourceforge.net/ This is a problem with some Linux
  distributions such as Debian and fedora that have policies to not ship
  multiple versions of the same library.

  The solution would be to modify the cmake configuration to allow
  building against a system version of this library, and/or to remove
  the bundled library altogether.

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 731734] Re: SIGBUS in fast preview

2011-03-13 Thread tmodes
** Changed in: hugin
   Status: In Progress = Fix Committed

** Changed in: hugin
Milestone: None = 2011.0beta3

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/731734

Title:
  SIGBUS in fast preview

Status in Hugin - Panorama Tools GUI:
  Fix Committed

Bug description:
  Crashed while using fast preview window with 28 16-bit files.   May be
  related to #701165.   Log below:

  
  Process: Hugin [82851]
  Path:/Applications/Hugin 
2011.0-beta2/Hugin.app/Contents/MacOS/Hugin
  Identifier:  net.sourceforge.hugin.Hugin
  Version: 2011.0.0 (5047:f7ea2426b8de)
  Code Type:   X86 (Native)
  Parent Process:  launchd [229]

  Date/Time:   2011-03-08 17:57:30.066 -0800
  OS Version:  Mac OS X 10.6.6 (10J567)
  Report Version:  6

  Interval Since Last Report:  604132 sec
  Crashes Since Last Report:   39
  Per-App Interval Since Last Report:  54 sec
  Per-App Crashes Since Last Report:   1
  Anonymous UUID:  43187E9A-F418-483B-9CB8-5889F4158CEA

  Exception Type:  EXC_BAD_ACCESS (SIGBUS)
  Exception Codes: KERN_PROTECTION_FAILURE at 0x002c
  Crashed Thread:  0  Dispatch queue: com.apple.main-thread

  Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
  0   net.sourceforge.hugin.Hugin   0x0015f5bb 
PreviewIdentifyTool::setConstantOn(bool) + 11
  1   net.sourceforge.hugin.Hugin   0x00137cc7 GLPreviewFrame::SetMode(int) 
+ 1239
  2   libwx_macu-2.8.0.7.0.dylib0x005d8bb2 
wxEvtHandler::ProcessEventIfMatches(wxEventTableEntryBase const, 
wxEvtHandler*, wxEvent) + 114
  3   libwx_macu-2.8.0.7.0.dylib0x005d8d2f 
wxEventHashTable::HandleEvent(wxEvent, wxEvtHandler*) + 111
  4   libwx_macu-2.8.0.7.0.dylib0x005d960f 
wxEvtHandler::ProcessEvent(wxEvent) + 207
  5   libwx_macu-2.8.0.7.0.dylib0x00718879 
wxWindowBase::TryParent(wxEvent) + 105
  6   libwx_macu-2.8.0.7.0.dylib0x005d95bc 
wxEvtHandler::ProcessEvent(wxEvent) + 124
  7   libwx_macu-2.8.0.7.0.dylib0x00718879 
wxWindowBase::TryParent(wxEvent) + 105
  8   libwx_macu-2.8.0.7.0.dylib0x005d95bc 
wxEvtHandler::ProcessEvent(wxEvent) + 124
  9   libwx_macu-2.8.0.7.0.dylib0x006427e2 
wxNotebook::MacControlHit(void*, void*) + 370
  10  libwx_macu-2.8.0.7.0.dylib0x0066fbf2 
wxWindow::wxWindow(wxWindow*, int, wxPoint const, wxSize const, long, 
wxString const) + 626
  11  libwx_macu-2.8.0.7.0.dylib0x00670493 
wxMacWindowEventHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 
339
  12  com.apple.HIToolbox   0x90123ecf 
DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 
1567
  13  com.apple.HIToolbox   0x90123196 
SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, 
HandlerCallRec*) + 411
  14  com.apple.HIToolbox   0x90145a07 SendEventToEventTarget + 52
  15  com.apple.HIToolbox   0x90194de6 SendControlHit(HIView*, 
OpaqueEventRef*, short, unsigned long) + 296
  16  com.apple.HIToolbox   0x90194c67 
HIView::NotifyControlHit(OpaqueEventRef*, short, unsigned long) + 45
  17  com.apple.HIToolbox   0x901f974f 
HIView::ClickInternal(CGPoint const, unsigned long, void 
(*)(OpaqueControlRef*, short), OpaqueEventRef*, bool) + 245
  18  com.apple.HIToolbox   0x901fad08 
HIView::ClickSelf(OpaqueEventRef*) + 368
  19  com.apple.HIToolbox   0x90136ccd 
HIView::EventHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 2363
  20  com.apple.HIToolbox   0x90123ecf 
DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 
1567
  21  com.apple.HIToolbox   0x90123196 
SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, 
HandlerCallRec*) + 411
  22  com.apple.HIToolbox   0x90145a07 SendEventToEventTarget + 52
  23  com.apple.HIToolbox   0x90193cb2 
HIView::Click(OpaqueEventRef*) + 480
  24  com.apple.HIToolbox   0x90193a7f 
HandleClickAsHIView(OpaqueWindowPtr*, OpaqueEventRef*) + 151
  25  com.apple.HIToolbox   0x9019235c 
HandleWindowClick(OpaqueWindowPtr*, Point, short, unsigned long, 
OpaqueEventRef*) + 491
  26  com.apple.HIToolbox   0x90191e5f 
HandleMouseEvent(OpaqueEventHandlerCallRef*, OpaqueEventRef*) + 786
  27  com.apple.HIToolbox   0x9019176a 
StandardWindowEventHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) 
+ 93
  28  com.apple.HIToolbox   0x90123ecf 
DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 
1567
  29  com.apple.HIToolbox   0x90123196 
SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, 
HandlerCallRec*) + 411
  30  com.apple.HIToolbox   0x90145a07 SendEventToEventTarget + 52
  31  

[Hugin-devs] [Bug 733793] Re: About window crashes on OSX for 2011.0 beta versions

2011-03-13 Thread tmodes
Should be fixed in branch now.

** Changed in: hugin
   Status: New = Fix Committed

** Changed in: hugin
Milestone: None = 2011.0beta3

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/733793

Title:
  About window crashes on OSX  for 2011.0 beta versions

Status in Hugin - Panorama Tools GUI:
  Fix Committed

Bug description:
  The aboutdialog.cpp crashes hugin in the 2011 branch. The aboutdialog
  in the trunk works correctly.

  This is due to the fact that the aboutdialog.cpp within the 2011.0 (beta) 
branch is different from the trunk one.
  I have already been fiddling with the code the past couple of days but I'm 
obviously an even worse programmer than I expected to be as I can't repair it.

  Can this please be fixed?

  The trunk contains the code (This functions!):
  =
  void AboutDialog::SetMode(int newMode)
  {
  if(m_mode==newMode){
  return;
  }
  if((newMode!=6)(m_mode!=6)){
  m_mode=newMode;
  return;
  }
  // image to be displayed on dedication tab
  if(newMode==6){
  m_logo.LoadFile(huginApp::Get()-GetXRCPath() +
  wxT(data/) + wxT(logo.png),
  wxBITMAP_TYPE_PNG);
  m_logoImgCtrl-SetBitmap(m_logo);
  m_mode=newMode;
  return;
  }
  // image to be displayed on any other tab
  if(m_mode==6){
  m_logo.LoadFile(huginApp::Get()-GetXRCPath() +
  wxT(data/) + wxT(logo.png),
  wxBITMAP_TYPE_PNG);
  m_logoImgCtrl-SetBitmap(m_logo);
  m_mode=newMode;
  return;
  }
  };
  =

  
  The 2011.0 branch contains the code (This crashes hugin!):
  =
  void AboutDialog::SetMode(int newMode)
  {
  if(m_mode==newMode){
  return;
  }

  switch ( newMode ) {

  case 0 :
  // about tab
wxString strFile = 
MacGetPathToBundledResourceFile(CFSTR(splash.png));
SetLogo(wxT(strFile));
  break;

  case 6 :
  // dedication tab
strFile = 
MacGetPathToBundledResourceFile(CFSTR(dedication.png));
SetLogo(wxT(strFile));
  break;

  default :
  // all other tabs
strFile = 
MacGetPathToBundledResourceFile(CFSTR(logo.png));
SetLogo(wxT(strFile));

  }

  m_mode=newMode;
  return;
  };
  =

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 733793] Re: About window crashes on OSX for 2011.0 beta versions

2011-03-13 Thread tmodes
There are changes from 2 changeset necessary to fix this crash:
038c0de240d6 and 0b204475079d. So it is not sufficient to only apply
0b204475079d to beta2, because 038c0de240d6 was pushed after beta2.

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/733793

Title:
  About window crashes on OSX  for 2011.0 beta versions

Status in Hugin - Panorama Tools GUI:
  Fix Committed

Bug description:
  The aboutdialog.cpp crashes hugin in the 2011 branch. The aboutdialog
  in the trunk works correctly.

  This is due to the fact that the aboutdialog.cpp within the 2011.0 (beta) 
branch is different from the trunk one.
  I have already been fiddling with the code the past couple of days but I'm 
obviously an even worse programmer than I expected to be as I can't repair it.

  Can this please be fixed?

  The trunk contains the code (This functions!):
  =
  void AboutDialog::SetMode(int newMode)
  {
  if(m_mode==newMode){
  return;
  }
  if((newMode!=6)(m_mode!=6)){
  m_mode=newMode;
  return;
  }
  // image to be displayed on dedication tab
  if(newMode==6){
  m_logo.LoadFile(huginApp::Get()-GetXRCPath() +
  wxT(data/) + wxT(logo.png),
  wxBITMAP_TYPE_PNG);
  m_logoImgCtrl-SetBitmap(m_logo);
  m_mode=newMode;
  return;
  }
  // image to be displayed on any other tab
  if(m_mode==6){
  m_logo.LoadFile(huginApp::Get()-GetXRCPath() +
  wxT(data/) + wxT(logo.png),
  wxBITMAP_TYPE_PNG);
  m_logoImgCtrl-SetBitmap(m_logo);
  m_mode=newMode;
  return;
  }
  };
  =

  
  The 2011.0 branch contains the code (This crashes hugin!):
  =
  void AboutDialog::SetMode(int newMode)
  {
  if(m_mode==newMode){
  return;
  }

  switch ( newMode ) {

  case 0 :
  // about tab
wxString strFile = 
MacGetPathToBundledResourceFile(CFSTR(splash.png));
SetLogo(wxT(strFile));
  break;

  case 6 :
  // dedication tab
strFile = 
MacGetPathToBundledResourceFile(CFSTR(dedication.png));
SetLogo(wxT(strFile));
  break;

  default :
  // all other tabs
strFile = 
MacGetPathToBundledResourceFile(CFSTR(logo.png));
SetLogo(wxT(strFile));

  }

  m_mode=newMode;
  return;
  };
  =

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 734411] Re: Color of fast preview grid

2011-03-13 Thread tmodes
 This has no other apparent purpose than making it visible against all 
 possible backgrounds.

No. The purpose is to make a clearer connection of the different
longitude/latitude lines on the panosphere with the grid on the normal
preview window (important if you rotated the panosphere).

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/734411

Title:
  Color of fast preview grid

Status in Hugin - Panorama Tools GUI:
  New

Bug description:
  The grid in the current fast preview is IMHO too thick and too
  colorful.  This has no other apparent purpose than making it visible
  against all possible backgrounds.

  I would like to see the grid thinner (one pixel width) and either
  single color with a color palette choice and default setting; or same
  as the lines that delineate the crop.

  At the same time, the background color could use a color palette
  choice and a default setting as well.

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 679834] Re: Control points: use keyboard command for next/previous

2011-03-14 Thread tmodes
This works already with Ctrl+Left/Right
Also the buttons were moved closely together in an older release.

** Changed in: hugin
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/679834

Title:
  Control points: use keyboard command for next/previous

Status in Hugin - Panorama Tools GUI:
  Fix Released

Bug description:
  Tab Controlpoints: It would be comfortable to show next/previous
  pair with Alt+Cursor left/right. Also, the buttons should be
  positioned more closely to each other so you could quickly click with
  the mouse.

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 736755] Re: Fast preview status line not fit

2011-03-17 Thread tmodes
The status line is always only one line. 
A solution which solves this issue is already in repository, but this solution 
works only with wxWidgets 2.9.

** Changed in: hugin
   Status: New = Won't Fix

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/736755

Title:
  Fast preview status line not fit

Status in Hugin - Panorama Tools GUI:
  Won't Fix

Bug description:
  Hugin 2011.0.0 beta 3 on UHU-Linux 2.1. When i change the projection, the 
status line messages not fit correctly.
   My display is 1280x800 pixel. See the attachment picture.

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 739090] Re: stitching crashes upon beginning

2011-03-21 Thread tmodes
*** This bug is a duplicate of bug 697039 ***
https://bugs.launchpad.net/bugs/697039

Which operating system? Which hugin version? Please give more details!
If MacOS 10.5, this bug is a duplicate of 
https://bugs.launchpad.net/hugin/+bug/697039

** This bug has been marked a duplicate of bug 697039
   OSX 10.5 Leopard can't stitch
 * You can subscribe to bug 697039 by following this link: 
https://bugs.launchpad.net/hugin/+bug/697039/+subscribe

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/739090

Title:
  stitching crashes upon beginning

Status in Hugin - Panorama Tools GUI:
  New

Bug description:
  As soon as I select Create Panorama (I have already made control
  points, optimized, etc.) it crashes before even beginning to render.

  The error reads:

  echo: write: Bad file descriptor
  gnumake: *** [info] Error 1

  It seems like some sort of file naming error but changing the filename
  doesn't seem to fix anything.

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 723661] Re: Hugin 2010.4.0 deinstallation also deletes files it didn't install

2011-03-21 Thread tmodes
** Changed in: hugin
Milestone: None = 2011.0rc1

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/723661

Title:
  Hugin 2010.4.0 deinstallation also deletes files it didn't install

Status in Hugin - Panorama Tools GUI:
  Fix Committed

Bug description:
  Affects 2010.4.0 released December 2010 Windows distribution

  I have added old binaries in %ProgramFiles%\Hugin\bin070\ and
  autopano-sift-c.exe in %ProgramFiles%\Hugin\bin\.

  After deinstallation the additional directories are gone - together
  with %ProgramFiles%\Hugin\ itself.

  Don't know if this is bug or feature. I, however, would appreciate it
  if Hugin wouldn't silently delete files it didn't copy during
  installation time but rather show a notice that not all files were
  deleted.

  On a sidenote: Updating Hugin 0.7.0 with 2010.4.0 results in two
  deinstallation entries in Start/Settings/Add or Remove Software but
  overwritten binaries in %ProgramFiles%\Hugin\.

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 735848] Re: updated translation - brazilian portuguese

2011-03-21 Thread tmodes
Thanks, committed.

** Changed in: hugin
   Status: Confirmed = Fix Committed

** Changed in: hugin
Milestone: None = 2011.0rc1

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/735848

Title:
  updated translation - brazilian portuguese

Status in Hugin - Panorama Tools GUI:
  Fix Committed

Bug description:
  Updated translation, 1183 messages, for Hugin 2011.0.

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 748549] Re: Hugin stitcher crashes part-way trhough stitching no rule error

2011-04-03 Thread tmodes
*** This bug is a duplicate of bug 709361 ***
https://bugs.launchpad.net/bugs/709361

** This bug has been marked a duplicate of bug 709361
   Panorama stitching fails if path contains parentheses
 * You can subscribe to bug 709361 by following this link: 
https://bugs.launchpad.net/hugin/+bug/709361/+subscribe

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/748549

Title:
  Hugin stitcher crashes part-way trhough stitching no rule error

Status in Hugin - Panorama Tools GUI:
  New

Bug description:
  I am using Hugin 2010.4.0.854952d82c8f on a Dell Precision M65 laptop
  (T7400, 4 GB RAM, Win XP SP3, fully patched).  I have tried several
  different groups of images that previous versions have stitched
  without problems; all fail at this point.  I have tried uninstalling
  Hugin (clearing registry settings), rebooting and reinstalling - same
  problem.

  The logfile is as follows:

  ===
  ***  Panorama makefile generated by Hugin   ***
  ===
  System information
  ===
  Operating System: Windows XP (5.1 Service Pack 3)
  Architecture: x86
  Number of logical processors: 2
  Physical memory: 3405872 kiB (29% occupied)
  Free space on disc: 67931 MiB
  Active codepage: 1252 (Western European Windows)
  ===
  Output options
  ===
  Hugin Version: 2010.4.0.854952d82c8f built by Matthew Petroff
  Project file: C:\DOCUME~1\Paul\LOCALS~1\Temp\hug24.tmp
  Output prefix: DSC_0007-DSC_0010
  Projection: Cylindrical (1)
  Field of view: 166 x 57
  Canvas dimensions: 8614 x 3216
  Crop area: (211,820) - (8484,3046)
  Output exposure value: 13.84
  Selected outputs
  Normal panorama
  * Blended panorama
  ===
  Input images
  ===
  Number of images in project file: 4
  Number of active images: 4
  Image 0: C:\Images\Nikon D80\2008\2008_08_01 Imam's Palace  of the rock (Wadi 
Dhahr - Dar al-Hajar)\DSC_0007.JPG
  Image 0: Size 3872x2592, Exposure: 13.97
  Image 1: C:\Images\Nikon D80\2008\2008_08_01 Imam's Palace  of the rock (Wadi 
Dhahr - Dar al-Hajar)\DSC_0008.JPG
  Image 1: Size 3872x2592, Exposure: 13.68
  Image 2: C:\Images\Nikon D80\2008\2008_08_01 Imam's Palace  of the rock (Wadi 
Dhahr - Dar al-Hajar)\DSC_0009.JPG
  Image 2: Size 3872x2592, Exposure: 13.79
  Image 3: C:\Images\Nikon D80\2008\2008_08_01 Imam's Palace  of the rock (Wadi 
Dhahr - Dar al-Hajar)\DSC_0010.JPG
  Image 3: Size 3872x2592, Exposure: 13.92
  ===
  Testing programs
  ===
  Checking nona...
  nona is ok 
  Checking enblend...
  enblend is ok 
  Checking enfuse...
  enfuse is ok 
  Checking hugin_hdrmerge...
  hugin_hdrmerge is ok 
  Checking exiftool...
  exiftool is ok 
  ===
  Stitching panorama
  ===
  make: *** No rule to make target `Wadi Dhahr - Dar al-Hajar)/DSC_0007.JPG)', 
needed by `DSC_0007-DSC_0010.tif'.  Stop.

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 746840] Re: Error message while stitching. No output.

2011-04-03 Thread tmodes
** Changed in: hugin
   Status: New = Invalid

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/746840

Title:
  Error message while stitching. No output.

Status in Hugin - Panorama Tools GUI:
  Invalid

Bug description:
  After a few sucessful attempts at simple cases, I have been stitching
  a very complicated one with 14 pictures and loads of reference points.
  After hours of work, everything went well on the preview but the
  stitching stopped with an error message. I have installed the new
  version with the same result. The output was :

  ===
  ***  Panorama makefile generated by Hugin   ***
  ===
  System information
  ===
  Operating System: Windows XP (5.1 Service Pack 3)
  Architecture: x86
  Number of logical processors: 1
  Physical memory: 1047784 kiB (65% occupied)
  Free space on disc: 5610 MiB
  Active codepage: 1252 (Western European Windows)
  ===
  Output options
  ===
  Hugin Version: 2010.4.0.854952d82c8f built by Matthew Petroff
  Project file: C:\DOCUME~1\Olivier\LOCALS~1\Temp\hug385.tmp
  Output prefix: sommet
  Projection: Fisheye (3)
  Field of view: 60 x 90
  Canvas dimensions: 54080 x 81425
  Crop area: (0,0) - (54080,81425)
  Output exposure value: 14.42
  Selected outputs
  Normal panorama
  * Blended panorama
  ===
  Input images
  ===
  Number of images in project file: 15
  Number of active images: 15
  Image 0: C:\Documents and Settings\Olivier\Mes 
documents\No-backup\Photos\2010-Slovenie\Olivier\P1000627.JPG
  Image 0: Size 3648x2736, Exposure: 14.29
  Image 1: C:\Documents and Settings\Olivier\Mes 
documents\No-backup\Photos\2010-Slovenie\Olivier\P1000628.JPG
  Image 1: Size 3648x2736, Exposure: 14.10
  Image 2: C:\Documents and Settings\Olivier\Mes 
documents\No-backup\Photos\2010-Slovenie\Olivier\P1000629.JPG
  Image 2: Size 3648x2736, Exposure: 14.50
  Image 3: C:\Documents and Settings\Olivier\Mes 
documents\No-backup\Photos\2010-Slovenie\Olivier\P1000630.JPG
  Image 3: Size 3648x2736, Exposure: 14.51
  Image 4: C:\Documents and Settings\Olivier\Mes 
documents\No-backup\Photos\2010-Slovenie\Olivier\P1000631.JPG
  Image 4: Size 3648x2736, Exposure: 14.42
  Image 5: C:\Documents and Settings\Olivier\Mes 
documents\No-backup\Photos\2010-Slovenie\Olivier\P1000632.JPG
  Image 5: Size 3648x2736, Exposure: 14.53
  Image 6: C:\Documents and Settings\Olivier\Mes 
documents\No-backup\Photos\2010-Slovenie\Olivier\P1000633.JPG
  Image 6: Size 3648x2736, Exposure: 14.53
  Image 7: C:\Documents and Settings\Olivier\Mes 
documents\No-backup\Photos\2010-Slovenie\Olivier\P1000634.JPG
  Image 7: Size 3648x2736, Exposure: 14.69
  Image 8: C:\Documents and Settings\Olivier\Mes 
documents\No-backup\Photos\2010-Slovenie\Olivier\P1000635.JPG
  Image 8: Size 3648x2736, Exposure: 14.59
  Image 9: C:\Documents and Settings\Olivier\Mes 
documents\No-backup\Photos\2010-Slovenie\Olivier\P1000636.JPG
  Image 9: Size 3648x2736, Exposure: 14.60
  Image 10: C:\Documents and Settings\Olivier\Mes 
documents\No-backup\Photos\2010-Slovenie\Olivier\P1000637.JPG
  Image 10: Size 3648x2736, Exposure: 14.54
  Image 11: C:\Documents and Settings\Olivier\Mes 
documents\No-backup\Photos\2010-Slovenie\Olivier\P1000638.JPG
  Image 11: Size 3648x2736, Exposure: 14.62
  Image 12: C:\Documents and Settings\Olivier\Mes 
documents\No-backup\Photos\2010-Slovenie\Olivier\P1000639.JPG
  Image 12: Size 3648x2736, Exposure: 14.08
  Image 13: C:\Documents and Settings\Olivier\Mes 
documents\No-backup\Photos\2010-Slovenie\Olivier\P1000640.JPG
  Image 13: Size 3648x2736, Exposure: 14.10
  Image 14: C:\Documents and Settings\Olivier\Mes 
documents\No-backup\Photos\2010-Slovenie\Olivier\P1000641.JPG
  Image 14: Size 3648x2736, Exposure: 14.27
  ===
  Testing programs
  ===
  Checking nona...
  nona is ok 
  Checking enblend...
  enblend is ok 
  Checking enfuse...
  enfuse is ok 
  Checking hugin_hdrmerge...
  hugin_hdrmerge is ok 
  Checking exiftool...
  exiftool is ok 
  ===
  Stitching panorama
  ===
  C:/Program Files/Hugin/bin/nona  -z PACKBITS -r ldr -m TIFF_m -o sommet 
-i 0 

[Hugin-devs] [Bug 709361] Re: Panorama stitching fails if path contains parentheses

2011-04-14 Thread tmodes
@Nick: Your problem has nothing to do with the parenthesis in filename.
This is an issue with make 3.82

Your problem results from a unix like shell somewhere in your path. This is 
already covered by the FAQ: 
http://wiki.panotools.org/Hugin_FAQ#Stitching_fails_on_Windows_.28syntax_error.29
There are already several bug reports concerning your problem:
https://bugs.launchpad.net/hugin/+bug/696646
https://bugs.launchpad.net/hugin/+bug/727406
This bug is already fixed in the upcoming version.

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/709361

Title:
  Panorama stitching fails if path contains parentheses

Status in Hugin - Panorama Tools GUI:
  New

Bug description:
  Sorry if this has already been reported, but I couldn't find it in the
  list of bugs or the FAQ.

  The new Hugin is a huge improvement overall, but if I try stitching a
  panorama whose files are in a location whose path contains an open-
  parenthesis character, the stitching fails. Here is the error log
  generated:

  ===
  ***  Panorama makefile generated by Hugin   ***
  ===
  System information
  ===
  Operating System: Windows 7 (6.1 )
  Architecture: x86
  Number of logical processors: 8
  Physical memory: 12581304 kiB (38% occupied)
  Free space on disc: 894195 MiB
  Active codepage: 1252 (Western European Windows)
  ===
  Output options
  ===
  Hugin Version: 2010.4.0.854952d82c8f built by Matthew Petroff
  Project file: C:\Users\blincoln\AppData\Local\Temp\hug18BE.tmp
  Output prefix: Panorama
  Projection: Equirectangular (2)
  Field of view: 98 x 66
  Canvas dimensions: 4140 x 2788
  Crop area: (0,0) - (4140,2788)
  Output exposure value: 5.00
  Selected outputs
  Normal panorama
  * Blended panorama
  ===
  Input images
  ===
  Number of images in project file: 4
  Number of active images: 4
  Image 0: V:\Drive 2010 Photos\Day_11-2010-07-15\08-Apollo (14QM) Module 
Panorama\DSC_9982.TIF
  Image 0: Size 3008x2000, Exposure: 5.00
  Image 1: V:\Drive 2010 Photos\Day_11-2010-07-15\08-Apollo (14QM) Module 
Panorama\DSC_9983.TIF
  Image 1: Size 3008x2000, Exposure: 5.00
  Image 2: V:\Drive 2010 Photos\Day_11-2010-07-15\08-Apollo (14QM) Module 
Panorama\DSC_9984.TIF
  Image 2: Size 3008x2000, Exposure: 5.00
  Image 3: V:\Drive 2010 Photos\Day_11-2010-07-15\08-Apollo (14QM) Module 
Panorama\DSC_9985.TIF
  Image 3: Size 3008x2000, Exposure: 5.00
  ===
  Testing programs
  ===
  Checking nona...
  nona is ok 
  Checking enblend...
  enblend is ok 
  Checking enfuse...
  enfuse is ok 
  Checking hugin_hdrmerge...
  hugin_hdrmerge is ok 
  Checking exiftool...
  exiftool is ok 
  ===
  Stitching panorama
  ===
  make: *** No rule to make target `14QM) Module Panorama/DSC_9982.TIF)', 
needed by `Panorama.tif'.  Stop.

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 761140] Re: Stitched files are not saved

2011-04-15 Thread tmodes
*** This bug is a duplicate of bug 727406 ***
https://bugs.launchpad.net/bugs/727406

** This bug has been marked a duplicate of bug 727406
   Error during stitching a panorama in Windows 7 (32 bit Starter Edition)
 * You can subscribe to bug 727406 by following this link: 
https://bugs.launchpad.net/hugin/+bug/727406/+subscribe

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/761140

Title:
  Stitched files are not saved

Status in Hugin - Panorama Tools GUI:
  New

Bug description:
  After optimizing the stitching parameters and pressing
  button Stitch now! the file request window pops up,
  but there is no option to save the stitched file as a jpeg or TIFF.

  Shown below is the log file generated after attempting to save the
  file.

  ===
  974-1-975-1.pto 974-1-975-1.pto.mk 974-1.jpg 975-1.jpg LogFile.log Stitch 
2.ptb panorama1.pto Panorama makefile generated by Hugin 974-1-975-1.pto 
974-1-975-1.pto.mk 974-1.jpg 975-1.jpg LogFile.log Stitch 2.ptb panorama1.pto
  ===
  System information
  ===
  /usr/bin/sh: -c: line 0: syntax error near unexpected token `('
  /usr/bin/sh: -c: line 0: `echo Operating System: Windows XP (5.1 Service Pack 
3)'
  make: *** [info] Error 1

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 679909] Re: Add some warning about low disc space

2011-04-22 Thread tmodes
You put your code into the unix specific part. But the include is processed for 
all operating systems.
So this will not work on windows and maybe mac.
Hugin runs on different OS and the code should respect this.

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/679909

Title:
  Add some warning about low disc space

Status in Hugin - Panorama Tools GUI:
  Triaged

Bug description:
  Taken from discussion about bug #2531227:
  (nobody) said: wouldn't be appropriate to have some sort of warning about disk
  space? Just a suggestion :)

  This could be solved by monitoring disc space and when it gets running
  low pause make process and warn user. Problem is that pausing enblend
  or enfuse would be quite challenging.

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 749669] Re: crash opening image files with 'open project'

2011-04-22 Thread tmodes
Your patch rejects too much characters. 
Hugin is capable to work with filenames with nearly all characters. But your 
patch rejects all advanced characters e.g. äöüß from german, but other language 
are also affected. On unix Hugin works with filenames with characters from 
nearly the whole UTF-8 and hugin is multi lingual. This should the code respect.

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/749669

Title:
  crash opening image files with 'open project'

Status in Hugin - Panorama Tools GUI:
  In Progress
Status in Fedora:
  Unknown

Bug description:
  This was reported in the fedora bugzilla by Robert Kief:
  https://bugzilla.redhat.com/show_bug.cgi?id=693111

  Steps to reproduce:

  Select File - Open.
  Change the pattern match at the bottom to 'All files (*).
  Select a TIFF or JPEG file.
  Click Open.
  crash_function: HuginBase::PanoramaMemento::loadPTScript

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 760874] Re: Panorama fails on enblend error

2011-04-22 Thread tmodes
There is something messed up with your project. The output cancas size is 
probably too big (nearly 85 Gigapixel).
Also check the preview. There is no image in the output rectangle. So check 
your project.
This error is also covered by the FAQ: 
http://wiki.panotools.org/Hugin_FAQ#enblend:_no_input_files_specified

** Changed in: hugin
   Status: New = Invalid

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/760874

Title:
  Panorama fails on enblend error

Status in Hugin - Panorama Tools GUI:
  Invalid

Bug description:
   I upgraded to Ubuntu Maverick from Lucid (though I have no idea if
  there is a connection but there was no Hugin upgrade). Hugin has
  always worked fine but now when I try to create a panorama I am
  getting this error:

  Checking nona...[OK]
  Checking enblend...[OK]
  Checking enfuse...[OK]
  Checking hugin_hdrmerge...[OK]
  Checking exiftool...[OK]
  enblend --compression 100 -f453880x187432 -o test.jpg  
  enblend: no input files specified
  make: *** [test.jpg] Error 1

  I can see the images in the assistant for alignment and control points
  and the control points are created. I can optimize fine but this is
  the error that I get when I hit the create panorama button. Also, the
  preview is black. The images are large but that has never been an
  issue in the past.

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 768899] Re: hugin-generated makefiles don't work with bash

2011-04-22 Thread tmodes
*** This bug is a duplicate of bug 727406 ***
https://bugs.launchpad.net/bugs/727406

The next one who did not read the FAQ or can use the search function:
http://wiki.panotools.org/Hugin_FAQ#Stitching_fails_on_Windows_.28syntax_error.29
https://bugs.launchpad.net/hugin/+bug/696646
https://bugs.launchpad.net/hugin/+bug/703788
https://bugs.launchpad.net/hugin/+bug/727406
https://bugs.launchpad.net/hugin/+bug/761140

** Changed in: hugin
   Status: New = Invalid

** This bug has been marked a duplicate of bug 727406
   Error during stitching a panorama in Windows 7 (32 bit Starter Edition)
 * You can subscribe to bug 727406 by following this link: 
https://bugs.launchpad.net/hugin/+bug/727406/+subscribe

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/768899

Title:
  hugin-generated makefiles don't work with bash

Status in Hugin - Panorama Tools GUI:
  Invalid

Bug description:
  it took me a while to figure out that hugin won't work unless the first 
instance of sh in the path is zsh (or similar).
  if it is bash or ksh, it will fall over on lines like

  @echo Operating System: Windows XP (5.1 Service Pack 3)

  because the ( character is not enclosed within quotes.

  if the string after @echo is enclosed in double quotes -  - I believe
  it will work with every shell, not just zsh - seems like this would be
  an easy change to implement and save some grief (alternately, make
  hugin put its own directory first in the PATH when running make, so
  that zsh is the first copy of sh in the PATH)

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 684702] Re: unsaved changes lost when cancelling save

2011-04-28 Thread tmodes
No nagging please. We as developer are automatic notifitied when there are 
changes to the bug tracker.
Your patch does not work if the saving was not sucessful. 
Therefore pushed a simplier solution which should also consider the case that 
the file could not saved.

** Changed in: hugin
   Status: Confirmed = Fix Committed

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/684702

Title:
  unsaved changes lost when cancelling save

Status in Hugin - Panorama Tools GUI:
  Fix Committed

Bug description:
  When you hit quit when there are unsaved changes, you get a warning
  popup.

  So you hit save.

  When it asks for the filename, you think: Wait, let's try XYZ. so
  instead of saving you want to go back. So you hit cancel.

  Hugin now exists without saving. Ooops.

  The warning popup also has a cancel. That will cancel the quit and not
  lose your data. That the cancel in the enter filename would cancel
  the save and quit instantly surprised me.

  I agree, that in a sense this makes sense, but I can easily imagine
  that others would be surprised by this too.

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 769720] Re: error when create panorama selected

2011-04-28 Thread tmodes
That's not helpful. You need to give more details (OS, version, 32/64 bit, 
hugin version, ...)
Just guessing: if you are running a 64-bit system, you need to install the 64 
bit version (the 32 bit version shows this error).
Or see https://bugs.launchpad.net/hugin/+bug/692957 for an other possible cause.

** Changed in: hugin
   Status: New = Incomplete

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/769720

Title:
  error when  create panorama selected

Status in Hugin - Panorama Tools GUI:
  Incomplete

Bug description:
  'chcp' is not recognized as an internal or external command,
  operable program or batch file.

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 774533] Re: default branch fails to build, calibrate_lens errors

2011-05-01 Thread tmodes
** Changed in: hugin
   Status: New = Fix Committed

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/774533

Title:
  default branch fails to build, calibrate_lens errors

Status in Hugin - Panorama Tools GUI:
  Fix Committed

Bug description:
  Attempting to build  hugin hgdcbac52da361 rpm package on Fedora 14 x86_64, 
gives the followong errors;
  
/home/terry/rpmbuild/BUILD/hugin-2011.1.0/src/hugin1/calibrate_lens/LensCalImageCtrl.cpp:135:22:
 error: 'class wxBitmap' has no member named 'SetSize'
  
/home/terry/rpmbuild/BUILD/hugin-2011.1.0/src/hugin1/calibrate_lens/LensCalImageCtrl.cpp:136:23:
 error: 'class wxBitmap' has no member named 'SetSize'
  
/home/terry/rpmbuild/BUILD/hugin-2011.1.0/src/hugin1/calibrate_lens/LensCalImageCtrl.cpp:
 In member function 'void LensCalImageCtrl::SetImage(ImageLineList*)':
  
/home/terry/rpmbuild/BUILD/hugin-2011.1.0/src/hugin1/calibrate_lens/LensCalImageCtrl.cpp:191:73:
 error: conversion from 'const wxCharBuffer' to non-scalar type 'std::string' 
requested
  
/home/terry/rpmbuild/BUILD/hugin-2011.1.0/src/hugin1/calibrate_lens/LensCalImageCtrl.cpp:
 In member function 'void LensCalImageCtrl::GenerateRemappedImage(unsigned int, 
unsigned int)':
  
/home/terry/rpmbuild/BUILD/hugin-2011.1.0/src/hugin1/calibrate_lens/LensCalImageCtrl.cpp:291:78:
 error: conversion from 'const wxCharBuffer' to non-scalar type 'std::string' 
requested

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 780650] Re: Error during stiching(Run sammanfogare) preview show a correct panorama but

2011-05-16 Thread tmodes
*** This bug is a duplicate of bug 731217 ***
https://bugs.launchpad.net/bugs/731217

No. This is a duplicate of https://bugs.launchpad.net/hugin/+bug/731217 
Also related is bug https://bugs.launchpad.net/hugin/+bug/700283
Both are fixed

** This bug has been marked a duplicate of bug 731217
   setting for default project name is ignored
 * You can subscribe to bug 731217 by following this link: 
https://bugs.launchpad.net/hugin/+bug/731217/+subscribe

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/780650

Title:
  Error during stiching(Run sammanfogare) preview show a correct
  panorama but

Status in Hugin - Panorama Tools GUI:
  New

Bug description:
  ===
  ***  Panorama makefile generated by Hugin   ***
  ===
  System information
  ===
  Software:

  System Software Overview:

System Version: Mac OS X 10.6.7 (10J869)
Kernel Version: Darwin 10.7.0
Boot Volume: Macintosh SL HD
Boot Mode: Normal
Computer Name: Trojan
User Name: Bo Frisk (bofrisk)
Secure Virtual Memory: Enabled
64-bit Kernel and Extensions: No
Time since boot: 8:11

  Hardware:

  Hardware Overview:

Model Name: Mac Pro
Model Identifier: MacPro1,1
Processor Name: Dual-Core Intel Xeon
Processor Speed: 2,66 GHz
Number Of Processors: 2
Total Number Of Cores: 4
L2 Cache (per processor): 4 MB
Memory: 5 GB
Bus Speed: 1,33 GHz
Boot ROM Version: MP11.005C.B08
SMC Version (system): 1.7f10
Serial Number (system): CK7400X8ZNZ
Hardware UUID: --1000-8000-0017F20E1620

  Disc usage
  Filesystem  Size   Used  Avail Capacity  Mounted on
  /dev/disk4 931Gi  299Gi  632Gi32%/
  devfs  118Ki  118Ki0Bi   100%/dev
  /dev/disk3s2   1.3Ti  1.3Ti  3.4Gi   100%/Volumes/TimeM
  /dev/disk2s2   191Gi   32Gi  158Gi17%/Volumes/Macintosh HD 1
  /dev/disk2s321Gi  8.5Gi   12Gi41%/Volumes/Macintosh Tiger
  /dev/disk2s420Gi  5.3Gi   15Gi26%/Volumes/Reservsystem
  map -hosts   0Bi0Bi0Bi   100%/net
  map auto_home0Bi0Bi0Bi   100%/home
  ===
  Output options
  ===
  Hugin Version: 2010.4.0 built by Harry van der Wolf
  Project file: 
/var/folders/vT/vTaQnIaiFLiKmvNat70djE+++TI/-Tmp-/huginpto_pIetuE
  Output prefix: -Users-bofrisk-Pictures-HuginTut-Tutorial_2-panorama
  Projection: Rectilinear (0)
  Field of view: 114 x 38
  Canvas dimensions: 2564 x 573
  Crop area: (17,38) - (2516,465)
  Output exposure value: 10.75
  Selected outputs
  Normal panorama
  * Blended panorama
  ===
  Input images
  ===
  Number of images in project file: 4
  Number of active images: 4
  Image 0: /Users/bofrisk/Pictures/HuginTut/Tutorial_2/p989.jpg
  Image 0: Size 600x450, Exposure: 10.78
  Image 1: /Users/bofrisk/Pictures/HuginTut/Tutorial_2/p990.jpg
  Image 1: Size 600x450, Exposure: 10.69
  Image 2: /Users/bofrisk/Pictures/HuginTut/Tutorial_2/p992.jpg
  Image 2: Size 600x450, Exposure: 10.69
  Image 3: /Users/bofrisk/Pictures/HuginTut/Tutorial_2/p993.jpg
  Image 3: Size 600x450, Exposure: 10.84
  ===
  Testing programs
  ===
  Checking nona...[OK]
  Checking enblend...[OK]
  Checking enfuse...[OK]
  Checking hugin_hdrmerge...[OK]
  Checking exiftool...[OK]
  ===
  Stitching panorama
  ===
  
/Applications/Grafik/Hugin-MAC-2010.4.0/Hugin.app/Contents/Resources/HuginStitchProject.app/Contents/MacOS/nona
  -z LZW -r ldr -m TIFF_m -o 
-Users-bofrisk-Pictures-HuginTut-Tutorial_2-panorama -i 0 
/var/folders/vT/vTaQnIaiFLiKmvNat70djE+++TI/-Tmp-/huginpto_pIetuE
  
/Applications/Grafik/Hugin-MAC-2010.4.0/Hugin.app/Contents/Resources/HuginStitchProject.app/Contents/MacOS/nona
  -z LZW -r ldr -m TIFF_m -o 
-Users-bofrisk-Pictures-HuginTut-Tutorial_2-panorama -i 1 
/var/folders/vT/vTaQnIaiFLiKmvNat70djE+++TI/-Tmp-/huginpto_pIetuE
  
/Applications/Grafik/Hugin-MAC-2010.4.0/Hugin.app/Contents/Resources/HuginStitchProject.app/Contents/MacOS/nona
  -z LZW -r ldr -m TIFF_m -o 

[Hugin-devs] [Bug 781877] Re: crash when rotating 1 file

2011-05-16 Thread tmodes
I think this crash is related to nona-gpu.
Go to preferences, stitcher tab and deactivate use gpu for stitching and try 
again. 
This is an experimentell feature, which does not work in all cases.

** Tags added: nona-gpu

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/781877

Title:
  crash when rotating 1 file

Status in Hugin - Panorama Tools GUI:
  Confirmed

Bug description:
  system crashed and told me to send in report file
  this is using GPU  on T410 / Nvidia

  attaching log file

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 786035] Re: lens_calibration_gui not detecting exif data

2011-05-21 Thread tmodes
It detects focal length and crop factor with the same code as hugin. There was 
a little bug inside bringing these values to GUI. This is fixed in rev. 
5cb5a33d8d5b
Concerning the values for image centre shift: I think the quality of these 
values depends on the image and the quality of the detected lines. So if the 
lines are bad or bad distributed it can result in wrong values. Check the 
corrected preview, if they are plausible.

** Changed in: hugin
   Status: New = Fix Committed

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/786035

Title:
  lens_calibration_gui not detecting exif data

Status in Hugin - Panorama Tools GUI:
  Fix Committed

Bug description:
  lens_calibration_gui doesn't detect focal length and FL magnifier of images.
  Sorry if this isn't implemented, but I did expect it to handle input images 
as per hugin.
  I am also finding that it calculates huge values for image centre shift. 
  I will see if I can find some time to compare values with those from hugin, 
for same images.

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 702135] Re: Auto Crop bug

2011-05-22 Thread tmodes
Thanks for patch, committed to default branch as rev bbf8b0748de1

** Changed in: hugin
   Status: New = Fix Committed

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/702135

Title:
  Auto Crop bug

Status in Hugin - Panorama Tools GUI:
  Fix Committed

Bug description:
  Auto crop sometimes gives wrong results. It can be reproduced on
  images that are slightly rotated, see the attached pto file. The
  problem is that the algorithm starts with some initial area which then
  can only grow. It does not detect that a little shrink in one
  direction would allow more growth in the other.

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 717908] Re: Warn if include masks are overlapping

2011-05-22 Thread tmodes
 - when editing the masks, it would be great to see a grayed-out area 
 (or boxed in another color) of the current image where another image 
 already has an include mask (effectively excluding this area from the current 
 image).

done in rev f7b69c60fced

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/717908

Title:
  Warn if include masks are overlapping

Status in Hugin - Panorama Tools GUI:
  Triaged

Bug description:
  After masking several of my images to include only a central polygon
  area, the preview displays show black areas where the images should be
  UN-masked, even though the images have unmasked pixels there.   In
  addition, it seems that the preview in general is not following the
  masks.

  FYI, I'm working with full-frame fisheye images, in case that makes a
  difference.

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

  Hugin
  Version: 2010.4.0 built by Harry van der Wolf
  Path to ressources: /Applications/Hugin 
2010.4.0/Hugin.app/Contents/Resources/xrc/
  Path to data: /Applications/Hugin 2010.4.0/Hugin.app/Contents/Resources/xrc/

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 689603] Re: Allow a mask over ALL images.

2011-05-22 Thread tmodes
Mask above all images will not work, if the images have different sizes. 
Therefore implemented mask over all images of the same lens in rev 227b3a1a45fc.
Also copy and paste implemented in rev c3f95c9f0dd

** Changed in: hugin
   Status: Triaged = Fix Committed

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/689603

Title:
  Allow a mask over ALL images.

Status in Hugin - Panorama Tools GUI:
  Fix Committed

Bug description:
  Sometimes the vignetting of the lens is very significant, but also
  sometimes the pano-shooting-hardware is in each picture. In such a
  case it would be useful to draw a mask, and then say: apply to all
  images.

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 787925] Re: Feature Request: Set default output image format

2011-05-25 Thread tmodes
This is already implemented: goto FilePreferences, Stitcher tab and select 
your preferred output format.
I'm not sure in which version it was implemented, maybe you need to update to 
current/upcoming 2011.0 version

** Changed in: hugin
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/787925

Title:
  Feature Request: Set default output image format

Status in Hugin - Panorama Tools GUI:
  Fix Released

Bug description:
  currently, on my Mac, the default output when creating a panorama is 
TIFF/LZW. 
  This is great for having a great image quality, however most of the time I 
prefer storing my images as JPG with a quality factor around 95 in order to 
save disk space.

  Every time I create a new panorama, I have to change the format of the
  output file.

  I would love a preference entry to set this up once and have it as a
  default format then.

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 788711] Re: Problem mit enblend.exe und enfuse.exe

2011-05-26 Thread tmodes
See FAQ for a description and solution:
http://wiki.panotools.org/Hugin_FAQ#enblend:_Error_-1073741795

This message could be generated by either
*  the lack of Microsoft Visual C++ 2008 Redistributable Package (x86)
*  the lack of SSE2 support. Use a non-SSE build of Enblend. 

** Changed in: hugin
   Status: New = Incomplete

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/788711

Title:
  Problem mit enblend.exe und enfuse.exe

Status in Hugin - Panorama Tools GUI:
  Incomplete

Bug description:
  ===
  ***  Panorama makefile generated by Hugin   ***
  ===
  System information
  ===
  Operating System: Windows XP (5.1 Service Pack 3)
  Architecture: x86
  Number of logical processors: 1
  Physical memory: 1572336 kiB (31% occupied)
  Free space on disc: 155147 MiB
  Active codepage: 1252 (Western European Windows)
  ===
  Output options
  ===
  Hugin Version: 2010.4.0.854952d82c8f built by Matthew Petroff
  Project file: C:\DOKUME~1\Winne\LOKALE~1\Temp\hug21.tmp
  Output prefix: 1-2
  Projection: Equirectangular (2)
  Field of view: 360 x 180
  Canvas dimensions: 3000 x 1500
  Crop area: (0,0) - (3000,1500)
  Output exposure value: 13.56
  Selected outputs
  Normal panorama
  * Blended panorama
  ===
  Input images
  ===
  Number of images in project file: 2
  Number of active images: 2
  Image 0: C:\Dokumente und Einstellungen\Winne\Eigene Dateien\Eigene 
Bilder\1.jpg
  Image 0: Size 2016x3024, Exposure: 13.36
  Image 1: C:\Dokumente und Einstellungen\Winne\Eigene Dateien\Eigene 
Bilder\2.jpg
  Image 1: Size 2016x3024, Exposure: 13.77
  ===
  Testing programs
  ===
  Checking nona...
  nona is ok 
  Checking enblend...
  enblend failed
  Checking enfuse...
  enfuse failed
  Checking hugin_hdrmerge...
  hugin_hdrmerge is ok 
  Checking exiftool...
  exiftool is ok 
  ===
  Stitching panorama
  ===
  C:/Programme/Hugin/bin/nona  -z LZW -r ldr -m TIFF_m -o 1-2 -i 0 
C:/DOKUME~1/Winne/LOKALE~1/Temp/hug21.tmp
  C:/Programme/Hugin/bin/nona  -z LZW -r ldr -m TIFF_m -o 1-2 -i 1 
C:/DOKUME~1/Winne/LOKALE~1/Temp/hug21.tmp
  C:/Programme/Hugin/bin/enblend --compression=LZW -w -f3000x1500 -o 
1-2.tif 1-2.tif 1-20001.tif
  make: *** [1-2.tif] Error -1073741795

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 789938] Re: cpfind: OSX malloc failing

2011-05-31 Thread tmodes
*** This bug is a duplicate of bug 717944 ***
https://bugs.launchpad.net/bugs/717944

** This bug has been marked a duplicate of bug 717944
   cpfind memory allocation error

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/789938

Title:
  cpfind: OSX malloc failing

Status in Hugin - Panorama Tools GUI:
  New

Bug description:
  Running simple stitching of cylindrical panoramas, starting with
  16-bit TIF files, typically 125-150 MB each, created by Photoshop from
  RAW files.  I've encountered this with 2010.4, 2010.5 and 2011.0b2.

  Most of the time things work very well, but for some sets I see errors
  like this when trying to generate control points:

cpfind(16389,0xb030b000) malloc: *** mmap(size=63082496) failed (error 
code=12)
*** error: can't allocate region
*** set a breakpoint in malloc_error_break to debug
cpfind(16389,0xb0513000) malloc: *** mmap(size=63082496) failed (error 
code=12)
*** error: can't allocate region
*** set a breakpoint in malloc_error_break to debug
cpfind(16389,0xb0595000) malloc: *** mmap(size=126160896) failed (error 
code=12)
*** error: can't allocate region
*** set a breakpoint in malloc_error_break to debug

  These are reproducible; they seem to happen most often with large sets
  (10+ files) but sometimes large ones work fine.

  I'm not going to attach the most recent data set I've encountered this
  with - 12 files, about 1.8 GB total - but I'd be happy to provide then
  for whomever is willing to look into this...

  About - System:

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

  Hugin
  Version: 2010.5.0.4886:a1cb4a2efa65 built by Harry van der Wolf
  Path to resources: /Applications/Hugin-2010.5.app/Contents/Resources/xrc/
  Path to data: /Applications/Hugin-2010.5.app/Contents/Resources/xrc/

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 773319] Re: feature request: maxdim in CPfind

2011-05-31 Thread tmodes
** Changed in: hugin
   Importance: Undecided = Wishlist

** Changed in: hugin
   Status: New = Confirmed

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/773319

Title:
  feature request: maxdim in CPfind

Status in Hugin - Panorama Tools GUI:
  Confirmed

Bug description:
  from this thread:
  https://groups.google.com/forum/#!topic/hugin-ptx/_LNPRle3RpM

  Basically the --fullscale flag is not very convenient. Better would be
  something similar to autopano sift c, which allows the user to specify
  the image dimension to use for analysis.

  Harry had these comments:

  I suggest to file it as a feature request.
  I assume your idea with the --maxdim n like in autopanosift-c can be 
picked up very easily.
  for autopanosift-c: --maxdim nMake largest image dimension = 
n (default: 1600).
  However, this might fall under the license on APSC.

  We also have calibrate_lens which has the option: -d intMaximum 
dimension for re-sized image prior to processing. Default 1600.
  calibrate_lens is GPL.

  We also have celeste_standalone with the option:   -s intMaximum 
dimension for re-sized image prior to processing. A higher value will increase 
the resolution of the mask but is significantly slower. Default: 800
  celeste_standalone is GPL

  Finally we have align_image_stack which uses the -s scale  Scale down
  image by 2^scale (default: 1 [2x downsampling]).  This option might
  not be as good whith varying input resolutions but is also GPL.

  Enough options to copypaste into cpfind.

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 792659] Re: Wishlist for PTBatcherGUI

2011-06-04 Thread tmodes
That's not a good style to put so much in one ticket. This makes it
difficult to keep track of the individual features. Better would be to
fill several smaller tickets.

 * add a switch to start it nice (to leave priority to the user
interaction with Hugin)

What is nice? That's a very weak description. I don't know what you
want.

 * add a switch to start minimized. Even better: make the application
live in the notification tray, with an icon that shows the status (idle/
processing/ exception)

Already (partially) implemented. It would be easy to implement different
icons, but someone has to design them.

 * add a switch to save log files. finer grained: all log files / only
failed log files / no saved log files. filename: project.pto.log (then
we can make it a default procedure when reporting bugs to attach the
pto, pto.mk and pto.log files)

The current behaviour is that failed log files are automatically saved.
Do we really need to save all log files?

 * the delete *.pto files option looks very dangerous to me. Is it
really necessary there?

Why did you have it then also pulled into the new preferences of hugin?

 * I would like to be able to select multiple projects at once and then
hit the delete key. At this moment it does not work here.

This is a duplicate of ticket #679177

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/792659

Title:
  Wishlist for PTBatcherGUI

Status in Hugin - Panorama Tools GUI:
  New

Bug description:
  * add a switch to start it nice (to leave priority to the user interaction 
with Hugin)
  * add a switch to start minimized.  Even better: make the application live in 
the notification tray, with an icon that shows the status (idle/ processing/ 
exception)
  * add a switch to save log files.  finer grained: all log files / only failed 
log files / no saved log files.  filename: project.pto.log (then we can make it 
a default procedure when reporting bugs to attach the pto, pto.mk and pto.log 
files)
  * add a switch to close the application on completion (finer grained than 
shutdown the whole computer)
  * the delete *.pto files option looks very dangerous to me.  Is it really 
necessary there?
  * when I select a project and hit the delete key, the project is deleted but 
nothing is selected.  I would expect the previous project to be selected, and 
if there is no previous project the next one to be selected.
  * I would like to be able to select multiple projects at once and then hit 
the delete key.  At this moment it does not work here.

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 792784] Re: PTBatcherGUI: add a switch to close the application

2011-06-04 Thread tmodes
What would be the advantage of this?

If no stitch is running, PTBatcherGUI is sitting (minimized) in the
notification area / as tray icon and does nothing, only waiting for new
projects. When a new project is send to PTBatcherGUI this is faster than
restarting it again.

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/792784

Title:
  PTBatcherGUI: add a switch to close the application

Status in Hugin - Panorama Tools GUI:
  New

Bug description:
  PTBatcherGUI currently has a switch (-s) to shut down the whole
  computer when the batch is finished.

  On a similar line of thinking, it would be convenient for me to have a
  switch (suggested: -q) to quit the application when the batch is
  finished.

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 792781] Re: Manage Scheduling Priority of PTBatcherGUI

2011-06-04 Thread tmodes
 Details in `man nice`.
This does not help me.

Short test on windows: change priority of ptbatchergui to high, but
started child processes (make/cpfind/nona) are all running with normal
priority. So at least on windows changing the process priority of
ptbatchergui would not help so much. (Nice does only change the cpu
priority, but maybe also the i/o priority needs to be changed.)

 wxExecute - which is used to start make - does not support a priority
switch.

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/792781

Title:
  Manage Scheduling Priority of PTBatcherGUI

Status in Hugin - Panorama Tools GUI:
  New

Bug description:
  YL  Wishlist for PTBatcherGUI
  YL  * add a switch to start it nice (to leave priority to the user
  YL  interaction with Hugin)

  TM  What is nice? That's a very weak description. I don't know what you
  TM  want.

  I don't now if this exists in Windows.  In Linux (and I guess also on
  the Mac), I can start a command with `nice -n X COMMAND ARGS` and it
  has higher or lower scheduling priority depending if X is negative or
  positive.  Details in `man nice`.

  I guess I could pre-pend the nice command in the call from
  PanoPanel.cpp but I am not sure how this would (or would not) affect
  the whole thing.

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 793209] Re: Yellow notes in PTBatcherGui make PTBG hang on OSX

2011-06-06 Thread tmodes
Okay, deactivated on MacOS. On other platform show them only if window
is minimized.

I tested on Windows and Fedora. And there was no problem. The tooltip
disappeared after 5 s or if the user clicked and pressed a key. So this
seems to be a  Mac specific thing.

** Changed in: hugin
   Status: New = Fix Committed

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/793209

Title:
  Yellow notes in PTBatcherGui make PTBG hang on OSX

Status in Hugin - Panorama Tools GUI:
  Fix Committed

Bug description:
  PTBatcherGui has now the yellow notes things. They make PTBatcherGui
  hang on OSX.

  Next: please make this an option. I think these yellow notes are
  really annoying.

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 794527] Re: lens_calibrate_gui crashes when max img size real size

2011-06-08 Thread tmodes
** Changed in: hugin
   Status: New = Fix Committed

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/794527

Title:
  lens_calibrate_gui crashes when max img size  real size

Status in Hugin - Panorama Tools GUI:
  Fix Committed

Bug description:
  Version: 5293:43043d2742e4 (Mac OS X)
  When opening a new image in lens_calibrate_gui the original settings are not 
removed.
  After my own photo I took a small 640x480 example image from the internet 
while the Maximum image size  was still set to 1600.

  Every Maximum image size  setting bigger than the real loaded image
  size makes l_c_g crash.

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 794255] Re: dots and rows in final output

2011-06-08 Thread tmodes
*** This bug is a duplicate of bug 787543 ***
https://bugs.launchpad.net/bugs/787543

This is a problem in enblend, and there it is a duplicate of bug
#787543.

** Changed in: hugin
   Status: New = Invalid

** Also affects: enblend
   Importance: Undecided
   Status: New

** This bug has been marked a duplicate of bug 787543
   Panorama contains horizontal line artefacts

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/794255

Title:
  dots and rows in final output

Status in Enblend:
  New
Status in Hugin - Panorama Tools GUI:
  Invalid

Bug description:
  Hello,

  I've installed Hugin 2011.0.0.0f9fdaf56720 built by Matthew Petroff
  (64 Bit) for Windows (7 Professional, 64 Bit - Intel i5-760). I'm
  working on my first 360° panorama (~60° height). As raw material i've
  18 tiff Images with 16MPixel and 16 bit colordepth (real depth 14 bit)
  generatet by the PENTAX Digital Camera Utility Version 4.30. This
  Images are shot at 18mm focal distance (crop 1,5). As output size
  24075*4487 Pixel were calculated.

  Now about the problem:
  there are wrong colored dots ond rows at the bottom of the final output. I've 
cut out ab part of such a region. I hope Gimp haven't killed some important 
information. This errors are not (visible?) on the single images created by 
nona.

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 794739] Re: Hugin Calibrate Lens clips portrait photos

2011-06-09 Thread tmodes
Should be fixed in rev. 7778092959b8

** Changed in: hugin
   Status: New = Fix Committed

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/794739

Title:
  Hugin Calibrate Lens clips portrait photos

Status in Hugin - Panorama Tools GUI:
  Fix Committed

Bug description:
  If I load a portrait orientated photo into calibrate_lens_gui then it
  displays ok in landscape format in 'Original' and 'Edge detection'
  mode.

  When I switch to 'Corrected' then the photo gets rotated, but the
  canvas area isn't, this reuslts in the top and bottom of the photo
  getting cropped from the display.

To manage notifications about this bug go to:
https://bugs.launchpad.net/hugin/+bug/794739/+subscriptions

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 794719] Re: PTBatcher -b segfault

2011-06-10 Thread tmodes
Tried to fix in c068b38e6fa6

** Changed in: hugin
   Status: New = Fix Committed

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/794719

Title:
  PTBatcher -b segfault

Status in Hugin - Panorama Tools GUI:
  Fix Committed

Bug description:
  PTBatcher -b segfaults, this happens both if PTBatcherGUI is running
  as well as when it isn't:

$ PTBatcher -v -b
Loaded temp file.
Batch is empty.
Saved temp file.

$ PTBatcher -v -a junk.pto
Loaded temp file.
Added project junk.pto
Saved temp file.

$ PTBatcher -v -b
Loaded temp file.
Running batch...
Segmentation fault

  This is on fedora f15, Hugin 2011.1.0 HG from 2011-06-05

To manage notifications about this bug go to:
https://bugs.launchpad.net/hugin/+bug/794719/+subscriptions

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 797025] Re: Default branch (hgaa0f4bd10678) fails to build on fedora 15

2011-06-14 Thread tmodes
Fixed in rev ad9123971663

** Changed in: hugin
   Status: New = Fix Committed

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/797025

Title:
  Default branch (hgaa0f4bd10678) fails to build on fedora 15

Status in Hugin - Panorama Tools GUI:
  Fix Committed

Bug description:
  Building the default branch on Fedora 15 results in the following error;
  ...hugin-2011.1.0/src/hugin_base/hugin_utils/alphanum.cpp:84:52: error: 
'strtoul' was not declared in this scope
  Are we missing a header file somewhere?

To manage notifications about this bug go to:
https://bugs.launchpad.net/hugin/+bug/797025/+subscriptions

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 790039] Re: Stereographic lens projection not loaded from lens .ini file

2011-06-17 Thread tmodes
Tried to fix in rev 6edb80275ed6

** Changed in: hugin
   Status: New = Fix Committed

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/790039

Title:
  Stereographic lens projection not loaded from lens .ini file

Status in Hugin - Panorama Tools GUI:
  Fix Committed

Bug description:
  I have lens profiled and have saved the profile as a .ini file. When I
  load images Hugin asks for the FoV etc for the images as usual and if
  I use the load lens button and point Hugin to the lens profile, the
  lens projection shown isn't correct (should be stereographic, is
  rectilinear instead) and wrong focal length is reported (should be
  8.8mm but 6.23mm is shown instead). I have to set the lens type to
  stereographic first and then load the lens profile. Equirectangular
  and rectilinear projection are reported correctly though.

  Lens is non-CPU one but I've set up my camera so that correct focal
  length is stored in the EXIF data of the images.

  Here's a screenshot: http://i.imgur.com/CI3EP.png

  Win7 x64, Hugin 2011.0.0.0fd3e119979c built by Matthew Petroff (2011.1
  RC1?).

To manage notifications about this bug go to:
https://bugs.launchpad.net/hugin/+bug/790039/+subscriptions

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 799905] [NEW] Variables not passed to Python interface

2011-06-20 Thread tmodes
Public bug reported:

Trying to pass several variables to Python script does not work.
I'm calling hpi::callhpi with 2 argument
hpi::callhpi( m_scriptFile.c_str() , 2 , HuginBase::Panorama*, pano, 
HuginBase::UIntSet*, m_images ) ;

But in hpi_dispatch 2 HuginBase::Panorama* objects appear (and not a Panorama 
and UIntSet object)
I added 
for i in args:
print(type(i))
to hpi_dispatch and got:
class 'hsi.Panorama'
class 'hsi.Panorama'
as result.

And finally in the plugin only the first Panorama object appears.
I added the same code as above to check, there is only one variable in def 
entry (pano,*args)

** Affects: hugin
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/799905

Title:
  Variables not passed to Python interface

Status in Hugin - Panorama Tools GUI:
  New

Bug description:
  Trying to pass several variables to Python script does not work.
  I'm calling hpi::callhpi with 2 argument
  hpi::callhpi( m_scriptFile.c_str() , 2 , HuginBase::Panorama*, pano, 
HuginBase::UIntSet*, m_images ) ;

  But in hpi_dispatch 2 HuginBase::Panorama* objects appear (and not a Panorama 
and UIntSet object)
  I added 
  for i in args:
  print(type(i))
  to hpi_dispatch and got:
  class 'hsi.Panorama'
  class 'hsi.Panorama'
  as result.

  And finally in the plugin only the first Panorama object appears.
  I added the same code as above to check, there is only one variable in def 
entry (pano,*args)

To manage notifications about this bug go to:
https://bugs.launchpad.net/hugin/+bug/799905/+subscriptions

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 799905] Re: Variables not passed to Python interface

2011-06-22 Thread tmodes
Thanks for patch. It working here also. Committed.

** Changed in: hugin
   Status: Confirmed = Fix Committed

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/799905

Title:
  Variables not passed to Python interface

Status in Hugin - Panorama Tools GUI:
  Fix Committed

Bug description:
  Trying to pass several variables to Python script does not work.
  I'm calling hpi::callhpi with 2 argument
  hpi::callhpi( m_scriptFile.c_str() , 2 , HuginBase::Panorama*, pano, 
HuginBase::UIntSet*, m_images ) ;

  But in hpi_dispatch 2 HuginBase::Panorama* objects appear (and not a Panorama 
and UIntSet object)
  I added 
  for i in args:
  print(type(i))
  to hpi_dispatch and got:
  class 'hsi.Panorama'
  class 'hsi.Panorama'
  as result.

  And finally in the plugin only the first Panorama object appears.
  I added the same code as above to check, there is only one variable in def 
entry (pano,*args)

To manage notifications about this bug go to:
https://bugs.launchpad.net/hugin/+bug/799905/+subscriptions

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 800411] Re: new images get mask from image 0

2011-06-22 Thread tmodes
Tried to fix in ff7fac539804.

** Changed in: hugin
   Status: New = Fix Committed

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/800411

Title:
  new images get mask from image 0

Status in Hugin - Panorama Tools GUI:
  Fix Committed

Bug description:
  If I have an existing project with masks, then add an extra image to
  the project, this new image is assigned a copy of the mask from the
  existing image 0.

  BTW I just noticed the fisheye crop circle now appears in the Mask
  tab, fantastic.

To manage notifications about this bug go to:
https://bugs.launchpad.net/hugin/+bug/800411/+subscriptions

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 800667] Re: i cant save stitched files to location program chooses.

2011-06-22 Thread tmodes
You have given not so much details.
Just guessing: Are you on windows and do you have a  in your username? Then 
see the FAQ 
http://wiki.panotools.org/Hugin_FAQ#Stitch_fails_when_.27.26.27_is_part_of_the_Windows_7_user-name
 and the bug report #791677 https://bugs.launchpad.net/hugin/+bug/791677

Otherwise give more details: operation system, installation path, user
name, settings, when does the error message appear ...

** Changed in: hugin
   Status: New = Incomplete

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/800667

Title:
  i cant save stitched files to location program chooses.

Status in Hugin - Panorama Tools GUI:
  Incomplete

Bug description:
  'C:\Users\MIKE' is not recognized as an internal or external command,
  operable program or batch file.
  The system cannot find the path specified.
  make: *** [info] Error 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/hugin/+bug/800667/+subscriptions

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 749669] Re: crash opening image files with 'open project'

2011-07-13 Thread tmodes
The new v line parser does not parse correctly if translation parameters
(TrX, TrY, TrZ) are in the v lines. These are skipped with the new v
line parser/ they does not appear correctly in the gui and it is not
possible to optimize the translation parameters on the command line
(autooptimiser).

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/749669

Title:
  crash opening image files with 'open project'

Status in Hugin - Panorama Tools GUI:
  New
Status in Fedora:
  Unknown

Bug description:
  This was reported in the fedora bugzilla by Robert Kief:
  https://bugzilla.redhat.com/show_bug.cgi?id=693111

  Steps to reproduce:

  Select File - Open.
  Change the pattern match at the bottom to 'All files (*).
  Select a TIFF or JPEG file.
  Click Open.
  crash_function: HuginBase::PanoramaMemento::loadPTScript

To manage notifications about this bug go to:
https://bugs.launchpad.net/hugin/+bug/749669/+subscriptions

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 679919] Re: Swap images in controlpoints window.

2011-07-13 Thread tmodes
Using the space bar is not to good on windows. The space bar is already
in use on windows for select options. So please don't use it for some
other functions.

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/679919

Title:
  Swap images in controlpoints window.

Status in Hugin - Panorama Tools GUI:
  New

Bug description:
  If the two images in the control point tab align, but have been taken
  right-to-left, it is easier to work on the middle area, than to work
  on the left side of the left image, and on the right side of the right
  image. So I usually swap them. It might be useful to have a button do
  this instead of having to change both image selectors.

To manage notifications about this bug go to:
https://bugs.launchpad.net/hugin/+bug/679919/+subscriptions

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 803294] Re: Control point zoomed preview remains after deselection

2011-08-21 Thread tmodes
Thanks for patch, committed.

** Changed in: hugin
   Status: New = Fix Committed

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/803294

Title:
  Control point zoomed preview remains after deselection

Status in Hugin - Panorama Tools GUI:
  Fix Committed

Bug description:
  In the Control Points tab, provided there are control points existing,
  if one clicks on a point in the selector at the bottom, the point is
  highlighted and a little box appears next to the control point. If one
  then clicks in the blank space (eg. to the right of the Distance
  column) that point does not revert to the normal display. Further, the
  x,y and mode fields remain editable, though they do nothing. Same with
  the Delete and Fine-tune buttons on the right.

To manage notifications about this bug go to:
https://bugs.launchpad.net/hugin/+bug/803294/+subscriptions

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 779692] Re: Feature Request: Identify in Fast Preview to Show Image Number

2011-08-21 Thread tmodes
** Changed in: hugin
   Importance: Undecided = Wishlist

** Tags added: fastpreviewwindow identify

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/779692

Title:
  Feature Request: Identify in Fast Preview to Show Image Number

Status in Hugin - Panorama Tools GUI:
  New

Bug description:
  Hugin 2011.0 shortly before RC1.

  The identify function of the Fast Preview will highlight the button
  with the image number when the mouse hovers over an image.  This is
  useful when all image buttons are visible.  When they are not, the
  identification process becomes an trial and error process: scroll to
  the approximate list of buttons, hover over the image.  if it is in
  the previous or next row, try again.

  It would be nice if the image number would be also displayed on the
  preview itself, in a large font, same color as the image highlight,
  OSD style.

To manage notifications about this bug go to:
https://bugs.launchpad.net/hugin/+bug/779692/+subscriptions

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 830587] Re: Failed to complete stiching

2011-08-21 Thread tmodes
*** This bug is a duplicate of bug 814280 ***
https://bugs.launchpad.net/bugs/814280

** This bug has been marked a duplicate of bug 814280
   OSX 10.7 Hugin 2010.2 and later. gnumake Abort trap: 6 on execution of 
enblend.

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/830587

Title:
  Failed to complete stiching

Status in Hugin - Panorama Tools GUI:
  New

Bug description:
  When building a panorama foto, the process alted stating Abort trap
  6. Log report attached.

To manage notifications about this bug go to:
https://bugs.launchpad.net/hugin/+bug/830587/+subscriptions

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 779692] Re: Feature Request: Identify in Fast Preview to Show Image Number

2011-08-24 Thread tmodes
** Changed in: hugin
   Status: New = Triaged

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/779692

Title:
  Feature Request: Identify in Fast Preview to Show Image Number

Status in Hugin - Panorama Tools GUI:
  Triaged

Bug description:
  Hugin 2011.0 shortly before RC1.

  The identify function of the Fast Preview will highlight the button
  with the image number when the mouse hovers over an image.  This is
  useful when all image buttons are visible.  When they are not, the
  identification process becomes an trial and error process: scroll to
  the approximate list of buttons, hover over the image.  if it is in
  the previous or next row, try again.

  It would be nice if the image number would be also displayed on the
  preview itself, in a large font, same color as the image highlight,
  OSD style.

To manage notifications about this bug go to:
https://bugs.launchpad.net/hugin/+bug/779692/+subscriptions

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 785165] Re: hugin_hdrmerge on 64bit windows produces empty image

2011-08-27 Thread tmodes
Can not reproduce the bug with my own compiled version (but enblend from
64 bit package shows same bug). Assuming therefore it is related to 64
bit OpenEXR of packager (Matthew?)

** Changed in: hugin
   Status: New = Triaged

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/785165

Title:
  hugin_hdrmerge on 64bit windows produces empty image

Status in Hugin - Panorama Tools GUI:
  Triaged

Bug description:
  The hdrmerge step in hugin workflow: 
  hugin_hdrmerge.exe -m avg -c produces empty/blackimage (both tiff or exr) 
with size around 40-90k. There is no error reported in the console

  Tested for fo 2010.4.0final and
  HuginSetup_2011.0.0-rc1_64bit_Windows.exe when open the same project
  using 32 bit version, the result is OK.

  
  As using 32bit version is slower, I tested following workaround: Copy 32 bit 
version of hugin_hdrmerge.exe to 64 bit installation. Did not help..

  Jan

To manage notifications about this bug go to:
https://bugs.launchpad.net/hugin/+bug/785165/+subscriptions

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 834470] Re: Typo in Swedish translation

2011-08-27 Thread tmodes
Thanks for hint.
Fixed in 2a9d464ba703

** Changed in: hugin
   Status: New = Fix Committed

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/834470

Title:
  Typo in Swedish translation

Status in Hugin - Panorama Tools GUI:
  Fix Committed

Bug description:
  In sv.po we have the following:

  #: hugin1/hugin/PanoPanel.cpp:150
  msgid Lambert Cylindrical Equal Area
  msgstr Lambert Equal Area Azimuthal

  #: hugin1/hugin/PanoPanel.cpp:151
  msgid Lambert Equal Area Azimuthal
  msgstr Lambert Equal Area Azimuthal

  I.e. both strings are translated into the same. The first string should 
probably be something like
  msgstr Lambert Equal Area Cylindrical
  instead (it seems that in sv.po, the word cylindrical isn't translated at 
other places). Or perhaps just the original English string.

To manage notifications about this bug go to:
https://bugs.launchpad.net/hugin/+bug/834470/+subscriptions

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 836153] Re: Hugin crashed when mergin pictures

2011-08-28 Thread tmodes
*** This bug is a duplicate of bug 814280 ***
https://bugs.launchpad.net/bugs/814280

** This bug has been marked a duplicate of bug 814280
   OSX 10.7 Hugin 2010.2 and later. gnumake Abort trap: 6 on execution of 
enblend.

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/836153

Title:
  Hugin crashed when mergin pictures

Status in Hugin - Panorama Tools GUI:
  New

Bug description:
  see log-file enclosed, thank you.

To manage notifications about this bug go to:
https://bugs.launchpad.net/hugin/+bug/836153/+subscriptions

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 837542] Re: image stitching causes crush

2011-08-30 Thread tmodes
*** This bug is a duplicate of bug 814280 ***
https://bugs.launchpad.net/bugs/814280

** This bug has been marked a duplicate of bug 814280
   OSX 10.7 Hugin 2010.2 and later. gnumake Abort trap: 6 on execution of 
enblend.

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/837542

Title:
  image stitching causes crush

Status in Hugin - Panorama Tools GUI:
  New

Bug description:
  Under Lion OSX 10.7.1 Hugin crushes every time during the stiching
  process. After hitting the create panorama button Hugin creates
  temporary images but when it come sot delete those temporary images
  the sticking process stops with an error. The bug comes out with
  different images showing every time the same behavior. Temporary
  images are created but when Hugin starts to join them into one file
  and starts to delete temporary images then the program stops working
  showing an error message.

To manage notifications about this bug go to:
https://bugs.launchpad.net/hugin/+bug/837542/+subscriptions

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 836432] Re: Default branch 5539:7f8ae9b14a18 fails to build

2011-08-30 Thread tmodes
** Changed in: hugin
   Status: Confirmed = Fix Committed

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/836432

Title:
  Default branch 5539:7f8ae9b14a18 fails to build

Status in Hugin - Panorama Tools GUI:
  Fix Committed

Bug description:
  Attempting to build default branch 5539:7f8ae9b14a18 on Fedora 15 x86_64, 
build fails with error messages.
  src/hugin_script_interface/hsiPYTHON_wrap.cxx:12547:51: error: invalid use of 
incomplete type 'std::ifstream'
  
/usr/lib/gcc/x86_64-redhat-linux/4.6.0/../../../../include/c++/4.6.0/iosfwd:113:11:
 error: declaration of 'std::ifstream'

To manage notifications about this bug go to:
https://bugs.launchpad.net/hugin/+bug/836432/+subscriptions

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 840909] Re: Stitching panorama Hugin gives error

2011-09-05 Thread tmodes
*** This bug is a duplicate of bug 814280 ***
https://bugs.launchpad.net/bugs/814280

** This bug has been marked a duplicate of bug 814280
   OSX 10.7 Hugin 2010.2 and later. gnumake Abort trap: 6 on execution of 
enblend.

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/840909

Title:
  Stitching panorama Hugin gives error

Status in Hugin - Panorama Tools GUI:
  New

Bug description:
  Stitching panorama Hugin gives error

To manage notifications about this bug go to:
https://bugs.launchpad.net/hugin/+bug/840909/+subscriptions

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 841901] Re: log-file

2011-09-05 Thread tmodes
*** This bug is a duplicate of bug 709361 ***
https://bugs.launchpad.net/bugs/709361

see also https://answers.launchpad.net/hugin/+question/164377

** This bug has been marked a duplicate of bug 709361
   Panorama stitching fails if path contains parentheses

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/841901

Title:
  log-file

Status in Hugin - Panorama Tools GUI:
  New

Bug description:
  ===
  ***  Panorama makefile generated by Hugin   ***
  ===
  System information
  ===
  Operating System: Windows XP (5.1 Service Pack 3)
  Architecture: x86
  Number of logical processors: 2
  Physical memory: 2095532 kiB (49% occupied)
  Free space on disc: 53265 MiB
  Active codepage: 1252 (Western European Windows)
  ===
  Output options
  ===
  Hugin Version: 2011.0.0.0fd3e119979c built by Matthew Petroff
  Project file: C:\WINDOWS\TEMP\hug32.tmp
  Output prefix: 20110424 (7)-20110424 (9)
  Projection: Cylindrical (1)
  Field of view: 120 x 40
  Canvas dimensions: 5705 x 1983
  Crop area: (17,336) - (5658,1855)
  Output exposure value: 14.61
  Selected outputs
  Normal panorama
  * Blended panorama
  ===
  Input images
  ===
  Number of images in project file: 3
  Number of active images: 3
  Image 0: C:\Dokumente und Einstellungen\Hermann Ulbricht\Desktop\Coraya 
Divers 2011\20110424\20110424 (7).JPG
  Image 0: Size 3648x2432, Exposure: 14.64
  Image 1: C:\Dokumente und Einstellungen\Hermann Ulbricht\Desktop\Coraya 
Divers 2011\20110424\20110424 (8).JPG
  Image 1: Size 3648x2432, Exposure: 14.61
  Image 2: C:\Dokumente und Einstellungen\Hermann Ulbricht\Desktop\Coraya 
Divers 2011\20110424\20110424 (9).JPG
  Image 2: Size 3648x2432, Exposure: 14.57
  ===
  Testing programs
  ===
  Checking nona...
  nona is ok 
  Checking enblend...
  enblend is ok 
  Checking enfuse...
  enfuse is ok 
  Checking hugin_hdrmerge...
  hugin_hdrmerge is ok 
  Checking exiftool...
  exiftool is ok 
  ===
  Stitching panorama
  ===
  make: *** No rule to make target `7).JPG)', needed by `20110424 (7)-20110424 
(9).tif'.  Stop.

To manage notifications about this bug go to:
https://bugs.launchpad.net/hugin/+bug/841901/+subscriptions

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 845219] Re: Failed to complete panorama

2011-09-11 Thread tmodes
*** This bug is a duplicate of bug 814280 ***
https://bugs.launchpad.net/bugs/814280

** This bug has been marked a duplicate of bug 814280
   OSX 10.7 Hugin 2010.2 and later. gnumake Abort trap: 6 on execution of 
enblend.

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/845219

Title:
  Failed to complete panorama

Status in Hugin - Panorama Tools GUI:
  New

Bug description:
  See attached log

To manage notifications about this bug go to:
https://bugs.launchpad.net/hugin/+bug/845219/+subscriptions

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 815608] Re: Batch processor search directory for images is non-deterministic

2011-09-11 Thread tmodes
Hi Bruno,

finally found the cause of the trouble. Tried to fix in changeset 3d14a0984c83. 
Next changeset 37994b1b58d1 contains some more improvement to the algorithm 
(unrelated to the bug).
Please test, if this fixes the issue.

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/815608

Title:
  Batch processor search directory for images is non-deterministic

Status in Hugin - Panorama Tools GUI:
  New

Bug description:
  If I use Batch processor or File - Search Directory For... - Images,
  and pick a folder, I get different numbers of detected panoramas each
  time I click 'Start'.

  i.e. I can get 0, 1, 2 or 3 detected panoramas in the same folder with
  the same set of photos.

To manage notifications about this bug go to:
https://bugs.launchpad.net/hugin/+bug/815608/+subscriptions

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 791473] Re: reverse transform of (0, 0) yields nan with a, b, or c != 0

2011-09-11 Thread tmodes
Needs to be fixed in libpano13

** Changed in: hugin
   Status: New = Triaged

** Also affects: panotools
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/791473

Title:
  reverse transform of (0,0) yields nan with a,b, or c != 0

Status in Hugin - Panorama Tools GUI:
  Triaged
Status in Panorama Tools:
  New

Bug description:
  Hi all!

  I've stumbled upon a strange bug while using hsi, but I think it's not
  an hsi bug. If I have an image in a pto which has lens correction
  coefficients differnt from zero and try to reverse-transform image
  coordinates to pano coordinates, this produces (nan, nan) as output
  for the image origin. All other coordinate values seem to work just
  fine, and if the lens correction coefficients are all zero, the origin
  transforms correctly as well. A very small value for a, b or c will
  suffice to produce the bug.

  I failed to produce the bug using pano-trafo with coordinates of the
  image center, but then the transform never came out precisely at the
  pano center, either, so maybe I just didn't manage to find the proper
  parameters. I suspect the bug may be in hugin's wrapping code where
  the transformations are made into objects and the shift to image-
  center = 0,0 is made, and I'm half certain it wasn't there a few
  months ago.

  my system info is

  Betriebssystem: Linux 2.6.38-8-generic-tuxonice i686
  Architektur: 32 bit
  Freier Speicher:  -1831376 kiB [sic]

  Hugin
  Version: Pre-Release 2011.1.0.b1083a690f94
  Ressourcen-Pfad: /usr/local/share/hugin/xrc/
  Datenpfad: /usr/local/share/hugin/data/

  hugin is self-built - obviously with BUILD_HSI=ON.

  Find attached a compressed tar file with a pto, an image and a python
  script which I used to produce the error. I got this output on my
  machine:

  python sad.py
  image 0: ( 0.01 , 0.01 ) - ( 0.01 , 0.01 ) success = True
  image 1: ( 0.01 , 0.01 ) - ( 0.01 , 0.01 ) success = True
  image 0: ( 0.00 , 0.00 ) - ( 0.00 , 0.00 ) success = True
  image 1: ( 0.00 , 0.00 ) - ( nan , nan ) success = True

  Kay

To manage notifications about this bug go to:
https://bugs.launchpad.net/hugin/+bug/791473/+subscriptions

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 802094] Re: Automatically unlink stack if control points are present inside the stack

2011-09-11 Thread tmodes
** Changed in: hugin
   Importance: Undecided = Wishlist

** Changed in: hugin
   Status: New = Triaged

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/802094

Title:
  Automatically unlink stack if control points are present inside the
  stack

Status in Hugin - Panorama Tools GUI:
  Triaged

Bug description:
  Since control points are used to align images it's kind of counter-
  intuitive to have stacks linked when/if there's control points defined
  between the images of the stack. More than once I've had to restitch
  everything because the stacks were still linked.

  Also there's special case when there's one defined stack with control
  points and the optimizer does nothing if optimizing image positions
  (y,p,r) only.

  Screenie: http://i.imgur.com/v6E73.png

To manage notifications about this bug go to:
https://bugs.launchpad.net/hugin/+bug/802094/+subscriptions

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 734411] Re: Color of fast preview grid

2011-09-11 Thread tmodes
** Changed in: hugin
   Importance: Undecided = Wishlist

** Changed in: hugin
   Status: New = Triaged

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/734411

Title:
  Color of fast preview grid

Status in Hugin - Panorama Tools GUI:
  Triaged

Bug description:
  The grid in the current fast preview is IMHO too thick and too
  colorful.  This has no other apparent purpose than making it visible
  against all possible backgrounds.

  I would like to see the grid thinner (one pixel width) and either
  single color with a color palette choice and default setting; or same
  as the lines that delineate the crop.

  At the same time, the background color could use a color palette
  choice and a default setting as well.

To manage notifications about this bug go to:
https://bugs.launchpad.net/hugin/+bug/734411/+subscriptions

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 811864] Re: PTBatcherGUI annoying window handling

2011-09-11 Thread tmodes
The observed behaviour is related to the window manager. First it does not 
support the tray area. Second the virtual desktop seems to be implemented by 
only minimizing the windows, which are not on the active desktop.
wxWidgets 2.8 does not offer an option to get an information about the 
availability of the tray area. So deactivate the tray icon on *nix, this should 
restore the old behaviour. - therefore setting to incomplete.
If there are more information set the status to new again.

** Changed in: hugin
   Status: New = Incomplete

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/811864

Title:
  PTBatcherGUI annoying window handling

Status in Hugin - Panorama Tools GUI:
  Incomplete

Bug description:
  With 2011.2.0 the old Stich Now! is gone, I am using PTBatcherGUI
  instead.

  The window handling is very annoying. The main autobatcher window and
  the progress window are automatically if switch to another virtual
  desktop and back again.

  It would also be very nice if closing the hugin apllication would
  close (the not manually started) PTBatcherGUI instance, too.

To manage notifications about this bug go to:
https://bugs.launchpad.net/hugin/+bug/811864/+subscriptions

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 792896] Re: Fast Preview Hangs or Crashes since 2011.0

2011-09-13 Thread tmodes
Please test changeset b9bbb678382d: initialize some variables. I hope,
that this prevents the calling of the transformation with such big
values.

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/792896

Title:
  Fast Preview Hangs or Crashes since 2011.0

Status in Hugin - Panorama Tools GUI:
  Confirmed

Bug description:
  EDIT (August 6, 2011): summarized known information

  *WORKAROUND FOR USERS*: disable the Overview

  1- start Hugin
  2- load a project
  3- go to the Fast Preview Window.  don't touch anything else but described 
below as this could trigger the bug
  4- hit the button Show/Hide to hide the Overview
  5- quit Hugin
  Now Hugin should perform well.

  
  *AFFECTED SYSTEMS*

  - CPU: all systems with more than one thread, that is multi-core CPUs as well 
as single-core CPUs with hyperthreading.
  - Operating Systems: due to the different implementations of threading and 
OpenGL on different platform, some systems are more prone to error than others. 
 Mac OS X seems to be the least affected.  Windows seems to be the most 
affected.

  
  *AFFECTED VERSIONS*

  - All versions of Hugin since the introduction of the Overview in the Fast 
Preview are affected.  That is, all versions after revision 4808:8c577b320714 
2011-01-09 12:21:18
  - This includes the final releases of 2011.0.0 as well as all beta/candidate 
releases of 2011.2.0

  
  *SUMMARY FOR DEVELOPERS / BUG HUNTERS*

  This is most likely a threading issue. Lukáš' hypothesis: a race
  condition in OpenGL calls, when OGL is called by separate threads from
  both overview and fast preview. The reason is that OpenGL is not
  thread-safe and it can cause various problems when used within multi-
  threaded application.

  Run 'valgrind --tool=helgrind hugin' and try to reproduce the error to
  produce a useful backtrace like
  https://bugs.launchpad.net/hugin/+bug/792896/+attachment/2253077/+files
  /valgrind-out.txt

  
  *ORIGINAL BUG REPORT BELOW FOR COMPLETION:*

  Upgraded from 2010.4 to 2011.0.0 and it has hung 3 times in about 15
  sessions.  All three hangs happened while doing the same thing.
  new session, load images, load a lens profile, set the canvas size
  (Calculate optimal size), save-as and save profile then click on GL
  (fast preview) button.  Fast preview window comes up, shows anchor
  image and then hangs.

  Is not reproducible.  Running 2011.0.0.0fd3e119979c built by Matthew
  Petroff on 64-bit Win7.

To manage notifications about this bug go to:
https://bugs.launchpad.net/hugin/+bug/792896/+subscriptions

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 697039] Re: OSX 10.5 Leopard can't stitch

2011-09-13 Thread tmodes
No more comments ;-) So assuming it is fixed.

** Changed in: hugin
   Status: In Progress = Fix Committed

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/697039

Title:
  OSX 10.5 Leopard can't stitch

Status in Hugin - Panorama Tools GUI:
  Fix Committed

Bug description:
  I am using Hugin 2010.4.10 on Mac OS 10.5.8.

  I am unable to stitch panoramas using either the assistant Create
  Panorama button, or the Stitch now... button in the stitcher tab. I
  have successfully loaded 3 images, and used the auto align button in
  the assistant tab to align them (and could see in a preview window
  that they were indeed loaded and aligned and cropped successfully).
  However, when I try to create a panorama in either of the two ways, I
  get a error dialogue that says Error during stitching, and the
  following in the message log:

  echo: write: Bad file descriptor
  gnumake: *** [info] Error 1

  
  This is the entire message log.

  I get this error no matter what format I try to save the file as
  (tiff, png, jpg) and no matter what filename I attempt to give it.

  Am I doing something obviously wrong?

To manage notifications about this bug go to:
https://bugs.launchpad.net/hugin/+bug/697039/+subscriptions

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 749669] Re: crash opening image files with 'open project'

2011-09-13 Thread tmodes
Default branch (changeset d5a36b26e4af) shows now a warning when trying
to load an image instead of project file.

** Changed in: hugin
   Status: In Progress = Fix Committed

** Changed in: hugin
 Assignee: onomou (onomou) = (unassigned)

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/749669

Title:
  crash opening image files with 'open project'

Status in Hugin - Panorama Tools GUI:
  Fix Committed
Status in Fedora:
  Unknown

Bug description:
  This was reported in the fedora bugzilla by Robert Kief:
  https://bugzilla.redhat.com/show_bug.cgi?id=693111

  Steps to reproduce:

  Select File - Open.
  Change the pattern match at the bottom to 'All files (*).
  Select a TIFF or JPEG file.
  Click Open.
  crash_function: HuginBase::PanoramaMemento::loadPTScript

To manage notifications about this bug go to:
https://bugs.launchpad.net/hugin/+bug/749669/+subscriptions

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 679994] Re: Individual Drag Mode

2011-09-15 Thread tmodes
** Changed in: hugin
Milestone: None = 2011.2rc5

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/679994

Title:
  Individual Drag Mode

Status in Hugin - Panorama Tools GUI:
  Fix Committed

Bug description:
  currently in the fast preview, dragging an image will drag the whole
  group of images connected by CPs.

  because the initial position of an image has an influence on the
  optimization process, I would like to add an individual drag mode.  in
  that mode, only the image selected under the cursor will move.
  currently, my work around for this is to enter numeric values in the
  images tab.

  additionally, to improve the feedback of the process, I would like to
  see the image(s) being dragged become semi-transparent while the
  images in the background stay black  white.

  This task is still beyond my current skillset, but given enough time
  and persistence I might get to it, one day.

To manage notifications about this bug go to:
https://bugs.launchpad.net/hugin/+bug/679994/+subscriptions

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 697039] Re: OSX 10.5 Leopard can't stitch

2011-09-15 Thread tmodes
** Changed in: hugin
Milestone: None = 2011.2rc5

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/697039

Title:
  OSX 10.5 Leopard can't stitch

Status in Hugin - Panorama Tools GUI:
  Fix Committed

Bug description:
  I am using Hugin 2010.4.10 on Mac OS 10.5.8.

  I am unable to stitch panoramas using either the assistant Create
  Panorama button, or the Stitch now... button in the stitcher tab. I
  have successfully loaded 3 images, and used the auto align button in
  the assistant tab to align them (and could see in a preview window
  that they were indeed loaded and aligned and cropped successfully).
  However, when I try to create a panorama in either of the two ways, I
  get a error dialogue that says Error during stitching, and the
  following in the message log:

  echo: write: Bad file descriptor
  gnumake: *** [info] Error 1

  
  This is the entire message log.

  I get this error no matter what format I try to save the file as
  (tiff, png, jpg) and no matter what filename I attempt to give it.

  Am I doing something obviously wrong?

To manage notifications about this bug go to:
https://bugs.launchpad.net/hugin/+bug/697039/+subscriptions

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 852510] Re: Stitching fails (while running nona)

2011-09-17 Thread tmodes
I assume that your file names contains Non-ASCII characters. So rename
your files to names with only ASCII characters and try again.

This is a known issue (see
http://wiki.panotools.org/Hugin_FAQ#Windows:_International_Characters_in_Path
).

If that is not applicable, set status of ticket to New again and provide
pto file and filenames of the files.

** Changed in: hugin
   Status: New = Incomplete

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/852510

Title:
  Stitching fails (while running nona)

Status in Hugin - Panorama Tools GUI:
  Incomplete

Bug description:
  =
  ***  Panorama makefile generated by Hugin   ***
  ===
  System information
  ===
  Operating System: Windows 7 (6.1 )
  Architecture: AMD64
  Number of logical processors: 2
  Physical memory: 4092176 kiB (55% occupied)
  Free space on disc: 36076 MiB
  Active codepage: 1255 (Hebrew Windows)
  ===
  Output options
  ===
  Hugin Version: 2011.0.0.0f9fdaf56720 built by Matthew Petroff
  Project file: C:\Users\aran\AppData\Local\Temp\hugD3BC.tmp
  Output prefix: DSC_0441-DSC_0447
  Projection: Equirectangular (2)
  Field of view: 36 x 54
  Canvas dimensions: 2692 x 4038
  Crop area: (0,0) - (2692,4038)
  Output exposure value: 12.29
  Selected outputs
  Normal panorama
  * Blended panorama
  ===
  Input images
  ===
  Number of images in project file: 7
  Number of active images: 7
  Image 0: C:\Users\aran\Pictures\Image 0: Size 4288x2848, Exposure: 11.97
  Image 1: C:\Users\aran\Pictures\Image 1: Size 4288x2848, Exposure: 12.23
  Image 2: C:\Users\aran\Pictures\Image 2: Size 4288x2848, Exposure: 12.40
  Image 3: C:\Users\aran\Pictures\Image 3: Size 4288x2848, Exposure: 12.83
  Image 4: C:\Users\aran\Pictures\Image 4: Size 4288x2848, Exposure: 12.41
  Image 5: C:\Users\aran\Pictures\Image 5: Size 4288x2848, Exposure: 12.33
  Image 6: C:\Users\aran\Pictures\Image 6: Size 4288x2848, Exposure: 11.87
  ===
  Testing programs
  ===
  Checking nona...
  nona is ok 
  Checking enblend...
  enblend is ok 
  Checking enfuse...
  enfuse is ok 
  Checking hugin_hdrmerge...
  hugin_hdrmerge is ok 
  Checking exiftool...
  exiftool is ok 
  ===
  Stitching panorama
  ===
  C:/Program Files/Hugin/bin/nona  -z LZW -r ldr -m TIFF_m -o 
DSC_0441-DSC_0447 -i 0 C:/Users/aran/AppData/Local/Temp/hugD3BC.tmp
  ContractViolation: 
  Precondition violation!
  Unable to open file 'C:\Users\aran\Pictures\make: *** 
[DSC_0441-DSC_0447.tif] Error 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/hugin/+bug/852510/+subscriptions

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 811864] Re: PTBatcherGUI annoying window handling

2011-09-17 Thread tmodes
Hi Andreas,

thanks for feedback.
No need to test the other things. They were only for the case the fixes in 
default branch did not fixes the issue.

** Changed in: hugin
   Status: Incomplete = Fix Committed

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/811864

Title:
  PTBatcherGUI annoying window handling

Status in Hugin - Panorama Tools GUI:
  Fix Committed

Bug description:
  With 2011.2.0 the old Stich Now! is gone, I am using PTBatcherGUI
  instead.

  The window handling is very annoying. The main autobatcher window and
  the progress window are automatically if switch to another virtual
  desktop and back again.

  It would also be very nice if closing the hugin apllication would
  close (the not manually started) PTBatcherGUI instance, too.

To manage notifications about this bug go to:
https://bugs.launchpad.net/hugin/+bug/811864/+subscriptions

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 835970] Re: Traditional Chinese Translation

2011-09-17 Thread tmodes
Thanks you for your effort:
Your files does contain 2 small error (checked with msgfmt):
msgfmt -c zh_TW.po
zh_TW.po:336: number of format specifications in 'msgid' and 'msgstr' does not 
match
zh_TW.po:1087: `msgid' and `msgstr' entries do not both end with '\n'
msgfmt: found 2 fatal errors

The first one means that you removed a placeholder (%s in this case) from the 
translation, which is in original message. The place holders (characters 
prefixed with % sign) are replaced with the text at run time and needs to be 
preserved in the translation.
The second one is a removed line break (\n in the original message). This also 
needs to preserved in the translation.

Please provide a corrected file. Thanks.

Could you please give your name (in Latin characters), so we can give
credit to you? I can not read the Chinese characters.


** Changed in: hugin
   Status: New = Triaged

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/835970

Title:
  Traditional Chinese Translation

Status in Hugin - Panorama Tools GUI:
  Triaged

Bug description:
  Traditional Chinese is only being translated partially before. So I
  finished up most of it .

To manage notifications about this bug go to:
https://bugs.launchpad.net/hugin/+bug/835970/+subscriptions

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 852755] Re: Hugin crashed at the end of renering, twice.

2011-09-18 Thread tmodes
See
http://wiki.panotools.org/Hugin_FAQ#Enblend_error:_Mask_is_entirely_black.2C_but_white_image_was_not_identified_as_redundant

** Changed in: hugin
   Status: New = Incomplete

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/852755

Title:
  Hugin crashed at the end of renering, twice.

Status in Hugin - Panorama Tools GUI:
  Incomplete

Bug description:
  ===
  ***  Panorama makefile generated by Hugin   ***
  ===
  System information
  ===
  Software:

  System Software Overview:

System Version: Mac OS X 10.6.8 (10K549)
Kernel Version: Darwin 10.8.0
Boot Volume: Macintosh HD
Boot Mode: Normal
Computer Name: Jonty Levine’s Macbook Pro
User Name: Jonty Levine (Jonty)
Secure Virtual Memory: Enabled
64-bit Kernel and Extensions: No
Time since boot: 13 days 22:15

  Hardware:

  Hardware Overview:

Model Name: MacBook Pro
Model Identifier: MacBookPro5,5
Processor Name: Intel Core 2 Duo
Processor Speed: 2.26 GHz
Number Of Processors: 1
Total Number Of Cores: 2
L2 Cache: 3 MB
Memory: 4 GB
Bus Speed: 1.07 GHz
Boot ROM Version: MBP55.00AC.B03
SMC Version (system): 1.47f2
Serial Number (system): WQ942CDN66D
Hardware UUID: D54BBEAA-696D-5A02-A71E-73929DB6C4BA
Sudden Motion Sensor:
State: Enabled

  Disc usage
  Filesystem  Size   Used  Avail Capacity  Mounted on
  /dev/disk0s2   149Gi  123Gi   25Gi83%/
  devfs  123Ki  123Ki0Bi   100%/dev
  map -hosts   0Bi0Bi0Bi   100%/net
  map auto_home0Bi0Bi0Bi   100%/home
  /dev/disk2s3   931Gi  247Gi  684Gi27%/Volumes/Blue Box
  ===
  Output options
  ===
  Hugin Version: 2011.0.1 built by Harry van der Wolf
  Project file: 
/var/folders/7T/7Tmpg0QPH4OmQzlD2R0ODTI/-Tmp-/huginpto_8AQp12
  Output prefix: P1190224-43_±HDR
  Projection: Cylindrical (1)
  Field of view: 360 x 123
  Canvas dimensions: 12010 x 7040
  Crop area: (0,1553) - (12010,3995)
  Output exposure value: 3.73
  Selected outputs
  Normal panorama
  * Blended panorama
  ===
  Input images
  ===
  Number of images in project file: 20
  Number of active images: 20
  Image 0: /Users/Jonty/Desktop/P1190224_±HDR.jpg
  Image 0: Size 2448x3264, Exposure: 4.06
  Image 1: /Users/Jonty/Desktop/P1190225_±HDR.jpg
  Image 1: Size 2448x3264, Exposure: 4.00
  Image 2: /Users/Jonty/Desktop/P1190226_±HDR.jpg
  Image 2: Size 2448x3264, Exposure: 3.82
  Image 3: /Users/Jonty/Desktop/P1190227_±HDR.jpg
  Image 3: Size 2448x3264, Exposure: 3.65
  Image 4: /Users/Jonty/Desktop/P1190228_±HDR.jpg
  Image 4: Size 2448x3264, Exposure: 3.85
  Image 5: /Users/Jonty/Desktop/P1190229_±HDR.jpg
  Image 5: Size 2448x3264, Exposure: 3.58
  Image 6: /Users/Jonty/Desktop/P1190230_±HDR.jpg
  Image 6: Size 2448x3264, Exposure: 3.44
  Image 7: /Users/Jonty/Desktop/P1190231_±HDR.jpg
  Image 7: Size 2448x3264, Exposure: 3.50
  Image 8: /Users/Jonty/Desktop/P1190232_±HDR.jpg
  Image 8: Size 2448x3264, Exposure: 3.74
  Image 9: /Users/Jonty/Desktop/P1190233_±HDR.jpg
  Image 9: Size 2448x3264, Exposure: 3.91
  Image 10: /Users/Jonty/Desktop/P1190234_±HDR.jpg
  Image 10: Size 2448x3264, Exposure: 3.97
  Image 11: /Users/Jonty/Desktop/P1190235_±HDR.jpg
  Image 11: Size 2448x3264, Exposure: 3.70
  Image 12: /Users/Jonty/Desktop/P1190236_±HDR.jpg
  Image 12: Size 2448x3264, Exposure: 3.55
  Image 13: /Users/Jonty/Desktop/P1190237_±HDR.jpg
  Image 13: Size 2448x3264, Exposure: 3.35
  Image 14: /Users/Jonty/Desktop/P1190238_±HDR.jpg
  Image 14: Size 2448x3264, Exposure: 3.58
  Image 15: /Users/Jonty/Desktop/P1190239_±HDR.jpg
  Image 15: Size 2448x3264, Exposure: 3.79
  Image 16: /Users/Jonty/Desktop/P1190240_±HDR.jpg
  Image 16: Size 2448x3264, Exposure: 3.73
  Image 17: /Users/Jonty/Desktop/P1190241_±HDR.jpg
  Image 17: Size 2448x3264, Exposure: 3.46
  Image 18: /Users/Jonty/Desktop/P1190242_±HDR.jpg
  Image 18: Size 2448x3264, Exposure: 3.88
  Image 19: /Users/Jonty/Desktop/P1190243_±HDR.jpg
  Image 19: Size 2448x3264, Exposure: 4.08
  ===
  Testing programs
  ===
  Checking nona...[OK]
  Checking 

[Hugin-devs] [Bug 820556] Re: Danish translation

2011-09-18 Thread tmodes
** Changed in: hugin
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/820556

Title:
  Danish translation

Status in Hugin - Panorama Tools GUI:
  Fix Released

Bug description:
  Here is the beginning of a Danish translation of Hugin. The file has
  around 19% strings translated, but I'd like to contribute more, until
  I have translated (nearly) all strings. I hope I have filled in
  especially the leading comment lines correctly. If not, please feel
  free to correct them.

  I read, though, that you prefer translations be contributed through
  the version controlling system, so I'd like to be able to contribute
  the rest that way. My SourceForge username is lauritsen.

To manage notifications about this bug go to:
https://bugs.launchpad.net/hugin/+bug/820556/+subscriptions

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 789902] Re: Allow user to flip X coordinate for panosphere view

2011-09-18 Thread tmodes
** Changed in: hugin
   Status: Fix Committed = Triaged

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/789902

Title:
  Allow user to flip X coordinate for panosphere view

Status in Hugin - Panorama Tools GUI:
  Triaged

Bug description:
  While the outside view on the panosphere in GL preview shows the
  left and right sides correctly from mathematical view-point
  (considering that the camera is inside the sphere), the mirror view
  seems rather unnatural to me as a user.

  It would be nice to add an option to flip the x coordinates so that
  the image is not mirrored. (I cannot say without really seeing, but I
  guess that keeping the outside view would be okay.)

To manage notifications about this bug go to:
https://bugs.launchpad.net/hugin/+bug/789902/+subscriptions

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 815608] Re: Batch processor search directory for images is non-deterministic

2011-09-18 Thread tmodes
** Changed in: hugin
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/815608

Title:
  Batch processor search directory for images is non-deterministic

Status in Hugin - Panorama Tools GUI:
  Fix Released

Bug description:
  If I use Batch processor or File - Search Directory For... - Images,
  and pick a folder, I get different numbers of detected panoramas each
  time I click 'Start'.

  i.e. I can get 0, 1, 2 or 3 detected panoramas in the same folder with
  the same set of photos.

To manage notifications about this bug go to:
https://bugs.launchpad.net/hugin/+bug/815608/+subscriptions

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 823823] Re: mask tab:images become white

2011-09-18 Thread tmodes
** Changed in: hugin
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/823823

Title:
  mask tab:images become white

Status in Hugin - Panorama Tools GUI:
  Fix Released

Bug description:
  Hugin 2011.2.0-rc2_32bit on Windows Vista.

  In the Mask tab, after changing the image scale to 100%, the images
  lose contrast and/or saturation each time I switch images, until the
  images become almost entirely gray. A workaround is exiting Hugin and
  reloading the project, but the same issue then starts again as soon as
  I choose 100% scale. This problem does not appear in other scales (I
  tested all of them, 25%, 50%, 150% and 200%) but once Hugin starts
  graying the picture, changing the scale won't correct the contrast,
  the only way I could find is exiting Hugin entirely. Another
  workaround is never using 100% and using 75% or 150% instead. I tested
  2 projects and both had the same issue.

To manage notifications about this bug go to:
https://bugs.launchpad.net/hugin/+bug/823823/+subscriptions

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 678801] Re: Hugin crashes when clicking button Create new project

2011-09-18 Thread tmodes
The last change is quite old. If this still happens, please give more
details and set status to New again.

** Changed in: hugin
   Status: Triaged = Incomplete

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/678801

Title:
  Hugin crashes when clicking button Create new project

Status in Hugin - Panorama Tools GUI:
  Incomplete

Bug description:
  OS: MacOSX 10.4.11
  SVN: up to 2916 (but for a long time already)
  both for the bundle (xcode project) as well as the cmake version.

  
  Hugin crashes when clicking button Create new project. This does not happen 
when hugin has been freshly started and clicking the button, but after having 
worked on a project. This happens in about 95%. Sometimes it is possible to 
start a new project after having done a project.

To manage notifications about this bug go to:
https://bugs.launchpad.net/hugin/+bug/678801/+subscriptions

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 679512] Re: Enblend fails from Hugin, works from cmd line

2011-09-18 Thread tmodes
Fixed quoting of TMP variable in makefile in default branch

** Changed in: hugin
   Status: Confirmed = Fix Committed

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/679512

Title:
  Enblend fails from Hugin, works from cmd line

Status in Hugin - Panorama Tools GUI:
  Fix Committed

Bug description:
  This bug has actually been reported a number of times, but closed out
  because people assumed it was simply a problem of not enough disk
  space. I have a case that proves this is not the case... and have
  added some information that will hopefully help diagnose the real
  problem.

  My bottom line: Enblend works from command prompt, not from Hugin, and
  I suspect the issue is that Hugin may not be properly setting
  environment variables before launching Enblend.

  ERROR SEEN (during stitching, when directly run by Hugin):
  enblend: info: loading next image: pLTRR.tif 1/1
  enblend: info: loading next image: pLTRR0001.tif 1/1

  enblend: an exception occured
  enblend: enblend: unable to create image swap file name.

  enblend: info: remove invalid output image pLTRR.tif
  make: *** [pLTRR.tif] Error 1

  HOWEVER: there is no error if the exact command listed in the Hugin
  window is run from command line!

  i.e., I copy the command, open a command prompt, go to the project folder
   f:
   cd \photos\pLTRR

  ...and paste in the enblend command:
  C:/apps/photo/Hugin/bin/enblend --compression LZW -w -f12764x5389 -o 
pLTRR.tif pLTRR.tif pLTRR0001.tif pLTRR0002.tif pLTRR0003.tif 
pLTRR0004.tif pLTRR0005.tif pLTRR0006.tif pLTRR0007.tif pLTRR0008.tif 
pLTRR0009.tif pLTRR0010.tif pLTRR0011.tif pLTRR0012.tif pLTRR0013.tif 
pLTRR0014.tif pLTRR0015.tif pLTRR0016.tif pLTRR0017.tif pLTRR0018.tif 
pLTRR0019.tif pLTRR0020.tif pLTRR0021.tif pLTRR0022.tif pLTRR0023.tif 
pLTRR0024.tif pLTRR0025.tif pLTRR0026.tif pLTRR0027.tif pLTRR0028.tif 
pLTRR0029.tif pLTRR0030.tif pLTRR0031.tif pLTRR0032.tif pLTRR0033.tif 
pLTRR0034.tif pLTRR0035.tif pLTRR0036.tif pLTRR0037.tif pLTRR0038.tif 
pLTRR0039.tif pLTRR0040.tif pLTRR0041.tif pLTRR0042.tif 

  ENVIRONMENT
  WinXP SP3, Hugin 2010.1.0.5161 built by Zoran
  C: drive does NOT have enough space
  F: drive has plenty of space (30+GB free)
  Project is on F:; 
  TMP and TEMP vars point to f:\temp\WinTmp
  Hugin temp setting points to f:\temp\HuginTmp

  SI FILEMON MONITOR LOG shows...
  From the command prompt, Enblend uses F:\temp\WinTmp as it should.
  From within Hugin, Enblend dies without attempting to create a temp file at 
all!

  THE BIG QUESTION
  What is different between calling Enblend from the command prompt vs from 
Hugin?

  My strong suspicion: Hugin improperly sets environment variables
  before launching Enblend

To manage notifications about this bug go to:
https://bugs.launchpad.net/hugin/+bug/679512/+subscriptions

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 726615] Re: Translatable string corrections

2011-09-18 Thread tmodes
Thanks for report. Fixed in default branch. Needs to be transferred into
the po files and translated.

** Changed in: hugin
   Status: Confirmed = Fix Committed

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/726615

Title:
  Translatable string corrections

Status in Hugin - Panorama Tools GUI:
  Fix Committed

Bug description:
  A few more trivial translatable string suggestions noticed while
  updating en_GB:

  I think this should be projection's:
  #: hugin1/hugin/GLPreviewFrame.cpp:604 hugin1/hugin/PreviewFrame.cpp:301
  msgid Resets the projections parameters to their default values.

  In the following, gray and center are inconsistently spelt the British way:
  #: translations/xrc.cpp:496 xrc.cpp:496
  msgid Vignetting Centre (Vx, Vy):
  #: translations/xrc.cpp:789 translations/xrc.cpp:790 xrc.cpp:789 xrc.cpp:790
  msgid Grey picker
  #: translations/xrc.cpp:794 xrc.cpp:794
  * A grey line indicates there are no control points, but the image pair 

To manage notifications about this bug go to:
https://bugs.launchpad.net/hugin/+bug/726615/+subscriptions

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 814280] Re: OSX 10.7 Hugin 2010.2 and later. gnumake Abort trap: 6 on execution of enblend.

2011-09-19 Thread tmodes
@Justin

Your error is a different one and completely unrelated to the bug in this 
ticket.
In your case the experimental gpu code in nona is crashing. Deactivate gpu 
remapping in the preferences and try again.

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/814280

Title:
  OSX 10.7 Hugin 2010.2 and later. gnumake Abort trap: 6 on execution of
  enblend.

Status in Hugin - Panorama Tools GUI:
  Confirmed

Bug description:
  In Mac OS X 10.7 Lion, the stitching process runs smoothly for a
  while, then Enblend or Enfuse stops abruptly with an error.

  The workaround is to use the Enblend and Enfuse versions for Mac OS X
  10.4 Tiger that are inside the dmg in the enblend-enfuse-4.0 folder.

  Bug 830053 has been reported to Enblend.

To manage notifications about this bug go to:
https://bugs.launchpad.net/hugin/+bug/814280/+subscriptions

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 792896] Re: Fast Preview Hangs or Crashes since 2011.0

2011-09-19 Thread tmodes
Hi Felix,

thanks for report. That sound promising.

For the other issue, please open new ticket. I observed also a similar
behaviour, but had not yet the time to track it down.

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/792896

Title:
  Fast Preview Hangs or Crashes since 2011.0

Status in Hugin - Panorama Tools GUI:
  Confirmed

Bug description:
  EDIT (August 6, 2011): summarized known information

  *WORKAROUND FOR USERS*: disable the Overview

  1- start Hugin
  2- load a project
  3- go to the Fast Preview Window.  don't touch anything else but described 
below as this could trigger the bug
  4- hit the button Show/Hide to hide the Overview
  5- quit Hugin
  Now Hugin should perform well.

  
  *AFFECTED SYSTEMS*

  - CPU: all systems with more than one thread, that is multi-core CPUs as well 
as single-core CPUs with hyperthreading.
  - Operating Systems: due to the different implementations of threading and 
OpenGL on different platform, some systems are more prone to error than others. 
 Mac OS X seems to be the least affected.  Windows seems to be the most 
affected.

  
  *AFFECTED VERSIONS*

  - All versions of Hugin since the introduction of the Overview in the Fast 
Preview are affected.  That is, all versions after revision 4808:8c577b320714 
2011-01-09 12:21:18
  - This includes the final releases of 2011.0.0 as well as all beta/candidate 
releases of 2011.2.0

  
  *SUMMARY FOR DEVELOPERS / BUG HUNTERS*

  This is most likely a threading issue. Lukáš' hypothesis: a race
  condition in OpenGL calls, when OGL is called by separate threads from
  both overview and fast preview. The reason is that OpenGL is not
  thread-safe and it can cause various problems when used within multi-
  threaded application.

  Run 'valgrind --tool=helgrind hugin' and try to reproduce the error to
  produce a useful backtrace like
  https://bugs.launchpad.net/hugin/+bug/792896/+attachment/2253077/+files
  /valgrind-out.txt

  
  *ORIGINAL BUG REPORT BELOW FOR COMPLETION:*

  Upgraded from 2010.4 to 2011.0.0 and it has hung 3 times in about 15
  sessions.  All three hangs happened while doing the same thing.
  new session, load images, load a lens profile, set the canvas size
  (Calculate optimal size), save-as and save profile then click on GL
  (fast preview) button.  Fast preview window comes up, shows anchor
  image and then hangs.

  Is not reproducible.  Running 2011.0.0.0fd3e119979c built by Matthew
  Petroff on 64-bit Win7.

To manage notifications about this bug go to:
https://bugs.launchpad.net/hugin/+bug/792896/+subscriptions

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 686251] Re: preview window incorrect cropping

2011-09-19 Thread tmodes
Fixed in rev. e4cb6687061e

** Changed in: hugin
   Status: Confirmed = Fix Committed

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/686251

Title:
  preview window incorrect cropping

Status in Hugin - Panorama Tools GUI:
  Fix Committed

Bug description:
  I have a 360 degree panorama. when I crop left-right at 0,max
  (max=total hsize). The preview window shows the right crop edge left
  of the edge of the window.

  In the attached screenshot you can see that while image 52 wraps from
  0 degrees to 360 degrees, the whole left side of image 52 is outside
  the cropping range while in fact it isn't.

To manage notifications about this bug go to:
https://bugs.launchpad.net/hugin/+bug/686251/+subscriptions

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 678845] Re: Function of undo/redo buttons unclear

2011-09-19 Thread tmodes
Fixed in rev. aca929089b42

** Changed in: hugin
   Status: Confirmed = Fix Committed

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/678845

Title:
  Function of undo/redo buttons unclear

Status in Hugin - Panorama Tools GUI:
  Fix Committed

Bug description:
  Back/forward buttons undo/redo separate steps of actions that appear to be 
*one* action to the user, e.g. straightening in the preview window. In other 
words: Straightening is one click for the user but it takes several clicks onto 
the undo button to revert all subsequent changes that were made by the 
straightening funtion. 
  This is confusing to the user. If there is nothing to be found where this 
behaviour makes sense this should be changed. Otherwise it should be made a 
preference unchecked by default.

To manage notifications about this bug go to:
https://bugs.launchpad.net/hugin/+bug/678845/+subscriptions

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 679660] Re: Make exif copy optional

2011-09-21 Thread tmodes
Implemented in changeset 5afc2e447bc8
(only roughly based on provided patch, mostly new written because of new 
makefilelib)

** Changed in: hugin
   Status: Triaged = Fix Committed

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/679660

Title:
  Make exif copy optional

Status in Hugin - Panorama Tools GUI:
  Fix Committed

Bug description:
  Running exiftool can take an extremely long time for very large
  panoramas, and in any case leaves behind numerous temp files.  So some
  people would prefer not to do that.

  This patch adds a checkbox in the preferences dialog, and a
  corresponding configuration setting, that selects whether or not
  exiftool commands will be included in the  stitching control makefile.
  The default is to run exiftool.

To manage notifications about this bug go to:
https://bugs.launchpad.net/hugin/+bug/679660/+subscriptions

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 830655] Re: OS X Hugin reassigns Completed PTBatcherGUI queue list processes

2011-09-26 Thread tmodes
No comment?
Assuming it is fixed.

** Changed in: hugin
   Status: In Progress = Fix Committed

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/830655

Title:
  OS X Hugin reassigns Completed PTBatcherGUI queue list processes

Status in Hugin - Panorama Tools GUI:
  Fix Committed

Bug description:
  This bug occurs in OS X Hugin. Hugin reassigns completed stitch
  processes listed in the PTBatcherGUI queue list to the active project
  stitch settings for those completed processes that match the active
  Project name and when any of the Hugin Stitcher controls have received
  a changing user input subsequent to executing the previous stitch
  process. Some examples are changing the state (even then restoring to
  the previous state) for Projection, Size or Output format settings
  (including Quality) or checking and unchecking a Panorama Output check
  control.  The status for all these reassigned  processes changes to
  Waiting and PTBatcherGUI reprocesses them according to the changed
  settings in a normal fashion prompting to overwrite any existing
  outputs. The bug changes the PTBatcherGUI queue list moments before
  the “Specify output prefix” dialog box appears. The workaround it to
  clear the PTBatcherGUI queue after a stitch is complete.

  To easily observe this bug use a small file image, two image project.
  Call it project A. Make a stitch named QQQ. Without clearing any of
  the PTBatcherGUI list make another identical stitch named WWW.
  Position the PTBatcherGUI window so that Status column will be visible
  at all times. Change any Hugin Stitcher setting. Start another stitch.
  Observe the change to the PTBatcherGUI list Status column prior to
  naming this last stitch EEE. Save the Hugin Project A and save-as it
  to be Project B. Perform similar tests as for Project A but use
  different output names. You should see only the Project B list entries
  being reassigned. Close out Project B and reload Project A. Again
  perform similar tests. This time you should see only the Project A
  list entries being reassigned.

  This behavior was observed in OS X 10.6.8 Intel and OS X 10.5.8 PPC or
  Hugin-2011.2.0_rc3.  Similar behavior was observed on a Tiger Intel
  system when testing prior versions of Hugin that first introduced the
  send to PTBatcherGUI method of performing all batch processes.

To manage notifications about this bug go to:
https://bugs.launchpad.net/hugin/+bug/830655/+subscriptions

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 858767] Re: error when stitching

2011-09-26 Thread tmodes
http://wiki.panotools.org/Hugin_FAQ#enblend:_excessive_overlap_detected

** Changed in: hugin
   Status: New = Incomplete

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/858767

Title:
  error when stitching

Status in Hugin - Panorama Tools GUI:
  Incomplete

Bug description:
  this is the log I get:

  
  ===
  ***  Panorama makefile generated by Hugin   ***
  ===
  System information
  ===
  Software:

  System Software Overview:

System Version: Mac OS X 10.7.1 (11B2118)
Kernel Version: Darwin 11.0.1
Boot Volume: Macintosh HD
Boot Mode: Normal
Computer Name: Andreas
User Name: 
Secure Virtual Memory: Enabled
64-bit Kernel and Extensions: Yes
Time since boot: 3 days 15:28

  Hardware:

  Hardware Overview:

Model Name: MacBook Air
Model Identifier: MacBookAir4,2
Processor Name: Intel Core i5
Processor Speed: 1,7 GHz
Number of Processors: 1
Total Number of Cores: 2
L2 Cache (per Core): 256 KB
L3 Cache: 3 MB
Memory: 4 GB
Boot ROM Version: MBA41.0077.B08
SMC Version (system): 1.73f63
Serial Number (system): C02G80A4DJWQ
Hardware UUID: 69BC9495-E443-5C1D-A792-1B3C554999A1

  Disc usage
  Filesystem  Size   Used  Avail Capacity  Mounted on
  /dev/disk0s2   112Gi   92Gi   20Gi82%/
  devfs  184Ki  184Ki0Bi   100%/dev
  map -hosts   0Bi0Bi0Bi   100%/net
  map auto_home0Bi0Bi0Bi   100%/home
  localhost:/agCzmG4-3HyeiKh7oLH6_J  112Gi  112Gi0Bi   100%
/Volumes/MobileBackups
  ===
  Output options
  ===
  Hugin Version: 2011.0.1 built by Harry van der Wolf
  Project file: /var/folders/lt/qf24318j7zlggvvpd75qysfcgn/T/huginpto_HDivoQ
  Output prefix: P1030633-P1030643n
  Projection: Cylindrical (1)
  Field of view: 82 x 66
  Canvas dimensions: 7745 x 7029
  Crop area: (1018,1536) - (6722,6517)
  Output exposure value: 14.44
  Selected outputs
  Normal panorama
  * Blended panorama
  ===
  Input images
  ===
  Number of images in project file: 10
  Number of active images: 10
  Image 0: /Users/andreasgamlau/Desktop/P1030633.JPG
  Image 0: Size 3776x2520, Exposure: 14.14
  Image 1: /Users/andreasgamlau/Desktop/P1030634.JPG
  Image 1: Size 3776x2520, Exposure: 14.13
  Image 2: /Users/andreasgamlau/Desktop/P1030636.JPG
  Image 2: Size 3776x2520, Exposure: 14.59
  Image 3: /Users/andreasgamlau/Desktop/P1030637.JPG
  Image 3: Size 3776x2520, Exposure: 14.59
  Image 4: /Users/andreasgamlau/Desktop/P1030638.JPG
  Image 4: Size 3776x2520, Exposure: 14.44
  Image 5: /Users/andreasgamlau/Desktop/P1030639.JPG
  Image 5: Size 3776x2520, Exposure: 14.45
  Image 6: /Users/andreasgamlau/Desktop/P1030640.JPG
  Image 6: Size 3776x2520, Exposure: 14.45
  Image 7: /Users/andreasgamlau/Desktop/P1030641.JPG
  Image 7: Size 3776x2520, Exposure: 14.53
  Image 8: /Users/andreasgamlau/Desktop/P1030642.JPG
  Image 8: Size 3776x2520, Exposure: 14.54
  Image 9: /Users/andreasgamlau/Desktop/P1030643.JPG
  Image 9: Size 3776x2520, Exposure: 14.54
  ===
  Testing programs
  ===
  Checking nona...[OK]
  Checking enblend...[OK]
  Checking enfuse...[OK]
  Checking hugin_hdrmerge...[OK]
  Checking exiftool...[OK]
  ===
  Stitching panorama
  ===
  
/Applications/Hugin/Hugin.app/Contents/Resources/HuginStitchProject.app/Contents/MacOS/nona
  -z LZW -r ldr -m TIFF_m -o P1030633-P1030643n -i 0 
/var/folders/lt/qf24318j7zlggvvpd75qysfcgn/T/huginpto_HDivoQ
  
/Applications/Hugin/Hugin.app/Contents/Resources/HuginStitchProject.app/Contents/MacOS/nona
  -z LZW -r ldr -m TIFF_m -o P1030633-P1030643n -i 1 
/var/folders/lt/qf24318j7zlggvvpd75qysfcgn/T/huginpto_HDivoQ
  
/Applications/Hugin/Hugin.app/Contents/Resources/HuginStitchProject.app/Contents/MacOS/nona
  -z LZW -r ldr -m TIFF_m -o P1030633-P1030643n -i 2 
/var/folders/lt/qf24318j7zlggvvpd75qysfcgn/T/huginpto_HDivoQ
  

[Hugin-devs] [Bug 840677] Re: Fast Panorama Window always opens with Overview mode shown

2011-09-26 Thread tmodes
Still valid? Or is it fixed with the other bug?

** Changed in: hugin
   Status: New = Incomplete

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/840677

Title:
  Fast Panorama Window always opens with Overview mode shown

Status in Hugin - Panorama Tools GUI:
  Incomplete

Bug description:
  Hugin 5543:5ae90ab6bbbd just built on Fedora 15 x86_64. 
  my .hugin file has 'overview_hidden=1', but FPW always opens with overview 
mode shown.
  As my system seems to be very sensitive to the FPW bug, this has made this 
build unusable. Every project thus far, FPW opens and is frozen, trying to 
close FPW crashes hugin.

To manage notifications about this bug go to:
https://bugs.launchpad.net/hugin/+bug/840677/+subscriptions

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 791815] Re: default branch-selecting mosiac drag mode clips view in FPW

2011-09-26 Thread tmodes
It's not so easy, also with non-zero translation parameters you can change 
yaw/pitch/roll with normal drag mode. Automatic switching back to panosphere 
mode would make this option not working. 
I added a small warning and better synchronized both choice boxes (changeset 
c1a3cf06612c). Maybe the message text needs to be more concrete (I'm open for 
proposals).

** Changed in: hugin
   Status: New = Fix Committed

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/791815

Title:
  default branch-selecting mosiac drag mode clips view in FPW

Status in Hugin - Panorama Tools GUI:
  Fix Committed

Bug description:
  Default branch, hgb17bf4060548.
  If I load images into hugin, optimise and choose mosaic drag mode in Fast 
preview Window, the FPW image is displayed with the ends clipped. The ends have 
a 'ragged' appearance. 
  If I then choose normal drag mode, the ends of the full image can be seen by 
dragging left or right, but the full horizontal field of view seems impossible 
to recover. 
  If the project is stitched the result includes the end bits that are not 
shown FPW.
  If mosaic drag mode is not selected the problem does not arise.
  I have been able to reproduce the effect with two different projects.

To manage notifications about this bug go to:
https://bugs.launchpad.net/hugin/+bug/791815/+subscriptions

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 679914] Re: Ability to drag individual images in group

2011-09-26 Thread tmodes
Already implemented.

** Changed in: hugin
   Status: Triaged = Fix Released

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/679914

Title:
  Ability to drag individual images in group

Status in Hugin - Panorama Tools GUI:
  Fix Released

Bug description:
  Once images are linked by control points they drag/rotate as a unit in
  the fast preview window. Normally this is a good thing.

  However, if the optimizer puts an image somewhere strange because of a
  wonky control point, it would be really nice if the previewer allowed
  moving that one image to where it belongs without having to erase
  every control point on it first (the offending control point(s) do get
  deleted or fixed, of course).

  Right now the only way to fix it is to manually edit its position
  settings in the 'images' tab.

To manage notifications about this bug go to:
https://bugs.launchpad.net/hugin/+bug/679914/+subscriptions

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 858214] Re: Simplified Chinese Translation

2011-09-28 Thread tmodes
Thanks for your contribution. Committed to default branch.

** Changed in: hugin
   Status: New = Fix Committed

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/858214

Title:
  Simplified Chinese Translation

Status in Hugin - Panorama Tools GUI:
  Fix Committed

Bug description:
  There is the Simplified Chinese Translation for Hugin (2011/9/24).

To manage notifications about this bug go to:
https://bugs.launchpad.net/hugin/+bug/858214/+subscriptions

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 696949] Re: Error during stitching during the final panorama creation

2011-09-28 Thread tmodes
*** This bug is a duplicate of bug 720556 ***
https://bugs.launchpad.net/bugs/720556

** This bug has been marked a duplicate of bug 720556
   Blend fails with mask entirely black.

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/696949

Title:
  Error during stitching during the final panorama creation

Status in Hugin - Panorama Tools GUI:
  New

Bug description:
  Running on MacOSX, using the assistant - all settings are default.

  Seems to be a problem with enblend or the way it is called:
   enblend: warning: failed to detect any seam
   enblend: mask is entirely black, but white image was not identified as 
redundant

  Full log attached.
  Regards
  RS

To manage notifications about this bug go to:
https://bugs.launchpad.net/hugin/+bug/696949/+subscriptions

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 678694] Re: EXR files quietly clipped (black rectangles in output)

2011-09-28 Thread tmodes
Hugin is using absolute ev values in the exr files. Therefore clipping can 
occur, when the value range of the exr file is overrun (as already found out).
A possible solution is the use relative ev values in the exr files (Implemented 
in changeset 7b8ada736647). This changes the behaviour when outputting exr 
files. Now the output exposure value has an influence on the exr files and 
needs to be set to a middle exposure also for exr output (when setting the 
output exposure value to zero, the old behaviour is retained). I hope that this 
fixes the overflow and the final output has no more black areas. 
Please test, if this does not break other side of the exr output and report 
back. Thanks.

** Changed in: hugin
   Status: Confirmed = Fix Committed

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/678694

Title:
  EXR files quietly clipped (black rectangles in output)

Status in Hugin - Panorama Tools GUI:
  Fix Committed

Bug description:
  The EXR file format has a maximum encoding value of 65504.   The Hugin
  data flow maintains the absolute exposure through use of the Ev field
  which effectively scales pixel values.   When using Hugin/Nona on an
  HDR series that includes very bright elements (such as a very bright
  sky with a very short exposure), some pixels end up with values above
  65504.   When these are written out by Nona, those pixels are written
  as NaN's in the EXR output file.

  If enblend is then used, the problem is further exacerbated.   A
  single NaN pixel results in NaN for entire rectangle of enblend's
  pyramids.   The end result are large black rectangles in the output
  file.

  If output is changed to TIFF, then everything works fine.

  Nona should warn when clipping occurs and then output the maximum
  possible value rather than a NaN.   I assume this is the OpenEXR
  library itself and probably affects other applications.   In fact, if
  a TIFF generated as above is opened in PhotoShop, it looks fine, but
  if it is resaved as EXR, the same NaN pixels are created.

To manage notifications about this bug go to:
https://bugs.launchpad.net/hugin/+bug/678694/+subscriptions

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


[Hugin-devs] [Bug 862331] Re: error when stitching

2011-09-29 Thread tmodes
*** This bug is a duplicate of bug 814280 ***
https://bugs.launchpad.net/bugs/814280

Read the README

** This bug has been marked a duplicate of bug 814280
   OSX 10.7 Hugin 2010.2 and later. gnumake Abort trap: 6 on execution of 
enblend.

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/862331

Title:
  error when stitching

Status in Hugin - Panorama Tools GUI:
  New

Bug description:
  ===
  ***  Panorama makefile generated by Hugin   ***
  ===
  System information
  ===
  Software:

  System Software Overview:

System Version: Mac OS X 10.7.1 (11B26)
Kernel Version: Darwin 11.1.0
Boot Volume: Veelishous
Boot Mode: Normal
Computer Name: V Morrison’s MacBook Pro
User Name: Veelishous (VMorrsion)
Secure Virtual Memory: Enabled
64-bit Kernel and Extensions: Yes
Time since boot: 2:12

  Hardware:

  Hardware Overview:

Model Name: MacBook Pro
Model Identifier: MacBookPro4,1
Processor Name: Intel Core 2 Duo
Processor Speed: 2.4 GHz
Number of Processors: 1
Total Number of Cores: 2
L2 Cache: 3 MB
Memory: 2 GB
Bus Speed: 800 MHz
Boot ROM Version: MBP41.00C1.B03
SMC Version (system): 1.27f3
Serial Number (system): W8833GDXYJX
Hardware UUID: 3BC2C88E-7FCF-5D01-B84C-06B640F1FD83
Sudden Motion Sensor:
State: Enabled

  Disc usage
  Filesystem  Size   Used  Avail Capacity  Mounted on
  /dev/disk0s2   186Gi  148Gi   37Gi80%/
  devfs  179Ki  179Ki0Bi   100%/dev
  map -hosts   0Bi0Bi0Bi   100%/net
  map auto_home0Bi0Bi0Bi   100%/home
  localhost:/C9TpkBlhXBP8u4Q3shJl3j  186Gi  186Gi0Bi   100%
/Volumes/MobileBackups
  ===
  Output options
  ===
  Hugin Version: 2011.0.1 built by Harry van der Wolf
  Project file: /var/folders/w7/wtz5cvws0vxg0cp8d675lj74gn/T/huginpto_Amob9K
  Output prefix: raa
  Projection: Cylindrical (1)
  Field of view: 263 x 45
  Canvas dimensions: 7957 x 1451
  Crop area: (794,119) - (7166,1332)
  Output exposure value: 14.12
  Selected outputs
  Normal panorama
  * Blended panorama
  ===
  Input images
  ===
  Number of images in project file: 6
  Number of active images: 6
  Image 0: /Users/VMorrsion/Desktop/IMG_0100.JPG
  Image 0: Size 3088x2056, Exposure: 14.61
  Image 1: /Users/VMorrsion/Desktop/IMG_0101.JPG
  Image 1: Size 3088x2056, Exposure: 14.42
  Image 2: /Users/VMorrsion/Desktop/IMG_0102.JPG
  Image 2: Size 3088x2056, Exposure: 13.75
  Image 3: /Users/VMorrsion/Desktop/IMG_0103.JPG
  Image 3: Size 3088x2056, Exposure: 13.68
  Image 4: /Users/VMorrsion/Desktop/IMG_0104.JPG
  Image 4: Size 3088x2056, Exposure: 13.77
  Image 5: /Users/VMorrsion/Desktop/IMG_0105.JPG
  Image 5: Size 3088x2056, Exposure: 14.48
  ===
  Testing programs
  ===
  Checking nona...[OK]
  Checking enblend...[OK]
  Checking enfuse...[OK]
  Checking hugin_hdrmerge...[OK]
  Checking exiftool...[OK]
  ===
  Stitching panorama
  ===
  
/Applications/Hugin/Hugin.app/Contents/Resources/HuginStitchProject.app/Contents/MacOS/nona
  -z LZW -r ldr -m TIFF_m -o raa -i 0 
/var/folders/w7/wtz5cvws0vxg0cp8d675lj74gn/T/huginpto_Amob9K
  
/Applications/Hugin/Hugin.app/Contents/Resources/HuginStitchProject.app/Contents/MacOS/nona
  -z LZW -r ldr -m TIFF_m -o raa -i 1 
/var/folders/w7/wtz5cvws0vxg0cp8d675lj74gn/T/huginpto_Amob9K
  
/Applications/Hugin/Hugin.app/Contents/Resources/HuginStitchProject.app/Contents/MacOS/nona
  -z LZW -r ldr -m TIFF_m -o raa -i 2 
/var/folders/w7/wtz5cvws0vxg0cp8d675lj74gn/T/huginpto_Amob9K
  
/Applications/Hugin/Hugin.app/Contents/Resources/HuginStitchProject.app/Contents/MacOS/nona
  -z LZW -r ldr -m TIFF_m -o raa -i 3 
/var/folders/w7/wtz5cvws0vxg0cp8d675lj74gn/T/huginpto_Amob9K
  
/Applications/Hugin/Hugin.app/Contents/Resources/HuginStitchProject.app/Contents/MacOS/nona
  -z LZW -r ldr -m TIFF_m -o raa -i 4 

[Hugin-devs] [Bug 697657] Re: UI improvement: delete key should remove CP's

2011-09-29 Thread tmodes
Fixed in changeset ae2983cb0c2f

** Changed in: hugin
   Status: Confirmed = Fix Committed

-- 
You received this bug notification because you are a member of Hugin
Developers, which is subscribed to Hugin.
https://bugs.launchpad.net/bugs/697657

Title:
  UI improvement: delete key should remove CP's

Status in Hugin - Panorama Tools GUI:
  Fix Committed

Bug description:
  in the CP tab, when i'm looking at CP's between a pair of images, I
  want to delete the bad ones. I might select the CP on the list below
  the images, or I might click on the CP itself. in both cases, pressing
  the 'delete' key on the keyboard should delete that CP.

To manage notifications about this bug go to:
https://bugs.launchpad.net/hugin/+bug/697657/+subscriptions

___
Mailing list: https://launchpad.net/~hugin-devs
Post to : hugin-devs@lists.launchpad.net
Unsubscribe : https://launchpad.net/~hugin-devs
More help   : https://help.launchpad.net/ListHelp


<    1   2   3   4   5   6   7   8   9   10   >