[Hugin-devs] [Bug 695142] Re: German translation

2011-01-01 Thread Yuv
updated the explanation at
http://wiki.panotools.org/Hugin_translation_guide#Common_mistakes

** 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/695142

Title:
  German translation

Status in Hugin - Panorama Tools GUI:
  Fix Committed

Bug description:
  Latest Updates on German Translation for Hugin 2010.4.0_rc3 by Carl von Einem



___
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 695068] Re: pano_trafo doesn't flush output, mixed use of C i/o and streams

2011-01-01 Thread Yuv
** Changed in: hugin
   Status: New = Confirmed

** Changed in: hugin
   Importance: Undecided = High

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

Title:
  pano_trafo doesn't flush output, mixed use of C i/o and streams

Status in Hugin - Panorama Tools GUI:
  Confirmed

Bug description:
  Hi all!

I've had an issue with pano_trafo: The output of the transformed coordinates 
wasn't flushed after each line, so I couldn't use it with a pipe on the output 
end from a Python process; the output just wouldn't come. I noticed that the 
source mixed C-style calls to fprintf() etc. with C++ stream i/o, which, if I 
am not mistaken, is considered prone to malfunction. Replacing the C-style i/o 
with stream i/o solved the problem for me.

At the same time I found it problematic to be limited to working on only one 
image at a time, since I wanted to work on control points. I extended 
pano_trafo to also work without the image number passed on the command line: If 
it doesn't receive the image number on the command line, it expects input in 
the form of triplets image nr x y

My hugin version is Pre-Release 2010.5.0.687a025dd22f, self-built on Kubuntu 
10.10.

Find enclosed a patch which reflects my modifications; I hope I did it right ;-)

With regards
Kay



___
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 695068] Re: pano_trafo doesn't flush output, mixed use of C i/o and streams

2011-01-01 Thread Yuv
** 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/695068

Title:
  pano_trafo doesn't flush output, mixed use of C i/o and streams

Status in Hugin - Panorama Tools GUI:
  Fix Committed

Bug description:
  Hi all!

I've had an issue with pano_trafo: The output of the transformed coordinates 
wasn't flushed after each line, so I couldn't use it with a pipe on the output 
end from a Python process; the output just wouldn't come. I noticed that the 
source mixed C-style calls to fprintf() etc. with C++ stream i/o, which, if I 
am not mistaken, is considered prone to malfunction. Replacing the C-style i/o 
with stream i/o solved the problem for me.

At the same time I found it problematic to be limited to working on only one 
image at a time, since I wanted to work on control points. I extended 
pano_trafo to also work without the image number passed on the command line: If 
it doesn't receive the image number on the command line, it expects input in 
the form of triplets image nr x y

My hugin version is Pre-Release 2010.5.0.687a025dd22f, self-built on Kubuntu 
10.10.

Find enclosed a patch which reflects my modifications; I hope I did it right ;-)

With regards
Kay



___
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 678763] Re: Pano13: struct Image initialization error

2011-01-01 Thread Yuv
** Project changed: hugin = panotools

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

Title:
  Pano13: struct Image initialization error

Status in Panorama Tools:
  Fix Committed

Bug description:
  The Pano13 source in the hugin SDK has a typo in line 849 of filter.c, in 
function SetImageDefaults(). It reads
  bzero(im-formatParam, sizeof(im-precomputedValue));
but should be
  bzero(im-precomputedValue, sizeof(im-precomputedValue));

This leaves 4 of the precomputed values uninitialized since formatParam starts 
4 words before precomputedValue and overwrites precomputedCount with (another) 
zero.  

Unlikely to cause malfunction.



___
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