[hugin-ptx] control point generator help needed

2010-12-24 Thread Emad ud din Btt
Dear all,

I need urgent help for a control point generator that can handle 300 images
360x180 architectural panoramas. Please! Mention best possible CP generator
and also share it's parameters or steps to follow.


*Emaad*
www.flickr.com/emaad

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


Re: [hugin-ptx] Re: ANN: Hugin-2010.4.0_rc1 released

2010-12-24 Thread Yuval Levy
On December 24, 2010 07:24:39 am RueiKe wrote:
> I uploaded the pto file:
> http://groups.google.com/group/hugin-ptx/web/DR13_Rev1.pto?hl=en%05eeb80c98
> d0c9ce2

thanks, got it.  be aware that the GoogleGroup files facility is shutting 
down, and anyway messages here tends to get buried in history.  best way to 
place bug reports is https://bugs.launchpad.net/hugin

before having a look I will need to make space on my my hdd for image 
placeholders.  i'm currently away from home and don't have as much free disk 
space as usual.

Yuv


signature.asc
Description: This is a digitally signed message part.


Re: [hugin-ptx] Re: ANN: Hugin-2010.4.0_rc1 released

2010-12-24 Thread Yuval Levy
On December 24, 2010 03:30:03 am Bart van Andel wrote:
> Are your '2010.4.0-rc1' files
> supposed to be in the '2010.4_beta' location? I know, it's merely a
> cosmetic issue, but I'd expect them to be located in a '2010.4.0_rc1'
> directory instead.

yes - I have put the rc1 source tarball there as well.  the folder is merely a 
distiction for "non-final".  once a release will be finalized, it will be 
renamed and moved to an appropriate location and the 2010.4_beta folder will 
be deleted.

Yuv


signature.asc
Description: This is a digitally signed message part.


[hugin-ptx] A little python helper script

2010-12-24 Thread Yuval Levy
Hello all,

first, many thanks to Kay for his Python pto parser that served as basis for 
what follows.

second, a big disclaimer:  my Python experience is very limited.  

Nevertheless, in about half hour of googling and fiddling, I achieved what I 
needed now.

We ask users to provide the pto file associated with bugs reports.  Usually 
just the pto is enough, so to save time, bandwidth, disk space we do not ask 
for the actual images.

As a consequence the first thing that we need to do if we want to visualize a 
project in the GUI is to create placeholder images.

This is what the attached script does.  Tested in Ubuntu.  Requires 
ImageMagick, Python, Kay's pto parser and python-argparse

sudo apt-get install imagemagick python python-argparse
bzr branch lp:~kfj/+junk/script

save the script inside script/main (unless Kay adds it to the repo, then it 
will come automatically)

call with ptoimggen.py -p 

Probably Kay will find plenty of ways to improve on this.  More power to him.  
I had enough difficulties finding my way around his code - about the same as I 
have finding my way around the Hugin source code (hint hint comments hint).

Thank you, Kay!
Yuv
#!/usr/bin/python
# -*- coding: utf-8 -*-

gpl = r"""
ptoimggen.py - scan a pto file and generate bogus images
   to use when debugging

Copyright (C) 2010  Kay F. Jahnke
Copyright (C) 2010  Yuval Levy

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program.  If not, see .
"""

import sys
import argparse
import parse_pto
import random
import os

# I needed a routine to scan i-lines in pto files and make sure Hugin does
# not complain about missing images or other things.

def imgfile_to_i_lines ( scan ) :

# scan all lines in the pto file
for line in scan.sequential :

# parse the i lines
if line.header == 'i' :

# get the width, height, and image file name from the i line
width = line.members[0].value
height = line.members[1].value
name = line.members[34].value
# generate random RGB values for the placeholder image
r = random.randint(0, 255)
g = random.randint(0, 255)
b = random.randint(0, 255)
# comopose the ImageMagick convert command
cmd = 'convert -size %dx%d xc:"rgb(%d,%d,%d)" %s' % (width, height, r, g , b, name)
# tell me you're doing something
print cmd
# execute it
os.system(cmd)

def main() :

# we create an argument parser

parser = argparse.ArgumentParser (
formatter_class=argparse.RawDescriptionHelpFormatter ,
description = gpl + '''
We ask users to post pto files that cause errors
with their bug reports, but not the actual images to
avoid straining bandwidth and online storage.

The first thing a bug hunter does to analyze the pto
file is to fix the images. This script does it by
creating placeholder images.

This code is very weak and assumes that the image
name is arguments #34, true at the time of writing.
You might be dealing with an older pto file (with less
arguments) or a newer one (with more).  If the result
is not what you expected, count the arguments and
fix it around line 45 of this script.
''' )

parser.add_argument('-p', '--pto',
metavar='',
type=str,
help='pto file to be processed')

if len ( sys.argv ) < 2 :
parser.print_help()
return

args = parser.parse_args( sys.argv[1:] )

scan = parse_pto.pto_scan ( args.pto )
imgfile_to_i_lines ( scan )

# are we main? if so, do the main thing...

if __name__ == "__main__":
main()



signature.asc
Description: This is a digitally signed message part.


Fwd: [hugin-ptx] Re: Attn translators: BugFix = added translation string, sorry.

2010-12-24 Thread john doe
Ok to answer this mail in a rather politely way i will recall the following:
1.- I clearly stated before that i was not a programmer...
2.- The reason that i dont work in a group or under a group is because i
didn´t know they even existed
3.- I don´t know how translating works AS YOU RECALL I ASKED BEFORE WHAT
SOFTWARE TO USE, hence that shows that im a newbie to this
4.- The original spanish translation had and still has typos...
5.- I did or dont know there are rules on how to post in the group if there
are any...
6.- I sent a mail before regarding a problem with BOOST LIBRARYto upgrade
hugin via command line, being the fact that i havent received a decent reply
yet as to how to solve the problem...
7.- I did upload the file but not to Hugins repository since i dont have a
working account there...So, is there any responsability for that
comment???sure you asked me if they could be included, but again, i do not
have any acces permission to the hugin repository...i merely  attached a
 .po file...
8.- Again, i do not know how to use POEDIT,,,or any other .po program...I
merely used the program to translate some badly translated strings.
9.- I never asked for friends starting with this, the main reason that i
offered to help is because i like working with the program and i saw MANY
ERRORS in the spanish translation
10.- You may call me a political internet group ignorant or feel free to use
whatever term you desire, as i dont have any problems with it, since it is a
fact that A) Im not a programr B) I havent use this kind of comunication
before C) No one has been kind to me to inform if there are any rules as how
to post/reply any answers in the hugin ptx group
11.- Regarding to point 10 i havent seen any rules about it...

to answer your 4th,5th, 6th and seventh point, again,  A) no one informed me
of any rules regarding it, B) I havent been properly introduced to a team
yet

AND MOST IMPORTANT
C) I AM NOT A PROGRAMMERi could contribute only with translations

lastly, the only reason i use a nick is because of a google mail option i
triggered before and cant quite remember yet which was it...

PLEASE KEEP IN MIND THAT I DONT PROGRAM, AND I DONT KNOW HOW TRANSLATING
SOFTWARE WORKS...SO IF ANY MISTAKES HAVE BEEN MADE REGARDING THAT ITS
BECAUSE OF INVOLUNTARY MISTAKES..
-- Forwarded message --
From: Yuval Levy 
Date: Fri, Dec 24, 2010 at 2:24 PM
Subject: Re: [hugin-ptx] Re: Attn translators: BugFix = added translation
string, sorry.
To: hugin-ptx@googlegroups.com


On December 22, 2010 08:23:56 pm john doe wrote:
> i didnt upload the file yuval did it..

It's called garbage-in garbage-out, and you better look at what you are
doing
before pushing the responsibility onto others.

*You* uploaded the files [0][1] to this mailing list.  I asked if they
should
be included and you [2] agreed.

To be perfectly honest with you, I did this only to get a nuisance off my
back.  I should not have put on the political correctness filter from the
start,  even if this means adding another entry to my long enough list of
"online-friends".  It's never too late to remove the political correctness
filter, so here is some feedback to you, John Doe aka. Guerrero de Luz aka.
Ernesto Enrique Alvarado Viloria:

1.  FACT: es_la is a locale that does not exist [3][4].  es_la.po is a
completely harmless file, because nobody will ever use it.

2.  FACT: all of *your* posted/contributed files fail the basic test of
`msgfmt -c --statistics`

3.  It is the responsibility of every contributor - whether coder, builder,
or
translator, to make sure that they know what they are doing.  Things are
documented well enough that for most thing the answers you are looking for
are
at [5] (for translators) and at [6] (for bleeding edge Ubuntu users).

4.  Most translations are contributed by *teams*.  In a team, people work
together.  I have not seen you working together with anybody.

5.  Team members are aware of each other.  I have not seen you aware of
others' work or advice.

6.  Team members try to find an answer to their question in the
documentation
before asking others to find it for them.

7.  Team members take responsibility for their work and mistakes, not push
it
onto others.

8.  I have not seen any positive behavior from you on Hugin-PTX and I was
happy that you did put yourself in a sandbox (es_la.po) where you could not
affect Hugin and its main Spanish-language translation.  Unfortunately this
was short-sighted thinking of mine:  the problem is not going away.  My
mistake.  Maybe this feedback will solve it, one way or another.

9.  Using pseudonyms does not help to make you more credible or likable.

10.  Flooding the mailing list with plenty of trivial questions that are
answered in the documentation only makes you look like a troll.  I explained
to you in private conversation a couple of weeks ago how to get the latest
Hugin for your platform, so WTF is [7]?

11.  "Ideas" such as [8] only serve to show how lit

[hugin-ptx] Newbie questions

2010-12-24 Thread spraynpray
Hi all,

I have just installed enblend and enfuse and find it has installed
five 'droplets' on my desktop which I cannot get to work - is there
any kind of manual in .pdf or whatever that I can read?

I get a program has to close response when I try to use it so
obviously I am doing something wrong.

Thanks for any help you can give and Happy Christmas.

Andrew.

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


[hugin-ptx] no pano: make fails

2010-12-24 Thread Thomas Steiner
Hi,
I am trying to stitch a panorama with hugin 2010.1.0.5046 under
Windows Vista and I get the following errormessage (the popup says I
should report it to the bugtracker):

"D:/Program Files/Hugin/bin/nona"  -z PACKBITS  -r ldr -m TIFF_m -o
"michaelerplatz-planet_4799-4834" -i 33
"C:/Users/Trommler/AppData/Local/Temp/hug3972.tmp"
"D:/Program Files/Hugin/bin/nona"  -z PACKBITS  -r ldr -m TIFF_m -o
"michaelerplatz-planet_4799-4834" -i 34
"C:/Users/Trommler/AppData/Local/Temp/hug3972.tmp"
"D:/Program Files/Hugin/bin/nona"  -z PACKBITS  -r ldr -m TIFF_m -o
"michaelerplatz-planet_4799-4834" -i 35
"C:/Users/Trommler/AppData/Local/Temp/hug3972.tmp"
"D:/Program Files/Hugin/bin/enblend" --compression 95
-f15674x15559+696+1108 -o "michaelerplatz-planet_4799-4834.jpg"
"michaelerplatz-planet_4799-4834.tif"
"michaelerplatz-planet_4799-48340001.tif"
"michaelerplatz-planet_4799-48340002.tif"
"michaelerplatz-planet_4799-48340003.tif"
"michaelerplatz-planet_4799-48340004.tif"
"michaelerplatz-planet_4799-48340005.tif"
"michaelerplatz-planet_4799-48340006.tif"
"michaelerplatz-planet_4799-48340007.tif"
"michaelerplatz-planet_4799-48340008.tif"
"michaelerplatz-planet_4799-48340009.tif"
"michaelerplatz-planet_4799-48340010.tif"
"michaelerplatz-planet_4799-48340011.tif"
"michaelerplatz-planet_4799-48340012.tif"
"michaelerplatz-planet_4799-48340013.tif"
"michaelerplatz-planet_4799-48340014.tif"
"michaelerplatz-planet_4799-48340015.tif"
"michaelerplatz-planet_4799-48340016.tif"
"michaelerplatz-planet_4799-48340017.tif"
"michaelerplatz-planet_4799-48340018.tif"
"michaelerplatz-planet_4799-48340019.tif"
"michaelerplatz-planet_4799-48340020.tif"
"michaelerplatz-planet_4799-48340021.tif"
"michaelerplatz-planet_4799-48340022.tif"
"michaelerplatz-planet_4799-48340023.tif"
"michaelerplatz-planet_4799-48340024.tif"
"michaelerplatz-planet_4799-48340025.tif"
"michaelerplatz-planet_4799-48340026.tif"
"michaelerplatz-planet_4799-48340027.tif"
"michaelerplatz-planet_4799-48340028.tif"
"michaelerplatz-planet_4799-48340029.tif"
"michaelerplatz-planet_4799-48340030.tif"
"michaelerplatz-planet_4799-48340031.tif"
"michaelerplatz-planet_4799-48340032.tif"
"michaelerplatz-planet_4799-48340033.tif"
"michaelerplatz-planet_4799-48340034.tif"
"michaelerplatz-planet_4799-48340035.tif"
enblend: info: loading next image: michaelerplatz-planet_4799-4834.tif 1/1
enblend: info: loading next image: michaelerplatz-planet_4799-48340001.tif 1/1

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

enblend: info: remove invalid output image "michaelerplatz-planet_4799-4834.jpg"
make: *** [michaelerplatz-planet_4799-4834.jpg] Error 1


I tried to set an explicit temp-directory, but it did not help. I did
delete the make-file and restarted, same result. Do you have any idea
what could get me out here? It's my first stereographic pano.
Thanks a lot,
thomas

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


Re: [hugin-ptx] Re: Attn translators: BugFix = added translation string, sorry.

2010-12-24 Thread Yuval Levy
On December 22, 2010 08:23:56 pm john doe wrote:
> i didnt upload the file yuval did it..

It's called garbage-in garbage-out, and you better look at what you are doing 
before pushing the responsibility onto others.

*You* uploaded the files [0][1] to this mailing list.  I asked if they should 
be included and you [2] agreed.

To be perfectly honest with you, I did this only to get a nuisance off my 
back.  I should not have put on the political correctness filter from the 
start,  even if this means adding another entry to my long enough list of 
"online-friends".  It's never too late to remove the political correctness 
filter, so here is some feedback to you, John Doe aka. Guerrero de Luz aka. 
Ernesto Enrique Alvarado Viloria:

1.  FACT: es_la is a locale that does not exist [3][4].  es_la.po is a 
completely harmless file, because nobody will ever use it.

2.  FACT: all of *your* posted/contributed files fail the basic test of 
`msgfmt -c --statistics`

3.  It is the responsibility of every contributor - whether coder, builder, or 
translator, to make sure that they know what they are doing.  Things are 
documented well enough that for most thing the answers you are looking for are 
at [5] (for translators) and at [6] (for bleeding edge Ubuntu users).

4.  Most translations are contributed by *teams*.  In a team, people work 
together.  I have not seen you working together with anybody.

5.  Team members are aware of each other.  I have not seen you aware of 
others' work or advice.

6.  Team members try to find an answer to their question in the documentation 
before asking others to find it for them.

7.  Team members take responsibility for their work and mistakes, not push it 
onto others.

8.  I have not seen any positive behavior from you on Hugin-PTX and I was 
happy that you did put yourself in a sandbox (es_la.po) where you could not 
affect Hugin and its main Spanish-language translation.  Unfortunately this 
was short-sighted thinking of mine:  the problem is not going away.  My 
mistake.  Maybe this feedback will solve it, one way or another.

9.  Using pseudonyms does not help to make you more credible or likable.

10.  Flooding the mailing list with plenty of trivial questions that are 
answered in the documentation only makes you look like a troll.  I explained 
to you in private conversation a couple of weeks ago how to get the latest 
Hugin for your platform, so WTF is [7]?

11.  "Ideas" such as [8] only serve to show how little you understand of 
software in general and Open Source software in particular.

To be perfectly honest with you, the behavior I am seeing from you on Hugin-
PTX made me classify you as troll.  And the best strategy for trolls is to 
ignore/dismiss them.  If you don't get much answer in the future, you know 
why.

If you want to become a contributor to Hugin, please stop trolling and learn 
to be a team player, collaborate with others, understand what you are doing 
and how it affects (or not) the project.

Yuv (the politically incorrect)


[0] http://groups.google.com/group/hugin-ptx/msg/7de46f95531c9a6b
[1] http://groups.google.com/group/hugin-ptx/msg/bbe7b4794733770c
[2] http://groups.google.com/group/hugin-ptx/msg/1652c2d8de6ae88a
[3] http://packages.ubuntu.com/maverick/all/locales/filelist
[4] http://msdn.microsoft.com/en-us/library/0h88fahh%28VS.85%29.aspx
[5] http://wiki.panotools.org/Hugin_translation_guide
[6] http://wiki.panotools.org/Hugin_Compiling_Ubuntu
[7] http://groups.google.com/group/hugin-ptx/msg/bfe58676cb464757
[8] http://groups.google.com/group/hugin-ptx/msg/9c72c0c951910a63


signature.asc
Description: This is a digitally signed message part.


Re: [hugin-ptx] Re: ANN: Hugin-2010.4.0_rc1 released

2010-12-24 Thread Yuval Levy
On December 24, 2010 10:39:50 am Yuval Levy wrote:
> now that I verified your signature on the file; and that the downloaded
> packages are what they claim to be; I'll move on to produce the derived
> packages for Ubuntu.

Lucid and Karmic builds are being built right now [0]

if anybody has access to Maverick / Natty:

* Download the files posted by Andreas a few hours ago and verify them (note 
that for the sha256sum step to work you will need to edit 
hugin_2010.4.0+dfsg~rc1-1.dsc to comply with the expected format.  Remove all 
white spaces in front of the checksums.  remove the filesize between the 
checksum and the filename.  make sure there are two spaces between the 
checksum and the filename.
* When editing debian/control, eit the Maintainer and Uploader to "Hugin PPA 
Packagers "
* In the line starting with DEBEMAIL, replace  with maverick or natty 
depending on the environment in which you are building; and  
with... your name.
* $GPGKEY is your signature known to Launchpad.  You must have set your 
account, including signing the Ubuntu Code of Conduct, as described in [1]
* for the dput step, you will also need to be a member of Hugin builders.  
There are four people there currently and we will give you access if needed.

gpg --keyserver keyserver.ubuntu.com --recv-keys 8B8D7663
gpg --verify hugin_2010.4.0+dfsg~rc1-1.dsc
sha256sum -c hugin_2010.4.0+dfsg~rc1-1.dsc
tar xvzf hugin_2010.4.0+dfsg~rc1.orig.tar.gz
tar xvzf hugin_2010.4.0+dfsg~rc1-1.debian.tar.gz
mv debian/ hugin-2010.4.0/
cd hugin-2010.4.0/
nano debian/control
DEBEMAIL=" " dch --newversion 
2010.4.0+dfsg~rc1-1 new upstream release
dpkg-buildpackage -rfakeroot -uc -us -sa -S
cd ..
debsign -k$GPGKEY *.changes
dput ppa:hugin/hugin-builds *.changes


Yuv

[0] https://launchpad.net/~hugin/+archive/hugin-builds
[1] http://wiki.panotools.org/Hugin_Trackers#Launchpad_Account
[2] https://launchpad.net/~hugin/


signature.asc
Description: This is a digitally signed message part.


Re: [hugin-ptx] Re: ANN: Hugin-2010.4.0_rc1 released

2010-12-24 Thread Yuval Levy
n December 24, 2010 04:16:55 am Andreas Metzler wrote:
> ich habe gerade die Pakete nach Debian/experimental hochgeladen.
> 
> http://www.bebt.de/hugin/

Danke, Andreas!

When verifying the sha256sum it occured to me that the file 
hugin_2010.4.0+dfsg~rc1-1.dsc does not list them in a "properly formatted" way 
that makes them easily verifiable with a single `sha256sum -c 
hugin_2010.4.0+dfsg~rc1-1.dsc` command.  Is it possible to format them in a 
way that sha256sum can digest?

now that I verified your signature on the file; and that the downloaded 
packages are what they claim to be; I'll move on to produce the derived 
packages for Ubuntu.

Frohe Weihnachten

Yuv


signature.asc
Description: This is a digitally signed message part.


[hugin-ptx] [OSX] Tiger users: The static enblend/enfuse 4.0 builds should be HDR enabled again

2010-12-24 Thread Harry van der Wolf
Hi mac users on Tiger,

NOTE: This information is only valid for users on Tiger! Leopard and Snow
Leopard should use the included Open-MP builds that are delivered inside the
Hugin.app.

The static 32bit builds of enblend and enfuse for Tiger, that came separated
from Hugin.app but within the .dmg, were not HDR (.hdr and .exr) enabled[0].
This was not an enblend or enfuse error, it was a build error on OSX.
The error was in the pkgconfig file (for those who understand that).
Due to the way we (I ?) need to build for older versions of the OS, and due
to the way that building statically is highly discouraged on OSX, we need to
do some tricks to make it work. "Something" (I don't want to explain the
entire build process) changed, going from Leopard (10.5) to Snow Leopard
(10.6) causing the pkgconfig OpenEXR.pc file failing for static builds.

Mac users on Tiger: Please download the new Tiger static builds via this
direct link[1] from my website and test whether HDR (.hdr and .exr) are now
supported and working for you. Hopefully I can include a fixed
enblend/enfuse build in the final Hugin 2010.4.0.

Please report your findings, preferably via the bugtracker [0], but as a
response to this mail is OK as well.

Note: The hugin 2010.4.0-RC1 build from this morning does NOT contain these
new enblend/enfuse builds. (I'm not multi-core. I work serial, not parallel.
And I had not foreseen that I would now suddenly see the solution).

Hoi,
Harry

[0]: Lauchpad bug tracker: 
[1] : <
http://harryvanderwolf.dyndns.org/Hugin/tmp/enblend-enfuse-4.0-Tiger.zip>

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


[hugin-ptx] Re: ANN: Hugin-2010.4.0_rc1 released

2010-12-24 Thread RueiKe
I uploaded the pto file:
http://groups.google.com/group/hugin-ptx/web/DR13_Rev1.pto?hl=en%05eeb80c98d0c9ce2

Regards,
Rick

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


[hugin-ptx] Re: ANN: Hugin-2010.4.0_rc1 released

2010-12-24 Thread RueiKe
I have tried this release and the beta 2 version on a current project
and am having some problems.  I originally started the project with
the beta2 build.  The first alignment was fine. I deleted some bad
control points from the control point table.  When I attempted the
alignment again from the optimizer tab, the results in the preview
changed from 360x180 to 180x180.  I reset all parameters for all
images and found that when I try aligning again it stops at iteration
33 and hangs idenfinitely.  I have tried this build, and found the
same issue.

Details of my project and configuration follow:
Project: 217 images in 7 shot 1EV step brackets.  This is typical for
my projects that includes 3 rows of 10 shots each plus the Nadir.  I
added control points between all of the nominal exposures and
specified a different stack number for each exposure bracket. There
are 9323 control points.

System:
Operating System: Windows Vista (build 6002, Service Pack 2)
Architecture: 64 bit
Free memory: 487828 kiB
Active Codepage: 1252 (Western European Windows)

Hugin
Version: 2010.4.0.003a7c16c734 built by Matthew Petroff
Path to ressources: C:\Program Files\Hugin/share/hugin/xrc/
Path to data: C:\Program Files\Hugin/share/hugin/data/

Regards,
Rick

On Dec 24, 5:47 pm, davidefa  wrote:
> On your virtual machine, try selecting a virtual video driver with
> opengl support

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


Re: [hugin-ptx] ANN: Hugin-2010.4.0_rc1 released

2010-12-24 Thread Lukáš Jirkovský
On 23 December 2010 21:51, Yuval Levy  wrote:
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
>
> Hugin-2010.4.0_rc1 RELEASE NOTES
>
> Hugin is a panorama stitcher and more.  A new version is available.  This is a
> release candidate and may be declared a final release in a few days.
>
>

I have updated OpenSuSE 11.3 packages. You can get them from

http://download.opensuse.org/repositories/home:/stativ/openSUSE_11.3/

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


[hugin-ptx] Re: ANN: Hugin-2010.4.0_rc1 released

2010-12-24 Thread Bart van Andel
Hi Terry,

On Windows, the OpenGL functionality is provided by the graphics card 
driver, if I'm not mistaken. The generic drivers that ship with (the quite 
old) Windows XP don't offer a lot of OpenGL. You should try to get a more 
specific (and up-to-date) driver. Depending on the virtual device offered by 
the virtual machine, this may or may not be available. Updating drivers has 
helped me in the past (for Pannini that was, which also requires more OpenGL 
than the generic driver offers).

--
Bart

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


Re: [hugin-ptx] ANN: Hugin-2010.4.0_rc1 released

2010-12-24 Thread Harry van der Wolf
Mac users,

MacOSX builds of the Hugin 2010.4.0-RC1 can be found on my website[0] under
the name hugin-mac-2010.4.0-RC1.
Hugin can be used on Tiger, Leopard and Snow Leopard. Tiger users must use
the Tiger build of enblend/enfuse which are available in the dmg in the
folder enblend-enfuse-4.0. Read the Readme.
(Snow) Leopard users can use the Hugin.app as it is.

hoi,
Harry

[0]: <
http://panorama.dyndns.org/index.php?lang=EN&subject=Hugin&texttag=Hugin>




2010/12/23 Yuval Levy 

> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
>
> Hugin-2010.4.0_rc1 RELEASE NOTES
>
> Hugin is a panorama stitcher and more.  A new version is available.  This
> is a
> release candidate and may be declared a final release in a few days.
>
>
> MIGRATION TO LAUNCHPAD
>
> Tracking of bugs, patches, and features requests for Hugin and related
> tools
> (Enblend-enfuse and Panotools) has switched from SourceForge to Launchpad.
> Hugin's needs have outgrown the SourceForge tracker.  The project is
> grateful
> to SourceForge for providing it with a nurturing infrastructure since
> inception.  We hope that the more modern and feature-rich tracker on
> Launchpad
> will enable the project to work through the backlog of over 200 tickets and
> process an increasing amount of tickets more efficiently.
>
> Please report bugs and feature requests at
> https://bugs.launchpad.net/hugin
>
>
> TRANSLATIONS
>
> New strings have been added.  Please help us translating the new strings
> into
> your language.  Instructions at
> http://wiki.panotools.org/Hugin_translation_guide
>
>
> DOWNLOAD
>
> The 2010.4.0_rc1 source tarball can be downloaded from sourceforge at
>
> http://sourceforge.net/projects/hugin/files/hugin/hugin-2010.4_beta/hugin-2010.4.0_rc1.tar.bz2/download
>
> This is a sourcecode release.  The project has limited resources and relies
> on
> third parties to produce binaries for the different platforms.
>  Instructions
> at http://wiki.panotools.org/Development_of_Open_Source_tools .  If you
> have a
> build to contribute for your platform, contact the Hugin developers team on
> http://groups.google.com/group/hugin-ptx .
>
> A number of users have pledged to provide binaries within a few days after
> a
> tarball release.  Look for announcements of these binaries on
> http://groups.google.com/group/hugin-ptx
>
> This tarball is equivalent to rev/changeset 4745:003a7c16c734 in our
> Mercurial
> repository, where it is also tagged 2010.4.0_rc1
>
> Verify its SHA1SUM eb2131190ffc7c17064633d125aeb961f9468189
>
>
> CHANGES SINCE 2010.4.0_beta2
>
> Updated Translations
> * Chinese Simplified (Lu Fang)
> * Russian (Alexandre Prokoudine)
> * Dutch (Harry van der Wolf)
> * Hungarian (Lajos Höss)
> * German (Carl von Einem, Joachim Schneider, Thomas Modes)
> * Latin American Spanish (Ernesto Enrique Alvarado Viloria)
> * Spanish (Uwe Koch Kronberg)
> * Czech (Vaclav Cerny)
> * Italian (Cristian Marchi)
>
> Bug Fixes
> * A few language fixes
> * Added gnu make 3.82 to search list for make (Thomas Modes)
> * Explicitly close generated makefile. This could fix issue #684749 (Thomas
> Modes)
> * Fixed Windows installer control point generator defaults. (Matthew
> Petroff)
> * Show warning if no exposure parameters are selected for optimization.
> (Thomas Modes)
> * Don't optimize exposure if no parameters are selected. (Thomas Modes)
> * Add file extension if not given for saving cp detector setting (Thomas
> Modes)
> * Fixes empty config file issues (Thomas Modes)
>
>
> DEDICATION
>
> This release of Hugin is dedicated to Milko K. Amorth (1960-2010).  Details
> in
> the About menu.
>
>
> CHANGES SINCE 2010.2.0
>
> This is our third release in 2010.  For the first time Hugin can be
> considered
> feature-complete.  A third-party control points generator is no longer
> necessary. This release delivers some major new features, integrates some
> projects from the 2010 Google Summer of Code, and includes many general
> improvements.
>
>
> _Built-in Control Points Generator_
>
> For the first time Hugin does not depend on a third-party control points
> generator.  cpfind is the result of years of ongoing efforts and Google
> Summer
> of Code projects aimed at delivering a 'patent-free' control points
> generator.
> Third-party control point generators are still supported.
>
> Instead of passing an often incomplete and incompatible set of parameters
> through the command line, the built-in control points generator has direct
> access to all project information and tools.  It speeds up and optimizes
> multi-row matching.  It uses Celeste to identify the sky.  Unlike most of
> its
> predecessors it is multi-threaded and takes advantage of modern multi-core
> hardware.
>
> Additionally, Hugin now has the ability to save and load control-point
> generators settings from disk, reducing confusion and errors due to the
> changes in the command line interface of the third-party control points
> generators.
>
>
> _Improved Unattended Operation_
>
> Many featur

[hugin-ptx] Re: ANN: Hugin-2010.4.0_rc1 released

2010-12-24 Thread davidefa
On your virtual machine, try selecting a virtual video driver with
opengl support

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


[hugin-ptx] Re: ANN: Hugin-2010.4.0_rc1 released

2010-12-24 Thread Tduell
Hullo Matthew,

On Dec 24, 3:15 pm, Matthew Petroff  wrote:
> Windows binaries for Hugin 2010.4.0-rc1 are now available:

Thanks for building the Windows binaries.
I have installed your 32 bit version on a virtual machine running XP
Pro, as a precursor to trying to help a computer illiterate friend get
started with Hugin. As you may know, I'm a Linux user, so Hugin on
Windows is a learning experience for me too!
When hugin completes an alignment I am getting an error message saying
it needs support for OpenGL version 1.1 with
GL_ARB_multitexture_extension.
What software/package is recommended to provide the OpenGL needed by
the Fast preview Window?

Thanks for your help.

Cheers,
Terry

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


[hugin-ptx] Re: ANN: Hugin-2010.4.0_rc1 released

2010-12-24 Thread Andreas Metzler
In article <201012231551.37438.goo...@levy.ch> (gmane.comp.misc.ptx) you wrote:
[...]
> Hugin-2010.4.0_rc1 RELEASE NOTES


Hallo,

ich habe gerade die Pakete nach Debian/experimental hochgeladen.

http://www.bebt.de/hugin/

lg Andreas

-- 
`What a good friend you are to him, Dr. Maturin. His other friends are
so grateful to you.'
`I sew his ears on from time to time, sure'

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


[hugin-ptx] Re: ANN: Hugin-2010.4.0_rc1 released

2010-12-24 Thread Bart van Andel
Hi Matthew,


On Friday, December 24, 2010 5:15:46 AM UTC+1, Matthew Petroff wrote:
>
> Windows binaries for Hugin 2010.4.0-rc1 are now available: 
>
> 32-bit (no installer): 
>
> http://sourceforge.net/projects/hugin/files/hugin/hugin-2010.4_beta/Hugin_2010.4.0-rc1_32bit_Windows.7z/download
>  
>
> 64-bit (no installer): 
>
> http://sourceforge.net/projects/hugin/files/hugin/hugin-2010.4_beta/Hugin_2010.4.0-rc1_64bit_Windows.7z/download
>  
>
> 32-bit Installer: 
>
> http://sourceforge.net/projects/hugin/files/hugin/hugin-2010.4_beta/HuginSetup_2010.4.0-rc1_32bit_Windows.exe/download
>  
>
> 64-bit Installer: 
>
> http://sourceforge.net/projects/hugin/files/hugin/hugin-2010.4_beta/HuginSetup_2010.4.0-rc1_64bit_Windows.exe/download
>  
>

Thanks for being such a fast binary contributor once again (and big thanks 
to all other contributors as well of course)! Are your '2010.4.0-rc1' files 
supposed to be in the '2010.4_beta' location? I know, it's merely a cosmetic 
issue, but I'd expect them to be located in a '2010.4.0_rc1' directory 
instead.

--
Bart 

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