Re: [hugin-ptx] new image stitching software

2016-07-28 Thread Matthew Petroff
A quick look at the executable shows that the UI is built with Qt and the 
backend uses OpenCV, so it probably isn't using code from Hugin.

-Matthew

On Thursday, July 28, 2016 at 5:05:34 AM UTC-4, Harry van der Wolf wrote:
>
> As such I don't care that someone ceates another tool to do these kind of 
> things.
>
> What bothers me more is this: 
> http://molanisvr.com/78-molanis-vr/76-360-vr-image-stitching-software
>
> To me his now promoted software looks exactly like hugin. I assume (?) 
> that mr. Valdes will act according all license obligations he has to 
> prevent legal issues. The problem is that I can't find any reference to it.
> Based on that screenshot(s) his software must contains parts of hugins 
> code base.
>
>
> Harry
>
> 2016-07-28 10:20 GMT+02:00 bugbear >:
>
>> Forex Valdes wrote:
>>
>>> Hi all
>>>
>>> I am launching a new image stitching software. You can get it here 
>>> http://molanisvr.com/78-molanis-vr/85-360-vr-image-stitching-download 
>>> This version does not have any watermarks. It is fully functional.
>>>
>>
>> What problem, that Hugin does *not* solve, does your software solve?
>>
>>   BugBear
>>
>> -- 
>> A list of frequently asked questions is available at: 
>> http://wiki.panotools.org/Hugin_FAQ
>> --- You received this message because you are subscribed to the Google 
>> Groups "hugin and other free panoramic software" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to hugin-ptx+...@googlegroups.com .
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/hugin-ptx/5799C042.5010206%40papermule.co.uk
>> .
>>
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>

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


[hugin-ptx] Re: [FR] Is Hugin able to read .fits files ?

2015-07-07 Thread Matthew Petroff
Hugin cannot read FITS files directly, but converting FITS images to a 
format the Hugin can read, e.g. TIFF, isn't difficult. ImageMagick [1] is 
one such utility that can do the conversion. This is based on the 
assumption that your FITS files are actually images (FITS is a versatile 
contain format that can also store things such as data tables instead of 
images).

-Matthew

[1] http://www.imagemagick.org/

On Tuesday, July 7, 2015 at 3:39:46 AM UTC-4, rouzeb...@gmail.com wrote:
>
> Hi all,
>
> I am working with somes *.fits* files,(I am a student working on super 
> resolution) :  I would know if Hugin can read my files.
>
> Thanks,
> Bastien
> (sorry for my bad english)
>

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


[hugin-ptx] Re: Different approach from attempt to stitch (super-resolution?) night sky (late 2014)

2015-07-06 Thread Matthew Petroff
I would recommend looking at Astrometry.net [1], which does blind 
astrometric calibration of images of the night sky. This give you FITS 
World Coordinate System metadata for the images [2] that maps image pixels 
to celestial coordinates. However, it does have some issues with fisheye 
lenses, although there seem to be workarounds [3].

-Matthew

[1] http://astrometry.net/use.html
[2] http://fits.gsfc.nasa.gov/fits_wcs.html
[3] https://groups.google.com/forum/#!topic/astrometry/RumO4M7an0E

On Saturday, July 4, 2015 at 1:56:25 PM UTC-4, Benjamin Hill wrote:
>
> Super-resolution from highly overlapping photos seems hard.  Maybe 
> impossible?
>
> I have taken a series of night-sky images from a fixed camera over a 
> period of several hours.  I identified keypoints (stars) in the images, and 
> correlated the keypoints across frames.  This results in a file of ~1000 
> rows of 4 ints:
> int FRAME_A, int STAR_B, int PIXEL_X, int PIXEL_Y (and timestamp of the 
> frame if it would be helpful)
>
> The challenge is that it was taken with a wide-angle lens, and I don't 
> know the exact distortion parameters of the lens.  
>
> Goal: use the input file to either determine the lens model, or another 
> mathematical model (machine learning?), that will allow a very precise 
> function that maps a "true" night sky location to the coordinates in every 
> frame that covers that part of the sky.  It is ok if the model takes a long 
> time to train, but the final lookup should be fast.
>
> getAllOverlappingExactSourceLocations(x1, y1) -> 
> array of frames [{source_frame:frame_a, source_pixel_x:(float)x, 
> source_pixel_y:(float)y}, {source_frame:...]
>
> This may be easier to think of in the inverse: given a panoramic landscape 
> shot taken with a slowly moving motorized camera, and choosing any ray from 
> the camera's location, get the intersections with that ray and all the 
> photos that overlap that ray.
>
>
> It feels like this should be easy using Hugin or PTGUI: At the end of the 
> day, I've got very accurate keypoints, and I *should* be able to get an 
> accurate lens model from them... right?  And once I have an accurate lens 
> model, I should be able to get each frame's yaw/pitch/roll with sub-pixel 
> accuracy.  And then I... er... need help.  How do I use this model + a 
> frame's yaw/pitch/roll to get source pixel locations for the final frame, 
> that is pretty much what the final stitcher is doing, true?  So I'd need to 
> reimplement my own emblend?  Any easier way?
>

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


[hugin-ptx] Re: Hugin 2013 32bits crashing and other versions not working

2015-01-21 Thread Matthew Petroff
Hugin 2014.0.0 only works on Vista and above, although previous 32-bit 
versions should work. As Windows XP is no longer receiving security updates 
from Microsoft, I would highly recommend using a different operating system.

-Matthew

On Monday, January 19, 2015 at 3:32:27 PM UTC-5, Marcel Corzo wrote:
>
> Hi.
>
> I tried to install de last 2014 hugin 32 bits, but I get a "not a valid 
> win32 application", same on the 2013 and 2012.
> So I finally instaled the Hugin_2013.0.0_32bit_Windows.7z, and it worked, 
> but now when a triy to add to a project more photos the program crashes.
>
> Any tip would be helpful or which other version can I install on my 
> Windows XP SP3 32bits? 
>
> Thank you in advance.
>
> Regards,
>
> Marcel
>

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


[hugin-ptx] Re: Reverse panoramic - emulating a fancy motorized star-tracking camera rig

2014-12-20 Thread Matthew Petroff
Another way to align the images is to use the Astrometry.net software that 
will solve for the pointing of each image on the celestial sphere [1]. 
There's also a paper that uses pointings from said software to combine a 
large number of astronomy images to extract details that aren't visible in 
the source images [2].

-Matthew

[1] http://astrometry.net/
[2] http://arxiv.org/pdf/1406.1528v1

On Saturday, December 20, 2014 4:11:39 PM UTC-5, Benjamin Hill wrote:
>
> It *feels* like this should be possible, but I don't know if the math 
> actually works out! 
> Anyone interested in collaborating?
>
>1. Take a lot of photos of the night sky with a fish eye camera. 
> (Don't feel bad if they are a noisy mess because your old GoPro has 
>horrible low-light sensitivity.)
>2. Track the brightest 10 stars using some very naive code (that I 
>wrote) which dumps out 100k worth of alignment points in PTO format
>3. Run autooptimiser on it and go get a coffee.
>4. Run nona on the pano (more coffee)
>5. Now you have a stack of 100 photos, all perfectly (?) rotated and 
>un-distorted that you can sum or do a median filter on, and 
>6. Get a single beautiful picture of the night sky rivaling those 
>people with a huge lens and a motorized camera mount.
>
> I got *public code that works* 
> , and I think it 
> does better than any other method I've seen - and doesn't require perfect 
> knowledge of your camera's fisheye distortion.  Anyone want to collaborate 
> and help make it less naive?
>  
>

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


Re: [hugin-ptx] Re: Final version Hugin 2014.0.0 released

2014-12-18 Thread Matthew Petroff
Along with the notes, I'll upload my SDK somewhere. Since Windows isn't 
FOSS, I can't post the VM.

-Matthew

On Thursday, December 18, 2014 6:36:55 PM UTC-5, Robert Lesac wrote:
>
> On 18.12.2014. 0:42, Matthew Petroff wrote: 
> > My recent builds have been dynamically linked, instead of statically 
> > linked as outlined on the Panotools wiki, since it makes the download 
> > considerably smaller. I have some scattered notes from when I set up the 
> > build environment, but they're much less detailed than what is currently 
> > on the Panotools wiki for static builds. I might try to pull together my 
> > notes next month and post them somewhere on the wiki, but creating any 
> > sort of detailed instructions would require rebuilding the build 
> > environment from scratch, which is rather time consuming. 
>
> I know that's a lot of work, so would you consider cleaning personal 
> stuff from the VM and post it so we have a starting point? 
>
>
> Robert 
>
> > -Matthew 
> > 
> > On Monday, December 15, 2014 3:24:20 AM UTC-5, dex Otaku wrote: 
> > 
> > On Sunday, 14 December 2014 17:23:46 UTC-6, Matthew Petroff wrote: 
> > 
> > If someone steps up to take over, I'd be happy to give him or 
> > her pointers. 
> > 
> > 
> > 
> > Hi Matthew, 
> > If you can come up with build instructions that are clearer than the 
> > current wiki, I'd give making builds a try. 
> > That's assuming it doesn't require any commercial dev tools. 
> > I'm not a dev but with clear enough instructions I can manage it. 
> > 
> > -- 
> > A list of frequently asked questions is available at: 
> > http://wiki.panotools.org/Hugin_FAQ 
> > --- 
> > You received this message because you are subscribed to the Google 
> > Groups "hugin and other free panoramic software" group. 
> > To unsubscribe from this group and stop receiving emails from it, send 
> > an email to hugin-ptx+...@googlegroups.com  
> > <mailto:hugin-ptx+...@googlegroups.com >. 
> > To view this discussion on the web visit 
> > 
> https://groups.google.com/d/msgid/hugin-ptx/f0fb71a2-f794-421f-9822-aee0b934f638%40googlegroups.com
>  
> > <
> https://groups.google.com/d/msgid/hugin-ptx/f0fb71a2-f794-421f-9822-aee0b934f638%40googlegroups.com?utm_medium=email&utm_source=footer>.
>  
>
> > For more options, visit https://groups.google.com/d/optout. 
>
>
> -- 
>
> Pano/VR/Gigapixel photography: http://robertlesac.com 
>

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


[hugin-ptx] Re: Final version Hugin 2014.0.0 released

2014-12-18 Thread Matthew Petroff
No, they're not. By default, Visual Studio 2013 builds are not compatible 
with Windows XP. There's an option to make them compatible that needs to be 
set at build time, which I forgot about.

-Matthew

On Thursday, December 18, 2014 11:04:11 AM UTC-5, Cristian Marchi wrote:
>
>
> Il giorno lunedì 15 dicembre 2014 00:23:46 UTC+1, Matthew Petroff ha 
> scritto:
>>
>> Windows binaries for Hugin 2014.0.0 are now available (finally). For the 
>> Python
>> enabled builds, one needs a preexisting Python 3.3 installation.
>>
>>
> I've just tested the 32bit version under win XP (both portable and 
> installer) and I get a "not a valid win32 program" error message. Are the 
> binaries compatible with winXP?
>

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


[hugin-ptx] Re: Final version Hugin 2014.0.0 released

2014-12-17 Thread Matthew Petroff
My recent builds have been dynamically linked, instead of statically linked 
as outlined on the Panotools wiki, since it makes the download considerably 
smaller. I have some scattered notes from when I set up the build 
environment, but they're much less detailed than what is currently on the 
Panotools wiki for static builds. I might try to pull together my notes 
next month and post them somewhere on the wiki, but creating any sort of 
detailed instructions would require rebuilding the build environment from 
scratch, which is rather time consuming.

-Matthew

On Monday, December 15, 2014 3:24:20 AM UTC-5, dex Otaku wrote:
>
> On Sunday, 14 December 2014 17:23:46 UTC-6, Matthew Petroff wrote:
>>
>> If someone steps up to take over, I'd be happy to give him or her 
>> pointers.
>>
>>>
>>>
> Hi Matthew,
> If you can come up with build instructions that are clearer than the 
> current wiki, I'd give making builds a try.  
> That's assuming it doesn't require any commercial dev tools.
> I'm not a dev but with clear enough instructions I can manage it.
>

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


[hugin-ptx] Re: Final version Hugin 2014.0.0 released

2014-12-14 Thread Matthew Petroff
Windows binaries for Hugin 2014.0.0 are now available (finally). For the 
Python
enabled builds, one needs a preexisting Python 3.3 installation.

These will be the last Windows builds I plan on producing. If it wasn't
immediately obvious by how long it took me to produce these builds, building
for Windows is no longer a priority for me. When I started producing builds 
in
2010, I was a Windows user who occasionally dabbled with Linux. Two and a 
half
years ago, I switched primarily to Linux but still used Windows 
occasionally.
This spring, with the end of Windows XP support, I stopped using Windows
altogether, as the Windows machines I have all run Windows XP. I still keep 
a
Windows 7 virtual machine around if I need to run a Windows-only program, 
which
is what I've used to build Hugin as of late. However, creating and testing a
complete set of Windows builds for Hugin takes a few hours and is rather
tedious. Since I no longer use these builds myself, producing them has 
become a
chore, and I'd rather spend my time contributing to the community in other
ways. Additionally, I am not able to test the builds to the extent I would 
like
to. If someone steps up to take over, I'd be happy to give him or her 
pointers.

32-bit Installer:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2014.0/HuginSetup_2014.0.0_32bit_Windows.exe/download

32-bit Installer with Python:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2014.0/HuginSetup_2014.0.0_32bit_Python_Windows.exe/download

64-bit Installer:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2014.0/HuginSetup_2014.0.0_64bit_Windows.exe/download

64-bit Installer with Python:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2014.0/HuginSetup_2014.0.0_64bit_Python_Windows.exe/download

32-bit 7z Archive:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2014.0/Hugin_2014.0.0_32bit_Windows.7z/download

32-bit 7z Archive with Python:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2014.0/Hugin_2014.0.0_32bit_Python_Windows.7z/download

64-bit 7z Archive:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2014.0/Hugin_2014.0.0_64bit_Windows.7z/download

64-bit 7z Archive with Python:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2014.0/Hugin_2014.0.0_64bit_Python_Windows.7z/download


-Matthew

On Wednesday, October 8, 2014 3:47:04 PM UTC-4, Harry van der Wolf wrote:
>
> Hi all,
>
> After one beta and four RC releases we now have a new final stable version.
>
> See below the release notes for the final Hugin 2014.0.0 release.
>
> The full ChangeLog can be found in the source tarball.
>
> ==
> Hugin-2014.0 RELEASE NOTES
>
> ABOUT
>
> Hugin is more than just a panorama stitcher.
>
> Hugin can be found at
> * SourceForge:  http://hugin.sourceforge.net/
> * Launchpad:https://launchpad.net/hugin
>
>
> DOWNLOAD
>
> The 2014.0 source tarball can be downloaded
>
> * from SourceForge at
>
> http://sourceforge.net/projects/hugin/files/hugin/hugin-2014.0/hugin-2014.0.0.tar.bz2/download
>
> * from Launchpad at
>
> https://launchpad.net/hugin/2014.0/2014.0.0/+download/hugin-2014.0.0.tar.bz2
>
> This is a source code release.  For executables see below.
>
> This tarball is equivalent to rev/changeset 483c40467492 in our Mercurial
> repository, where it is also tagged 2014.0.0
>
> Verify its SHA1SUM 7b4ae181f664b9e0a68f55f298cdaa210fa09aa9  
> hugin-2014.0.0.tar.bz2 
>
> EXECUTABLES
>
> Users communities produce executables for their respective platforms.
>
> These executables are then added to the download section on SourceForge at
> http://sourceforge.net/projects/hugin/files/hugin/
>
> A number of users have built recent snapshots and executables are likely 
> to be
> announced within a few days of this tarball release.
>
> Watch http://groups.google.com/group/hugin-ptx for the announcements of 
> binary
> releases.  If you don't see a binary for your platform it has most likely 
> not
> been produced yet.  Consider stepping up to the task.  Instructions at
>
>
> http://wiki.panotools.org/Development_of_Open_Source_tools#Supported_Platforms
>
> Announce your build on http://groups.google.com/group/hugin-ptx
>
> CHANGES SINCE 2014.0RC4
> Updated Danish translation (Thomas Pryds)
> icpfind: Fixes parsing of command line parameters [1276350]
> [OSX] changes to xcode4 project and redefinition of an include in 
> treelistctr
>
> CHANGES SINCE 2014.0RC3
> Fixed typo in last commit (grafted from
> More fixes for crash when loading multiple images in assistant
>
> CHANGES SINCE 2014.0RC2
> Fix for wxCode::wxTreeListCtrl to compile with wx 2.8 again
> Updated wxCode::wxTreeListCtrl
> Fixes crash when loading multiple images in assistant [1316702]
>
> CHANGES SINCE 2014.0RC1
> Fixes for Exiftool argfiles
> Fixes for mask display
> Update api-min for woa.py (grafted from
>
> CHANGES SINCE 2014.0beta1
> python plugins functional again
> Appdata added (to be used in G

Re: [hugin-ptx] Re: Pannellum 2.0

2014-11-18 Thread Matthew Petroff
The initial size of the panorama shouldn't be a problem. I've tested it up 
to cube faces that are 8432px per side, but as far as I know, the maximum 
image size should only be limited by available memory. I didn't see 
anything unusual with your panoramas, and they appeared to be loading 
images from zoom levels 2 and 3. I'll readily admit that the method I'm 
using to choose which zoom level to display is suboptimal. I think the fact 
that you are using a portrait aspect ratio is causing lower resolution 
tiles to display, since the current zoom level algorithm is dependent on 
the horizontal field of view. I probably should be using the diagonal field 
of view. I added a bug to the issue tracker for this [1].

-Matthew

[1] https://github.com/mpetroff/pannellum/issues/19

On Saturday, November 15, 2014 4:42:01 AM UTC-5, FabKzo wrote:
>
>
>
> Le samedi 15 novembre 2014 01:08:50 UTC+1, FabKzo a écrit :
>>
>>
>> Hi Matthew,
>> I'm trying to make a multiRes pano and I wonder if there's a max size for 
>> initial panos before tiling ; 
>> in fact I've rewrited your generate.py script to python 2.7, then 
>> generated tiles for a multires pano; put all files where they need to be ;
>> It works on my wordpress ( on this page : http://fabkzo.com/ , check the 
>> last pano called multitiles test );
>> BUT:as you should see it seems that all squares are smaller than they 
>> should ... 
>>
>> initial photo-squares are 5392px sides, would it be the problem ?
>> Another thing: in my js console I don't see any call to intermediates 
>> folders ( 2 and 3 ), when I zoom it just call the 4th , is it normal?
>>
>
>
> Edit: 
>
> Well, there's a problem with the tiles generated by the modified python 
> script; I need to fix it ;  an idea with zoom occurences ?
>
>>
>> Can you help me understand this?
>>
>> Best regards,
>>
>

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


[hugin-ptx] Re: Hugin 2014.0.0 Windows 64bit binary

2014-11-12 Thread Matthew Petroff
I've been rather busy and haven't had time to create Windows builds. I'm 
going to try to get to it, but I can't really give an estimate as to when.

-Matthew

On Saturday, November 8, 2014 5:28:43 PM UTC-5, Florian Rathgeber wrote:
>
> Are there any plans to release a Windows 64bit binary for Hugin 2014.0.0 
> final?
>
> Thanks,
> Florian
>

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


Re: [hugin-ptx] Re: Pannellum 2.0

2014-11-07 Thread Matthew Petroff
IE 11 is the first version of Internet Explorer to support WebGL [1].

-Matthew

[1] http://caniuse.com/#feat=webgl

On Friday, November 7, 2014 4:10:17 PM UTC-5, FabKzo wrote:
>
> Ok, I share your idea concerning Flash; I just found their site which 
> seems old today (~2008?) , and was surprised by the rendered correcting 
> effect. But why won't Pannellum 2 work with IE10 ? (I don't use any of 
> "windozes" products)
>
> Le vendredi 7 novembre 2014 16:52:56 UTC+1, Matthew Petroff a écrit :
>>
>> Using the `fallback` option allows one to specify a URL for a fallback 
>> viewer. While the pan0 viewer might be open source, I have no desire 
>> whatsoever to deal with Flash and think the quicker it goes away, the 
>> better; additionally pan0 doesn't seem to have much faith in their own 
>> viewer as all their panoramas are using krpano. Older, unsupported versions 
>> of IE have about 7.5% market share, which is less than the share of 
>> browsers that don't support Flash. At this point, an HTML5 viewer is better 
>> supported by browsers than a Flash one.
>>
>> -Matthew
>>
>> On Friday, November 7, 2014 5:13:28 AM UTC-5, FabKzo wrote:
>>>
>>> Ok, thanx;  I just have a probleme installing python3-pip on ubuntu 
>>> 14.04; well, I think I will get rid of it soon; Nevertheless I'm trying to 
>>> rewrite it to python 2.7 ; 
>>>
>>> I've got a question to Matthew: why don't you make a fall-off with pan0 (
>>> pan0.net)  flash panoviewer ? Since it's opensource, in this way panos 
>>> should be readable from all types of browser (like IE, I think ) ?
>>>
>>

-- 
A list of frequently asked questions is available at: 
http://wiki.panotools.org/Hugin_FAQ
--- 
You received this message because you are subscribed to the Google Groups 
"hugin and other free panoramic software" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to hugin-ptx+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/hugin-ptx/832e682c-24eb-435e-bdcd-650bcabd87b8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [hugin-ptx] Re: Pannellum 2.0

2014-11-07 Thread Matthew Petroff
Using the `fallback` option allows one to specify a URL for a fallback 
viewer. While the pan0 viewer might be open source, I have no desire 
whatsoever to deal with Flash and think the quicker it goes away, the 
better; additionally pan0 doesn't seem to have much faith in their own 
viewer as all their panoramas are using krpano. Older, unsupported versions 
of IE have about 7.5% market share, which is less than the share of 
browsers that don't support Flash. At this point, an HTML5 viewer is better 
supported by browsers than a Flash one.

-Matthew

On Friday, November 7, 2014 5:13:28 AM UTC-5, FabKzo wrote:
>
> Ok, thanx;  I just have a probleme installing python3-pip on ubuntu 14.04; 
> well, I think I will get rid of it soon; Nevertheless I'm trying to rewrite 
> it to python 2.7 ; 
>
> I've got a question to Matthew: why don't you make a fall-off with pan0 (
> pan0.net)  flash panoviewer ? Since it's opensource, in this way panos 
> should be readable from all types of browser (like IE, I think ) ?
>

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


Re: [hugin-ptx] Pannellum 2.0

2014-08-24 Thread Matthew Petroff
Thanks for testing. It seems I forgot to include fallback URLs in the 
configuration file, so the fallback didn't happen. It should hopefully work 
now.

-Matthew

On Sunday, August 24, 2014 11:37:18 AM UTC-4, David Haberthür wrote:
>
> Ciao Matthew
>
> On 23 Aug 2014, at 19:37, Matthew Petroff  > wrote:
>
> The CSS 3D renderer only works on Webkit / Blink (krpano's CSS 3D renderer 
> doesn't work in Firefox either). I've successfully tested it on Chromium 36 
> on Linux, Chrome 36 on Android and Windows, and Android Browser 4.1. I 
> don't have any iOS devices to test on, so I don't know about that. […]
>
>
> The stock browser on an unmodified iPhone 4S with iOS 7.1.2 cannot display 
> the panoramas, as seen in the screenshot below.
>
> Habi
>
>

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


[hugin-ptx] Re: Pannellum 2.0

2014-08-23 Thread Matthew Petroff
The CSS 3D renderer only works on Webkit / Blink (krpano's CSS 3D renderer 
doesn't work in Firefox either). I've successfully tested it on Chromium 36 
on Linux, Chrome 36 on Android and Windows, and Android Browser 4.1. I 
don't have any iOS devices to test on, so I don't know about that. It also 
only works for the multires configuration as it requires a separate set of 
higher resolution cube face images with the border row duplicated to 
prevent visible seams along the edges of the cube faces; the included 
Python multires generation script takes care of everything. The WebGL 
renderer has been tested on various versions of Firefox and Chrome on both 
Linux and Windows.

The tour configuration hasn't changed much since it was added a year and a 
half ago.

-Matthew

On Saturday, August 23, 2014 1:42:49 AM UTC-4, Brandon wrote:
>
> Thanks for the update to Pannellum. That is a project that looks like it 
> could turn into something impressive.
>
> Last fall I was trying to use it as backup for the Salando Player, but at 
> that time Pannellum only had WebGL and most of the people with I-things or 
> smart phones that I asked to test it could not get it to work so I gave 
> that up and went another way for a while. 
>
> With the fallback CSS 3d renderer any idea how well supported Pannellum 
> 2.0 is? (With firefox when I  turn off Webgl, the only tour that works is 
> the multires one and it has issues lining up the edges, I have not tried a 
> webkit browser yet. They tend to be the ones that count when used as a 
> flash backup.)
>
> Any major changes to look out for in scripting a tour? 
>
>
>

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


[hugin-ptx] Pannellum 2.0

2014-08-22 Thread Matthew Petroff
Two years in the making, I finally released Pannellum 2.0, which is a near 
complete rewrite. The renderer was replaced with raw WebGL, and 
multiresolution panorama support was added, along with a fallback CSS 3D 
renderer. Other additions include support for JSON configuration files, 
hotspots, tours, compass headings, CORS, partial panoramas, and cubic 
panoramas. Unfortunately, there is still a dearth of 
documentation—something I need to work on.

http://pannellum.org/
https://github.com/mpetroff/pannellum/releases/tag/2.0

-Matthew

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


[hugin-ptx] Re: Hugin_2014.0.0-rc4_32bit_Windows.7z needs MSVCR120D.dll

2014-07-12 Thread Matthew Petroff
See https://bugs.launchpad.net/hugin/+bug/1335231

-Matthew

On Tuesday, July 8, 2014 5:06:19 PM UTC-4, Wolfgang Strobl wrote:
>
> Hugin_2014.0.0-rc4_32bit_Windows.7z contains a pano13.dll which depends 
> on MSVCR120D.dll, which isn't shipped with 
>
> http://sourceforge.net/projects/hugin/files/hugin/hugin-2014.0/Hugin_2014.0.0-rc4_32bit_Windows.7z/download
>  
>
> Most probably, pano13.dll it has accidently been compiled with debug 
> enabled. 
>
> -- 
> Thank you for observing all safety precautions 
>
>

-- 
A list of frequently asked questions is available at: 
http://wiki.panotools.org/Hugin_FAQ
--- 
You received this message because you are subscribed to the Google Groups 
"hugin and other free panoramic software" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to hugin-ptx+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/hugin-ptx/584f1187-13ba-43f1-92ca-dce7df368259%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[hugin-ptx] Re: Hugin 2014 RC4 windows x64 build?

2014-07-02 Thread Matthew Petroff
There were some issues with my 64-bit binaries such that they wouldn't run, 
so they were never uploaded. I'll fix them in mid-August when I have access 
to my build machine again.

-Matthew

On Monday, June 30, 2014 2:43:27 PM UTC-4, Robert Lesac wrote:
>
> Hi! 
> Would someone be kind enough to build the x64 version? 
>
> Thanks! 
>
> -- 
>
> Pano/VR/Gigapixel photography: http://robertlesac.com 
>

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


[hugin-ptx] Re: hugin.exe can't start because python32.dll is missing

2014-03-10 Thread Matthew Petroff
Make sure you are installing Python 3.2 and that its architecture, 32-bit 
or 64-bit, matches the architecture of your Hugin build.

-Matthew

On Monday, March 10, 2014 6:20:09 AM UTC-4, Brandan wrote:
>
> Hi all,
>
> With all of the talk of Python I figured I would give it a try. So I 
> downloaded the newer version of python and hugin 2013 with python. I 
> installed both and restarted my computer. The Python GUI works, but when I 
> try to start hugin I get a pop up 
>
> hugin.exe - System Error
> The Program Can't start because python32.dll is missing from your 
> computer. Try reinstalling the program to fix this problem.
> [OK]
>
> Click OK and it closes.
>
> I have since uninstalled all versions of hugin and python and tried 
> several versions of both. Any ideas what I am doing wrong here?
>
> I am on windows 7
>

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


[hugin-ptx] Re: Hugin 2014.0rc1 released

2014-03-09 Thread Matthew Petroff
Thanks for the bug report. I'll switch back to the older version of make.

-Matthew

On Sunday, March 9, 2014 6:24:21 AM UTC-4, gaab wrote:
>
> Thanks for the Windows distribution. 
>
> I faced the "make Interrupt/Exception caught (code = 0xc005...)". 
> Searching on Google, I found I do have a directory with "...(x86).." in 
> my path variable, unfortunately this is not under my control. 
>
> Replacing make (4.0) with the version distributed with Hugin 2013 (3.82) 
> solved the problem. 
>
> May I suggest you stick to this version of make, until the bug is fixed? 
>
> Gérard 
>
>
> Le 03/03/2014 05:53, Matthew Petroff a écrit : 
> > Windows binaries for Hugin 2014.0.0-rc1 are now available (maybe?). 
> > SourceForge seems to be having some issues as I uploaded the files four 
> > hours ago, but they're still listed as "this file will be ready for 
> > download shortly." For the Python enabled builds, one needs a 
> > preexisting Python 3.3 installation. 
>
>
>

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


Re: [hugin-ptx] Re: Hugin 2014.0beta1 released

2014-03-03 Thread Matthew Petroff
The best guide is the MSVC 2010 SDK page [1].

-Matthew

[1] http://wiki.panotools.org/Hugin_SDK_(MSVC_2010)

On Monday, March 3, 2014 4:50:42 AM UTC-5, Yili Zhao wrote:
>
> Hi Matthew,
>   I also compiled Hugin in Windows, but failed.
>
>   What guide you follow? Is this: 
> http://wiki.panotools.org/Hugin_Compiling_Windows?
>
>   Maybe you can rounding out the compilation guide at 
> http://wiki.panotools.org/Hugin_Compiling_Windows. And even more, to 
> supply a Hugin SDK.
>
>   Thanks!
>
>
> 2014-02-20 9:29 GMT+08:00 Matthew Petroff 
> >:
>
>> They're built with Visual Studio 2013 and wxWidgets 3.0.
>>
>> -Matthew
>>
>>
>> On Wednesday, February 19, 2014 4:13:50 AM UTC-5, Yili Zhao wrote:
>>>
>>> Hi Matthew,
>>>   thanks for the Windows build.
>>>
>>>   Which version of Visual Studio used to build the binaries?
>>>
>>>   Do you try to build Hugin with latest wxWidgets 3.0?
>>>
>>> 在 2014年2月12日星期三UTC+8下午12时53分02秒,Matthew Petroff写道:
>>>>
>>>> Windows binaries for Hugin 2014.0.0-beta1 are now available. I built a 
>>>> new toolchain from scratch, which will hopefully resolve some of the past 
>>>> issues with the 64-bit builds, but being new, it might introduce new bugs 
>>>> for both the 32-bit and 64-bit binaries. I still have to get Python 
>>>> working 
>>>> with it. Additionally, the installers are now digitally signed, so Windows 
>>>> won't complain about them being untrusted anymore.
>>>>
>>>> 32-bit Installer:
>>>> http://sourceforge.net/projects/hugin/files/hugin/
>>>> hugin-2014.0/HuginSetup_2014.0.0-beta1_32bit_Windows.exe/download
>>>>
>>>> 64-bit Installer:
>>>> http://sourceforge.net/projects/hugin/files/hugin/
>>>> hugin-2014.0/HuginSetup_2014.0.0-beta1_64bit_Windows.exe/download
>>>>
>>>> 32-bit 7z Archive:
>>>> http://sourceforge.net/projects/hugin/files/hugin/
>>>> hugin-2014.0/Hugin_2014.0.0-beta1_32bit_Windows.7z/download
>>>>
>>>> 64-bit 7z Archive:
>>>> http://sourceforge.net/projects/hugin/files/hugin/
>>>> hugin-2014.0/Hugin_2014.0.0-beta1_64bit_Windows.7z/download
>>>>
>>>>
>>>> -Matthew
>>>>
>>>> On Tuesday, December 31, 2013 1:34:06 PM UTC-5, Harry van der Wolf 
>>>> wrote:
>>>>>
>>>>> Hi all,
>>>>>
>>>>> On the last day of the year 2013 we release the source tarball for the 
>>>>> new Hugin release 2014.0.
>>>>>
>>>>> See below what the new 2014.0 beta1 brings to you.
>>>>>
>>>>> ==
>>>>> Hugin-2014.0 RELEASE NOTES
>>>>>
>>>>> ABOUT
>>>>>
>>>>> Hugin is more than just a panorama stitcher. 
>>>>>
>>>>> Hugin can be found at
>>>>> * SourceForge:  http://hugin.sourceforge.net/
>>>>> * Launchpad:https://launchpad.net/hugin
>>>>>
>>>>>
>>>>> DOWNLOAD
>>>>>
>>>>> The 2014.0 source tarball can be downloaded
>>>>>
>>>>> * from SourceForge at
>>>>> http://sourceforge.net/projects/hugin/files/hugin/hugin-2014.0/hugin-
>>>>> 2014.0.0_beta1.tar.bz2/download
>>>>>
>>>>> * from Launchpad at
>>>>> https://launchpad.net/hugin/2014.0/2014.0beta1/+download/hugin-2014
>>>>> .0.0_beta1.tar.bz2
>>>>>
>>>>> This is a source code release.  For executables see below.
>>>>>
>>>>> This tarball is equivalent to rev/changeset e0149de401d0 in our 
>>>>> Mercurial
>>>>> repository, where it is also tagged 2014.0.0beta1
>>>>>
>>>>> Verify its SHA1SUM  ecee715fcd1972a04e96abfcaab66386ef00a2b1  
>>>>> hugin-2014.0.0_beta1.tar.bz2
>>>>>  
>>>>> EXECUTABLES
>>>>>
>>>>> Users communities produce executables for their respective platforms.
>>>>>
>>>>> These executables are then added to the download section on 
>>>>> SourceForge at
>>>>> http://sourceforge.net/projects/hugin/files/hugin/
>>>>>
>>>>> A number of users have built recent snapshots and executables are 
>>>>> likely to be
>>>

[hugin-ptx] Re: Hugin 2014.0rc1 released

2014-03-02 Thread Matthew Petroff

Windows binaries for Hugin 2014.0.0-rc1 are now available (maybe?). 
SourceForge seems to be having some issues as I uploaded the files four 
hours ago, but they're still listed as "this file will be ready for 
download shortly." For the Python enabled builds, one needs a preexisting 
Python 3.3 installation.

32-bit Installer:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2014.0/HuginSetup_2014.0.0-rc1_32bit_Windows.exe/download

32-bit Installer with Python:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2014.0/HuginSetup_2014.0.0-rc1_32bit_Python_Windows.exe/download

64-bit Installer:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2014.0/HuginSetup_2014.0.0-rc1_64bit_Windows.exe/download

64-bit Installer with Python:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2014.0/HuginSetup_2014.0.0-rc1_64bit_Python_Windows.exe/download

32-bit 7z Archive:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2014.0/Hugin_2014.0.0-rc1_32bit_Windows.7z/download

32-bit 7z Archive with Python:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2014.0/Hugin_2014.0.0-rc1_32bit_Python_Windows.7z/download

64-bit 7z Archive:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2014.0/Hugin_2014.0.0-rc1_64bit_Windows.7z/download

64-bit 7z Archive with Python:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2014.0/Hugin_2014.0.0-rc1_64bit_Python_Windows.7z/download


-Matthew

On Wednesday, February 19, 2014 2:34:59 PM UTC-5, Harry van der Wolf wrote:
>
> Hi all,
>
> See below the slighly adjusted release notes for the Hugin 2014 RC1 
> release.
>
>
> =Hugin-2014.0 RELEASE NOTES
>
> ABOUT
>
> Hugin is more than just a panorama stitcher.
>
> Hugin can be found at
> * SourceForge:  http://hugin.sourceforge.net/
> * Launchpad:https://launchpad.net/hugin
>
>
> DOWNLOAD
>
> The 2014.0 source tarball can be downloaded
>
> * from SourceForge at
> http://sourceforge.net/projects/hugin/files/hugin/hugin-2014.0/hugin-2014.0.0_rc1.tar.bz2/download
>
> * from Launchpad at
> https://launchpad.net/hugin/2014.0/2014.0rc1/+download/hugin-2014.0.0_rc1.tar.bz2
>
> This is a source code release.  For executables see below.
>
> This tarball is equivalent to rev/changeset e6f3a9d91cca in our Mercurial
> repository, where it is also tagged 2014.0.0rc1
>
> Verify its SHA1SUM  adfdbfbe9f255c3aa4b675194ef534a1d8a49ae4  
> hugin-2014.0.0_rc1.tar.bz2
>
> EXECUTABLES
>
> Users communities produce executables for their respective platforms.
>
> These executables are then added to the download section on SourceForge at
> http://sourceforge.net/projects/hugin/files/hugin/
>
> A number of users have built recent snapshots and executables are likely to be
> announced within a few days of this tarball release.
>
> Watch http://groups.google.com/group/hugin-ptx for the announcements of binary
>
> releases.  If you don't see a binary for your platform it has most likely not
> been produced yet.  Consider stepping up to the task.  Instructions at
>
> http://wiki.panotools.org/Development_of_Open_Source_tools#Supported_Platforms
>
> Announce your build on http://groups.google.com/group/hugin-ptx
>
> CHANGES SINCE 2014.0beta1
>
>   python plugins functional again
>   Appdata added (to be used in GNOME Software Center)
>
>   Updates to Mac OS X builds and for MSVC2013 Windows builds
>   Many translations updated
>   Minor bugs fixed
>
> CHANGES SINCE 2013.0.0
>
> inherit many of the libpano improvements (of version 2.9.19)
> the translation plane variables Tpy and Tpp have been added to the GUI 
> (better support for translation parameters, e.g. for nadir images. A pano 
> with translation parameters can now be rotated)
>
> improvement of the GPU remapping code (bug fixes in the glue code, added 
> some missing GPU transformations. Now fisheye lenses are supported by GPU 
> code as well)
> better support for line control point in Control points tab (it still 
> requires that the same image is displayed left and right for full features, 
> but also better support for line control points above several images)
>
> obsolete programs matchpoint, nona_gui and PTBatcher have been removed
> outdated translations have been removed from the default install
> initialize the colour balance values during loading with EXIF values 
> (this information is only stored and decoded by some cameras (mainly models 
> by Panasonic, Pentax, Olympus, Nikon))
>
> improved the assistant
> allow customization of exiftool command used to copy metadata to output 
> images
>
>
> New tools added:
>
> pto_mask: manipulate mask in project file
> pto_template: apply template to project file
>
> pto_move: move or copy project files with all associated images
>
>
>
> Other Improvements
> * Many more improvements and bug fixes.
>
> UPGRADING
>
> Upgrading from previous versions of Hugin should be seamless. If you do have
>
> problems with old settings, these can b

[hugin-ptx] Re: Hugin 2014.0beta1 released

2014-02-19 Thread Matthew Petroff
They're built with Visual Studio 2013 and wxWidgets 3.0.

-Matthew

On Wednesday, February 19, 2014 4:13:50 AM UTC-5, Yili Zhao wrote:
>
> Hi Matthew,
>   thanks for the Windows build.
>
>   Which version of Visual Studio used to build the binaries?
>
>   Do you try to build Hugin with latest wxWidgets 3.0?
>
> 在 2014年2月12日星期三UTC+8下午12时53分02秒,Matthew Petroff写道:
>>
>> Windows binaries for Hugin 2014.0.0-beta1 are now available. I built a 
>> new toolchain from scratch, which will hopefully resolve some of the past 
>> issues with the 64-bit builds, but being new, it might introduce new bugs 
>> for both the 32-bit and 64-bit binaries. I still have to get Python working 
>> with it. Additionally, the installers are now digitally signed, so Windows 
>> won't complain about them being untrusted anymore.
>>
>> 32-bit Installer:
>>
>> http://sourceforge.net/projects/hugin/files/hugin/hugin-2014.0/HuginSetup_2014.0.0-beta1_32bit_Windows.exe/download
>>
>> 64-bit Installer:
>>
>> http://sourceforge.net/projects/hugin/files/hugin/hugin-2014.0/HuginSetup_2014.0.0-beta1_64bit_Windows.exe/download
>>
>> 32-bit 7z Archive:
>>
>> http://sourceforge.net/projects/hugin/files/hugin/hugin-2014.0/Hugin_2014.0.0-beta1_32bit_Windows.7z/download
>>
>> 64-bit 7z Archive:
>>
>> http://sourceforge.net/projects/hugin/files/hugin/hugin-2014.0/Hugin_2014.0.0-beta1_64bit_Windows.7z/download
>>
>>
>> -Matthew
>>
>> On Tuesday, December 31, 2013 1:34:06 PM UTC-5, Harry van der Wolf wrote:
>>>
>>> Hi all,
>>>
>>> On the last day of the year 2013 we release the source tarball for the 
>>> new Hugin release 2014.0.
>>>
>>> See below what the new 2014.0 beta1 brings to you.
>>>
>>> ==
>>> Hugin-2014.0 RELEASE NOTES
>>>
>>> ABOUT
>>>
>>> Hugin is more than just a panorama stitcher. 
>>>
>>> Hugin can be found at
>>> * SourceForge:  http://hugin.sourceforge.net/
>>> * Launchpad:https://launchpad.net/hugin
>>>
>>>
>>> DOWNLOAD
>>>
>>> The 2014.0 source tarball can be downloaded
>>>
>>> * from SourceForge at
>>> http://sourceforge.net/projects/hugin/files/hugin/hugin-2014.0/hugin-
>>> 2014.0.0_beta1.tar.bz2/download
>>>
>>> * from Launchpad at
>>> https://launchpad.net/hugin/2014.0/2014.0beta1/+download/hugin-2014
>>> .0.0_beta1.tar.bz2
>>>
>>> This is a source code release.  For executables see below.
>>>
>>> This tarball is equivalent to rev/changeset e0149de401d0 in our Mercurial
>>> repository, where it is also tagged 2014.0.0beta1
>>>
>>> Verify its SHA1SUM  ecee715fcd1972a04e96abfcaab66386ef00a2b1  
>>> hugin-2014.0.0_beta1.tar.bz2
>>>  
>>> EXECUTABLES
>>>
>>> Users communities produce executables for their respective platforms.
>>>
>>> These executables are then added to the download section on SourceForge 
>>> at
>>> http://sourceforge.net/projects/hugin/files/hugin/
>>>
>>> A number of users have built recent snapshots and executables are likely 
>>> to be
>>> announced within a few days of this tarball release.
>>>
>>> Watch http://groups.google.com/group/hugin-ptx for the announcements of 
>>> binary
>>> releases.  If you don't see a binary for your platform it has most 
>>> likely not
>>> been produced yet.  Consider stepping up to the task.  Instructions at
>>>
>>>
>>> http://wiki.panotools.org/Development_of_Open_Source_tools#Supported_Platforms
>>>
>>> Announce your build on http://groups.google.com/group/hugin-ptx
>>>
>>>
>>> CHANGES SINCE 2013.0.0
>>>
>>>
>>>- inherit many of the libpano improvements (of version 2.9.19) 
>>>- the translation plane variables Tpy and Tpp have been added to the 
>>>GUI (better support for translation parameters, e.g. for nadir images. A 
>>>pano with translation parameters can now be rotated)
>>>- improvement of the GPU remapping code (bug fixes in the glue code, 
>>>added some missing GPU transformations. Now fisheye lenses are supported 
>>> by 
>>>GPU code as well)
>>>- better support for line control point in Control points tab (it 
>>>still requires that the same image is displayed left and right for full 
>>>features, 

[hugin-ptx] Re: Hugin 2014.0beta1 released

2014-02-12 Thread Matthew Petroff
The only change that was required for Hugin to build was adding  
for std::min. I also needed to add it in a few places to OpenEXR for it to 
build. My best guess is it was a difference between static and shared 
builds; I know at least the libpano change was required due to me compiling 
a shared build. I kept getting internal compiler errors that required me to 
restart the build and see the same warnings over and over again, which is 
why I tried fixing them. Of course, attempting to fix warnings while 
annoyed with the compiler probably isn't the best idea. It leads to things 
such as not noticing arguments being passed by reference; sorry about that. 
Fortunately, I stopped getting internal compiler errors once I switched the 
platform toolset to XP compatibility.

-Matthew

On Wednesday, February 12, 2014 11:30:42 AM UTC-5, T. Modes wrote:
>
> Hi Matthew,
>
> Am Mittwoch, 12. Februar 2014 05:53:02 UTC+1 schrieb Matthew Petroff:
>>
>> Windows binaries for Hugin 2014.0.0-beta1 are now available. I built a 
>> new toolchain from scratch, which will hopefully resolve some of the past 
>> issues with the 64-bit builds, but being new, it might introduce new bugs 
>> for both the 32-bit and 64-bit binaries. 
>>
>
> I wonder a little bit about your changes.
>
> 1.) I'm working some time with MSVC2013. And it compiled also without your 
> changes.
>
> 2.) You have deactivated the photometric optimizer for release builds (the 
> photometric optimizer would only run in debug mode). I reverted your 
> changes already for this case.
>
> 3.) Please be careful with unsigned <> int changes. From libpano13 2.9.18 
> to 2.9.19 there were changes to clean up the unsigned - signed issues. But 
> this resulted in difficult to debug issues with overflow/underflow of the 
> modified variables (e.g. int i=5; int j=8; int x=i-j; will result in x=-3, 
> but if you change int to unsigned int you will get a very different x). I 
> know there are many unsigned <> signed warnings. The gcc compiler issues 
> other warning. So for a multi platform project we can't fix all warnings 
> for all platforms.
>  Also keep in mind that size_t is implementation dependent: in MSVC 32 bit 
> size_t is unsigned int, but in MSVC 64 bit size_t is unsigned _int64. Just 
> keep this in mind for further changes.
>
> Thomas
> Thomas
>

-- 
A list of frequently asked questions is available at: 
http://wiki.panotools.org/Hugin_FAQ
--- 
You received this message because you are subscribed to the Google Groups 
"hugin and other free panoramic software" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to hugin-ptx+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/hugin-ptx/e8c16032-dd12-47fa-ad6e-62c9bb850ea8%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [hugin-ptx] Libpano13 Patch

2014-02-12 Thread Matthew Petroff
I looked at my patch again and realized it breaks things for non-Windows. 
Attached is a revised patch that should actually fix things.

-Matthew

On Tuesday, February 11, 2014 10:45:33 PM UTC-5, Tduell wrote:
>
> On Wed, 12 Feb 2014 10:20:03 +1100, Bruno Postle 
> > 
> wrote: 
>
> > 
> > I can't check from here, but I'm not sure hg import will work with this 
>   
> > diff, probably something like this should do it: 
> > 
> >patch -p1 < ../libpano-msvc-patch.diff 
> > 
>
> That worked OK, thanks. 
>
> Cheers, 
> -- 
> Regards, 
> Terry Duell 
>

-- 
A list of frequently asked questions is available at: 
http://wiki.panotools.org/Hugin_FAQ
--- 
You received this message because you are subscribed to the Google Groups 
"hugin and other free panoramic software" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to hugin-ptx+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/hugin-ptx/cf59b9fb-044a-4138-bc68-d2d8ac12daac%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
diff -r 9133a9949ad2 math.c
--- a/math.c	Tue Feb 11 20:06:01 2014 -0500
+++ b/math.c	Wed Feb 12 11:14:25 2014 -0500
@@ -52,6 +52,7 @@
 //- Some auxilliary math functions 
 
 // atanh is not available on MSVC until Visual Studio 2012. Use the atanh routine from gsl.
+#ifdef _MSC_VER
 #if _MSC_VER < 1700
 
 #define GSL_DBL_EPSILON2.2204460492503131e-16
@@ -95,6 +96,7 @@
 }
 } 
 #endif
+#endif
 
 void matrix_mult( double m[3][3], double vector[3] )
 {



[hugin-ptx] Re: Hugin 2014.0beta1 released

2014-02-11 Thread Matthew Petroff
Windows binaries for Hugin 2014.0.0-beta1 are now available. I built a new 
toolchain from scratch, which will hopefully resolve some of the past 
issues with the 64-bit builds, but being new, it might introduce new bugs 
for both the 32-bit and 64-bit binaries. I still have to get Python working 
with it. Additionally, the installers are now digitally signed, so Windows 
won't complain about them being untrusted anymore.

32-bit Installer:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2014.0/HuginSetup_2014.0.0-beta1_32bit_Windows.exe/download

64-bit Installer:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2014.0/HuginSetup_2014.0.0-beta1_64bit_Windows.exe/download

32-bit 7z Archive:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2014.0/Hugin_2014.0.0-beta1_32bit_Windows.7z/download

64-bit 7z Archive:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2014.0/Hugin_2014.0.0-beta1_64bit_Windows.7z/download


-Matthew

On Tuesday, December 31, 2013 1:34:06 PM UTC-5, Harry van der Wolf wrote:
>
> Hi all,
>
> On the last day of the year 2013 we release the source tarball for the new 
> Hugin release 2014.0.
>
> See below what the new 2014.0 beta1 brings to you.
>
> ==
> Hugin-2014.0 RELEASE NOTES
>
> ABOUT
>
> Hugin is more than just a panorama stitcher. 
>
> Hugin can be found at
> * SourceForge:  http://hugin.sourceforge.net/
> * Launchpad:https://launchpad.net/hugin
>
>
> DOWNLOAD
>
> The 2014.0 source tarball can be downloaded
>
> * from SourceForge at
> http://sourceforge.net/projects/hugin/files/hugin/hugin-2014.0/hugin-2014
> .0.0_beta1.tar.bz2/download
>
> * from Launchpad at
> https://launchpad.net/hugin/2014.0/2014.0beta1/+download/hugin-2014
> .0.0_beta1.tar.bz2
>
> This is a source code release.  For executables see below.
>
> This tarball is equivalent to rev/changeset e0149de401d0 in our Mercurial
> repository, where it is also tagged 2014.0.0beta1
>
> Verify its SHA1SUM  ecee715fcd1972a04e96abfcaab66386ef00a2b1  
> hugin-2014.0.0_beta1.tar.bz2
>  
> EXECUTABLES
>
> Users communities produce executables for their respective platforms.
>
> These executables are then added to the download section on SourceForge at
> http://sourceforge.net/projects/hugin/files/hugin/
>
> A number of users have built recent snapshots and executables are likely 
> to be
> announced within a few days of this tarball release.
>
> Watch http://groups.google.com/group/hugin-ptx for the announcements of 
> binary
> releases.  If you don't see a binary for your platform it has most likely 
> not
> been produced yet.  Consider stepping up to the task.  Instructions at
>
>
> http://wiki.panotools.org/Development_of_Open_Source_tools#Supported_Platforms
>
> Announce your build on http://groups.google.com/group/hugin-ptx
>
>
> CHANGES SINCE 2013.0.0
>
>
>- inherit many of the libpano improvements (of version 2.9.19) 
>- the translation plane variables Tpy and Tpp have been added to the 
>GUI (better support for translation parameters, e.g. for nadir images. A 
>pano with translation parameters can now be rotated)
>- improvement of the GPU remapping code (bug fixes in the glue code, 
>added some missing GPU transformations. Now fisheye lenses are supported 
> by 
>GPU code as well)
>- better support for line control point in Control points tab (it 
>still requires that the same image is displayed left and right for full 
>features, but also better support for line control points above several 
>images)
>- obsolete programs matchpoint, nona_gui and PTBatcher have been 
>removed
>- outdated translations have been removed from the default install
>- initialize the colour balance values during loading with EXIF values 
>(this information is only stored and decoded by some cameras (mainly 
> models 
>by Panasonic, Pentax, Olympus, Nikon))
>- improved the assistant
>- allow customization of exiftool command used to copy metadata to 
>output images
>
>
> New tools added:
>
>- pto_mask: manipulate mask in project file
>- pto_template: apply template to project file
>- pto_move: move or copy project files with all associated images
>
>
>
> Other Improvements
> * Many more improvements and bug fixes.
>
> UPGRADING
>
> Upgrading from previous versions of Hugin should be seamless. If you do 
> have
> problems with old settings, these can be reset in the Preferences by 
> clicking
> 'Load defaults'.
>
> It is strongly recommeded to set the default control point detector to
> Hugin's CPFind.  It is the only control point generator endorsed by Hugin.
> Third-party generators may be compatible with the plug-in architecture.
>
>
> COMPILING
>
> Users compiling from source refer to the dependencies listed at
> http://wiki.panotools.org/Development_of_Open_Source_tools#Dependencies
>
> and the build processes listed at
>
> http://wiki.panotools.org/Development_of_Open_Source_tools#Build_yo

Re: [hugin-ptx] Libpano13 Patch

2014-02-11 Thread Matthew Petroff
It wasn't an hg patch. Attached is an hg patch that should work with hg 
import.

-Matthew

On Tuesday, February 11, 2014 5:45:23 PM UTC-5, Tduell wrote:
>
> Hello Matthew, 
>
> On Wed, 12 Feb 2014 09:11:00 +1100, Matthew Petroff 
> > 
>   
> wrote: 
>
> > Attached is a small patch for libpano13 that uses the default atanh 
> > function for MSVC 2012+ instead of the bundled version. It fixes shared 
> > library compilation on MSVC 2013. Could someone with repository access 
> > please commit it? 
> > 
>
> I tried, but it failed to apply... 
>
> [terry@localhost libpano13]$ hg import ../libpano-msvc-patch.diff 
> applying ../libpano-msvc-patch.diff 
> patching file math.c 
> Hunk #1 FAILED at 50 
> 1 out of 1 hunks FAILED -- saving rejects to file math.c.rej 
> abort: patch failed to apply 
>
> The content of math.c.rej, 
>
> --- math.c 
> +++ math.c 
> @@ -51,8 +51,8 @@ 
>
>   //- Some auxilliary math functions   
>  
>
> -// atanh is not available on MSVC. Use the atanh routine from gsl 
> -#ifdef _MSC_VER 
> +// atanh is not available on MSVC until Visual Studio 2012. Use the atanh 
>   
> routine from gsl. 
> +#if _MSC_VER < 1700 
>
>   #define GSL_DBL_EPSILON2.2204460492503131e-16 
>   #define GSL_SQRT_DBL_EPSILON   1.4901161193847656e-08 
>
> I can't see any other changes in these lines of math.c in my working copy 
>   
> that would affect the patch. 
>
> Cheers, 
> -- 
> Regards, 
> Terry Duell 
>

-- 
A list of frequently asked questions is available at: 
http://wiki.panotools.org/Hugin_FAQ
--- 
You received this message because you are subscribed to the Google Groups 
"hugin and other free panoramic software" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to hugin-ptx+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/hugin-ptx/47b7f385-b8de-41c6-b072-d1baad24d9ac%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
# HG changeset patch
# User Matthew Petroff 
# Date 1392167161 18000
# Node ID 9133a9949ad20a7da01417c563ab8572d3aabe59
# Parent  bced6574df70eb724f30e94b946273d2dd3b2d1e
Use default atanh for MSVC 2012+.

diff -r bced6574df70 -r 9133a9949ad2 math.c
--- a/math.c	Mon Jan 06 23:00:51 2014 +
+++ b/math.c	Tue Feb 11 20:06:01 2014 -0500
@@ -51,8 +51,8 @@
 
 //- Some auxilliary math functions 
 
-// atanh is not available on MSVC. Use the atanh routine from gsl
-#ifdef _MSC_VER
+// atanh is not available on MSVC until Visual Studio 2012. Use the atanh routine from gsl.
+#if _MSC_VER < 1700
 
 #define GSL_DBL_EPSILON2.2204460492503131e-16
 #define GSL_SQRT_DBL_EPSILON   1.4901161193847656e-08 


[hugin-ptx] Libpano13 Patch

2014-02-11 Thread Matthew Petroff
Attached is a small patch for libpano13 that uses the default atanh 
function for MSVC 2012+ instead of the bundled version. It fixes shared 
library compilation on MSVC 2013. Could someone with repository access 
please commit it?

Thanks.

-Matthew

-- 
A list of frequently asked questions is available at: 
http://wiki.panotools.org/Hugin_FAQ
--- 
You received this message because you are subscribed to the Google Groups 
"hugin and other free panoramic software" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to hugin-ptx+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/hugin-ptx/b5bf2802-6722-4e5c-8a9b-2b9210105abe%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
diff -r bced6574df70 math.c
--- a/math.c	Mon Jan 06 23:00:51 2014 +
+++ b/math.c	Tue Feb 11 17:03:43 2014 -0500
@@ -51,8 +51,8 @@
 
 //- Some auxilliary math functions 
 
-// atanh is not available on MSVC. Use the atanh routine from gsl
-#ifdef _MSC_VER
+// atanh is not available on MSVC until Visual Studio 2012. Use the atanh routine from gsl.
+#if _MSC_VER < 1700
 
 #define GSL_DBL_EPSILON2.2204460492503131e-16
 #define GSL_SQRT_DBL_EPSILON   1.4901161193847656e-08 



[hugin-ptx] Re: Panostitch is a port of Hugin, but it is paid and does not provide source code?

2014-02-03 Thread Matthew Petroff
When I emailed the developer a few months ago, they gave me a copy of the 
source code without any issue.

-Matthew

On Monday, February 3, 2014 4:28:17 AM UTC-5, Naked Robot wrote:
>
>
> https://play.google.com/store/apps/details?id=com.myboyfriendisageek.panostitch
>
>
> this is a port of hugin, right?
>
> how can they charge money for it?
>
> where is the source code?
>
> how can this be solved?
>
> I just want to bring up the issue. If I am saying something incorrect 
> please correct me.
>
> thank you
>

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


Re: [hugin-ptx] Recommended panorama viewer? Hints for using pannellum?

2013-11-17 Thread Matthew Petroff
I'm posting a copy of what I sent off list in case it helps anyone else:

> Since Pannellum currently loads the image as one texture, the WebGL 
texture
> size limits limit the maximum image resolution. I recommend a maximum 
image
> dimension of 4096 pixels on the largest side, as it is supported by >90% 
of
> WebGL enabled browsers. If you need higher resolution, a maximum image
> dimension of 8192 pixels is supported by >60% of WebGL enabled browsers. A
> maximum image dimension of 16384 pixels is supported by ~14% of WebGL 
enabled
> browsers, and anything larger, e.g. your image dimension of 29542 pixels,
> isn't supported by any browsers.
> 
> I'm currently working on adding support for larger images using a
> multiresolution, image pyramid based scheme, but it's currently in an 
alpha
> state. Once done, it will allow for arbitrarily large images, but for now 
one
> is in practice limited to a maximum image dimension of 4096 pixels, a
> resolution of about 8 megapixels for a full equirectangular panorama.

-Matthew

On Saturday, November 16, 2013 3:57:51 PM UTC-5, Michael Below wrote:
>
>
> Am Samstag, den 16.11.2013, 10:55 -0800 schrieb Michael Below: 
>
> > I have tried the current master branch from github, with the partial 
> option, 
> > and I have tried the stable branch from github as well. In both 
> > cases, pannellum says it is working for a short time (the waiting symbol 
> is 
> > shown), but then just black is displayed instead of my image. 
> > Also, it doesn't make a difference if I use cylindrical or 
> equirectangular 
> > projection. 
>
> I got a quick reply from the pannellum author: Pannellum loads the image 
> as one WebGL texture. Textures have a maximum size of 4096 or 8192 
> pixels, my image exceeded this, so it couldn't work. With a downscaled 
> version, I get to see an image -- but it seems to be shown as 360*180 
> degrees, not my 298*22 degrees. Now I just have to find out how to get 
> the scaling right. 
>
>
>
>

-- 
A list of frequently asked questions is available at: 
http://wiki.panotools.org/Hugin_FAQ
--- 
You received this message because you are subscribed to the Google Groups 
"hugin and other free panoramic software" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to hugin-ptx+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/hugin-ptx/e9c5d3ca-2eaf-456f-9977-a9df21ffa807%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


[hugin-ptx] Re: Hugin 2013.0.0 released

2013-10-27 Thread Matthew Petroff
Windows binaries for Hugin 2013.0.0 are now available. For the Python
enabled builds, one needs a preexisting Python 3.2 installation.

32-bit Installer:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2013.0/HuginSetup_2013.0.0_32bit_Windows.exe/download

32-bit Installer with Python:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2013.0/HuginSetup_2013.0.0_32bit_Python_Windows.exe/download

64-bit Installer:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2013.0/HuginSetup_2013.0.0_64bit_Windows.exe/download

64-bit Installer with Python:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2013.0/HuginSetup_2013.0.0_64bit_Python_Windows.exe/download

32-bit 7z Archive:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2013.0/Hugin_2013.0.0_32bit_Windows.7z/download

32-bit 7z Archive with Python:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2013.0/Hugin_2013.0.0_32bit_Python_Windows.7z/download

64-bit 7z Archive:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2013.0/Hugin_2013.0.0_64bit_Windows.7z/download

64-bit 7z Archive with Python:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2013.0/Hugin_2013.0.0_64bit_Python_Windows.7z/download


-Matthew

On Sunday, October 27, 2013 8:54:50 AM UTC-4, Harry van der Wolf wrote:
>
> Hugin-2013.0 RELEASE NOTES
>
> ABOUT
>
> Hugin is more than just a panorama stitcher. 
>
> Hugin can be found at
> * SourceForge:  http://hugin.sourceforge.net/
> * Launchpad:https://launchpad.net/hugin
>
>
> DOWNLOAD
>
> The 2013.0 source tarball can be downloaded
>
> * from SourceForge at
>
> http://sourceforge.net/projects/hugin/files/hugin/hugin-2013.0/hugin-2013.0.0.tar.bz2/download
>
> * from Launchpad at
>
> https://launchpad.net/hugin/2013.0/2013.0.0/+download/hugin-2013.0.0.tar.bz2
>
> This is a source code release.  For executables see below.
>
> This tarball is equivalent to rev/changeset e9df4bb31222 in our Mercurial
> repository, where it is also tagged 2013.0.0
>
> Verify its SHA1SUM
> 0e0689cf2ca0c4a2730cffe06380eda976b6772d  hugin-2013.0.0.tar.bz2
>
> EXECUTABLES
>
> Users communities produce executables for their respective platforms.
>
> These executables are then added to the download section on SourceForge at
> http://sourceforge.net/projects/hugin/files/hugin/
>
> A number of users have built recent snapshots and executables are likely 
> to be
> announced within a few days of this tarball release.
>
> Watch http://groups.google.com/group/hugin-ptx for the announcements of 
> binary
> releases.  If you don't see a binary for your platform it has most likely 
> not
> been produced yet.  Consider stepping up to the task.  Instructions at
>
>
> http://wiki.panotools.org/Development_of_Open_Source_tools#Supported_Platforms
>
> Announce your build on http://groups.google.com/group/hugin-ptx
>
>
> CHANGES SINCE 2012.0.0
>
> * The greatest change is the redesign of the (Graphical) User Interface 
> (GUI). The user interface now consists of three modes: Simple, Advanced and 
> Expert.
> The Simple interface is for the beginning panorama photographer and offers 
> all tools to create your panorama. You can also use this mode if you have a 
> simple, straightforward panorama. The Simple interface mode uses the "Fast 
> Preview"  window as its main workflow window.
> The Advanced interface mode offers you more options to improve your 
> panorama. It uses the Panorama Editor as its main window.
> The Expert mode gives you access to all options and functions that Hugin 
> has to offer. This is where you can optimize your complicated, multilayer, 
> mosaic, multi-stack, you name it, panorama. It also uses the Panorama 
> Editor as its main window.
>
> * The Hugin build for Mac OS X has switched from Carbon to Cocoa and is 
> now fully 64bit.
>
> New tools added:
> * pto_var ( change image variables inside pto files)
> * pto_lensstack (modify assigned lenses and stack in pto files)
> * geocpset  (set/add geometric constraints for multirow panorama with 
> featureless images)
>
>
> Other Improvements
> * Many more improvements and bug fixes.
>
> UPGRADING
>
> Upgrading from previous versions of Hugin should be seamless. If you do 
> have
> problems with old settings, these can be reset in the Preferences by 
> clicking
> 'Load defaults'.
>
> It is strongly recommeded to set the default control point detector to
> Hugin's CPFind.  It is the only control point generator endorsed by Hugin.
> Third-party generators may be compatible with the plug-in architecture.
>
>
> COMPILING
>
> Users compiling from source refer to the dependencies listed at
> http://wiki.panotools.org/Development_of_Open_Source_tools#Dependencies
>
> and the build processes listed at
>
> http://wiki.panotools.org/Development_of_Open_Source_tools#Build_your_Own_Test_Builds
>
> More information in the README and INSTALL_cmake files in the tarball.
>
>
> KNOWN ISSUES AND WORKAROUNDS
>
> There is a known problem building Hugin with CMake 2.8.5rc2.

Re: [hugin-ptx] High-Quality Computational Imaging Through Simple Lenses

2013-10-04 Thread Matthew Petroff
Terry,

I modified the MATLAB script to only run their algorithm and use the 
provided motion blur blur kernel on a full size image. Here are the results 
when run on an 18MP photo I had:

Original:
http://i.imgur.com/rRwaKbc.jpg

Blurred:
http://i.imgur.com/NyGg6JN.jpg

Deconvoluted:
http://i.imgur.com/fCeOTGy.jpg

The script takes the original image, applies the blur kernel, adds Gaussian 
noise to both the blurred image and the blur kernel, and then runs the 
deconvolution. It took an hour and a half, maxing out all four cores of my 
4.2GHz Ivy Bridge processor. If you have any images you want me to test, 
I'd be happy to do so. We just need a good way to estimate an image's blur 
kernel.

-Matthew

On Thursday, October 3, 2013 7:16:32 PM UTC-4, Tduell wrote:
>
> Hello Matthew, 
>
> On Wed, 02 Oct 2013 09:41:06 +1000, Matthew Petroff 
> > 
>   
> wrote: 
>
> > Terry, 
> > 
> > I read the paper, and I don't think you'll be able to use your existing 
> > images. The technique is based on first calibrating a lens to find 
> > spatially varying point spread functions via a patch-based method and   
> > then 
> > using the known blur kernel to correct subsequent images. Without   
> > properly 
> > calibrated point spread functions, it won't work, and none of the   
> > downloads 
> > provide their calibration target or code to generate the point spread 
> > functions. It also only corrects for blurs inherent in the lens optics, 
>   
> > not motion blurs. 
> > 
>
> I have a bit more of a think about this, and I am inclined to think that   
> the method may be applicable to the correction of any image, if one can   
> estimate the PSF. 
> If I understand it correctly, their approach is to derive, by test, a PSF 
>   
> for the lens, then apply that PSF to correcting the image . 
> If one has other methods of deriving the PSF from the subject image (or   
>  from a sharp and blurred pair as might be the case for pano work) then 
> one   
> could use their method to apply that PSF to correcting the image. 
> A look in the "kernels" directory of the code package shows a kernel   
> "motion_blur.png" and some others that have the characteristics of motion 
>   
> blur. 
> The above is a tad academic right now as the only means I have of testing 
>   
> this is to use the code package with Octave. 
> As you have said, some of the Matlab functions that are used are not   
> available for Octave, and I'm not sure how I will go getting over that   
> hurdle. 
>
> Cheers, 
> -- 
> Regards, 
> Terry Duell 
>

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


Re: [hugin-ptx] High-Quality Computational Imaging Through Simple Lenses

2013-10-01 Thread Matthew Petroff
Terry,

I read the paper, and I don't think you'll be able to use your existing 
images. The technique is based on first calibrating a lens to find 
spatially varying point spread functions via a patch-based method and then 
using the known blur kernel to correct subsequent images. Without properly 
calibrated point spread functions, it won't work, and none of the downloads 
provide their calibration target or code to generate the point spread 
functions. It also only corrects for blurs inherent in the lens optics, not 
motion blurs.

-Matthew

On Tuesday, October 1, 2013 6:58:57 PM UTC-4, Tduell wrote:
>
> Hello All, 
>
> On Mon, 30 Sep 2013 19:53:08 +1000, kevin 
> > 
> wrote: 
>
> > Would this be something that would be useful for hugin to have built 
> into 
> > it? 
> > 
> > http://www.cs.ubc.ca/labs/imager/tr/2013/SimpleLensImaging/index.html 
> > 
>
> I have spent a Lot of time investigating many deblur methods, and most are 
>   
> average at best. 
> Some are quite good, or seem to be, until you place your deblurred image   
> in amongst other sharp images in a pano, and that is when you really see   
> how much better the deblur needs to be. 
> I have yet to look at this method, but if it relies on finding a blur   
> kernel, or point spread function, that is uniform for the whole image, it 
>   
> is probably not going to give good results for all cases. 
> When I have tested the code I may change my mind. 
> I have a set of overlapping images, provided by John Gooch, that include a 
>   
> blurred image, and I have used this set as my fundamental test for any   
> deblur code. Anyone who would like to test deblur code with these images   
> should contact me off list. 
>
> Cheers, 
> -- 
> Regards, 
> Terry Duell 
>

-- 
A list of frequently asked questions is available at: 
http://wiki.panotools.org/Hugin_FAQ
--- 
You received this message because you are subscribed to the Google Groups 
"hugin and other free panoramic software" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to hugin-ptx+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/hugin-ptx/bf69e7e9-e452-458f-9334-143efc9cc521%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [hugin-ptx] High-Quality Computational Imaging Through Simple Lenses

2013-10-01 Thread Matthew Petroff
I don't think any converters will work due to the use of functions from the 
Image Processing Toolbox. I think the easiest way to run it without MATLAB 
is to write a edgetaper function for GNU Octave, which isn't exactly the 
easiest thing to do.

-Matthew

On Tuesday, October 1, 2013 1:26:13 PM UTC-4, Cartola wrote:
>
> Ok, but I just wanted to try, despite of the time it could take. Just 
> sharing opinions, cause if someone says that there is only 1% of chance 
> that it will work, then I can give up earlier and save some time. :)
>
> Thanks,
>
>
> Carlos E G Carvalho (Cartola)
> http://cartola.org/360
> http://www.panoforum.com.br/
>  
>
> 2013/10/1 Lukas Jirkovsky >
>
>> On Tue, Oct 1, 2013 at 7:11 PM, Carlos Eduardo G. Carvalho (Cartola)
>> > wrote:
>> > Good to have some feedback. As I don't have Matlab and Octave already 
>> didn't
>> > work, do you think converting to Python could work? I found a couple of
>> > converters, but I am still downloading them.
>>
>> Even if it worked, it would be likely much slower than the Matlab
>> version, because Matlab provides many highly optimized functions while
>> Python has little to no optimizations (maybe pypy would be better).
>>
>> Lukas
>>
>> --
>> A list of frequently asked questions is available at: 
>> http://wiki.panotools.org/Hugin_FAQ
>> ---
>> You received this message because you are subscribed to the Google Groups 
>> "hugin and other free panoramic software" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to hugin-ptx+...@googlegroups.com .
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/hugin-ptx/CAFa9FQuBKEP9%2BkNRSGCkiBKevej-MnXcoM-NxwX9Q4wTCJ385A%40mail.gmail.com
>> .
>> For more options, visit https://groups.google.com/groups/opt_out.
>>
>
>

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


Re: [hugin-ptx] High-Quality Computational Imaging Through Simple Lenses

2013-10-01 Thread Matthew Petroff
It ran fine for me in MATLAB R2010a, taking about 20 minutes to process a 
384 x 288 pixel image. It's very computationally intensive. I also tried 
running it in GNU Octave, but it didn't work since Octave is missing the 
edgetaper function, among others.

-Matthew

On Tuesday, October 1, 2013 9:39:34 AM UTC-4, Cartola wrote:
>
> Did someone take a look at the code? What are those *.m files? Matlab 
> scripts?
>
> Thanks,
>
>
> Carlos E G Carvalho (Cartola)
> http://cartola.org/360
> http://www.panoforum.com.br/
>
>
> 2013/10/1 Carlos Eduardo G. Carvalho (Cartola) 
> >
>
>> Looks nice. It seams like a sharp function that doesn't add noise.
>>
>> Don't know if can be used into hugin, but if GIMP has a filter like this 
>> it already would help me.
>>
>> Thanks,
>>
>>
>> Carlos E G Carvalho (Cartola)
>> http://cartola.org/360
>> http://www.panoforum.com.br/
>>  
>>
>> 2013/9/30 kevin >
>>
>>> Would this be something that would be useful for hugin to have built 
>>> into it?  
>>>
>>> http://www.cs.ubc.ca/labs/imager/tr/2013/SimpleLensImaging/index.html
>>>
>>>
>>>
>>>  -- 
>>> A list of frequently asked questions is available at: 
>>> http://wiki.panotools.org/Hugin_FAQ
>>> --- 
>>> You received this message because you are subscribed to the Google 
>>> Groups "hugin and other free panoramic software" group.
>>> To unsubscribe from this group and stop receiving emails from it, send 
>>> an email to hugin-ptx+...@googlegroups.com .
>>> To view this discussion on the web visit 
>>> https://groups.google.com/d/msgid/hugin-ptx/f374f60f-d243-41b7-80d1-b610ab7c8487%40googlegroups.com
>>> .
>>> For more options, visit https://groups.google.com/groups/opt_out.
>>>
>>
>>
>

-- 
A list of frequently asked questions is available at: 
http://wiki.panotools.org/Hugin_FAQ
--- 
You received this message because you are subscribed to the Google Groups 
"hugin and other free panoramic software" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to hugin-ptx+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/hugin-ptx/1648dc6b-8aaa-429c-ae4c-5b25b5177496%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


[hugin-ptx] Re: Building with Windows

2013-09-29 Thread Matthew Petroff
On Saturday, September 28, 2013 6:35:44 PM UTC-4, Frederic Da Vitoria wrote:
>
> I thought it would be better to stop highjacking the "Hugin 2013.0rc2 
> released" thread and start a new one for this.
>
> I am at the Hugin SDK step.
>  - I skipped autopano-sift-c, correct?
>

Correct.
 

>  - boost: I don't understand what "skip" means.
>

You just need the first download link.
 

>  - OpenEXR OK
>  - enblend-enfuse : downloaded enblend-enfuse-4.0-win32.zip (as this 
> seemed closest to what the wiki required) and the 64 bit 
> (enblend-enfuse-4.0.tar.gz) versions. Is this correct?
>

Use the latest release, 4.1.1. It's easiest if you get the precompiled 
32-bit and 64-bit versions.
 

>  - I downloaded exiftool 9.37 instead of 8.23 because the link in the wiki 
> led to a 404. Is this correct?
>

Correct. Use the most recent version of exiftool.
 

>  - exiv2 0.20 OK
>  - expat OK
>  - the 3 32 bits downloads for gettext OK
>  - glew OK
>  - libpano: here I am stuck. I don't have the faintest idea what to do 
> with the page
>

Use the latest release:
http://sourceforge.net/projects/panotools/files/libpano13/libpano13-2.9.18/libpano13-2.9.18.tar.gz/download
 

>  - UnxUtils OK
>  - wxWidgets OK
>  - freeglut OK
>  - make OK
>  - tclap OK
>  - GLib OK
>  - Lensfun : I found a 0.2.5, no 2.5.1. 
>

Use the latest release:
http://prdownload.berlios.de/lensfun/lensfun-0.2.7.tar.bz2
 

>  - libxmi OK
>  - STLport OK
>  - lcms OK
>  - NSIS
>
> So I still have questions about boost, enblend-enfuse, exiftool, libpano 
> and Lensfun.
>

See above. I also updated the Wiki.

-Matthew 

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


Re: [hugin-ptx] Re: Hugin 2013.0rc2 released

2013-09-28 Thread Matthew Petroff
Running Microsoft Update should be fine.

-Matthew

On Saturday, September 28, 2013 10:02:54 AM UTC-4, Frederic Da Vitoria 
wrote:
>
> 2013/9/28 Frederic Da Vitoria >
>
>> 2013/9/28 Matthew Petroff >
>>
>>> You need Microsoft Visual C++ 2010 Express, which then needs to be 
>>> registered for free with Microsoft for it to continue to work after 30 days.
>>>
>>> http://www.microsoft.com/visualstudio/eng/downloads#d-2010-express
>>>
>>> On Friday, September 27, 2013 5:55:33 PM UTC-4, Frederic Da Vitoria 
>>> wrote:
>>>
>>>> I downloaded 
>>>>  - msvc (web installer, I hate those things), the 2010 version was a 
>>>> little hidden.
>>>>   - windows sdk because I am on Windows 7 64 bits (web installer again)
>>>>  - CMake
>>>>  - TortoiseHg 
>>>>  - I skipped TortoiseSVN, 7-Zip and Java SE because I already have them
>>>>
>>>> When installing msvc, the license says nothing about open source 
>>>> projects and states that the installation is only a trial installation and 
>>>> that it will stop working after 30 days. Is this expected? Am I supposed 
>>>> to 
>>>> ask a free license to Microsoft?
>>>>
>>>>  
>>> For more options, visit https://groups.google.com/groups/opt_out.
>>>
>>
>> Yes, that's what I downloaded, I was just uncertain about the license.
>>
>> I'm going on with the installation. Sorry, this is going to be slow, it's 
>> always hard for me to find time to do things, but eventually I'll reach the 
>> next step.
>>  
>
> At the end of the installation, the installer suggests to visit Microsoft 
> Update. Is it a good idea or should I stay with the installed version?
>
> -- 
> Frederic Da Vitoria
> (davitof)
>
> Membre de l'April - « promouvoir et défendre le logiciel libre » - 
> http://www.april.org
>  

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


Re: [hugin-ptx] Re: Hugin 2013.0rc2 released

2013-09-27 Thread Matthew Petroff
You need Microsoft Visual C++ 2010 Express, which then needs to be 
registered for free with Microsoft for it to continue to work after 30 days.

http://www.microsoft.com/visualstudio/eng/downloads#d-2010-express

-Matthew

On Friday, September 27, 2013 5:55:33 PM UTC-4, Frederic Da Vitoria wrote:
>
> 2013/9/26 Matthew Petroff >
>
>> This wiki article is a good place to start: 
>> http://wiki.panotools.org/Hugin_SDK_%28MSVC_2010%29
>>
>> -Matthew
>>
>> On Thursday, September 26, 2013 8:52:50 AM UTC-4, Frederic Da Vitoria 
>> wrote:
>>>
>>> 2013/9/25 Matthew Petroff 
>>>
>>> Windows binaries for Hugin 2013.0.0-rc2 are now available. For the Python
>>>> enabled builds, one needs a preexisting Python 3.2 installation.
>>>>
>>>> I was a bit busy this summer working on Google Summer of Code for 
>>>> Inkscape, and
>>>> therefore did not get around to making builds for the previous release 
>>>> candidate.
>>>> In addition, I have not used Windows as my primary platform for over a 
>>>> year now,
>>>> so I do not use my own builds much anymore. While I plan on producing 
>>>> Windows
>>>> builds for the rest of this release cycle and will continue to do so if 
>>>> no one
>>>> else takes my place, it would be nice if someone who actively uses 
>>>> Windows steps
>>>> up to produce Windows builds for future release cycles.
>>>>
>>>> 32-bit Installer:
>>>> http://sourceforge.net/**projects/hugin/files/hugin/**
>>>> hugin-2013.0/HuginSetup_2013.**0.0-rc2_32bit_Windows.exe/**download<http://sourceforge.net/projects/hugin/files/hugin/hugin-2013.0/HuginSetup_2013.0.0-rc2_32bit_Windows.exe/download>
>>>>
>>>> 32-bit Installer with Python:
>>>> http://sourceforge.net/**projects/hugin/files/hugin/**
>>>> hugin-2013.0/HuginSetup_2013.**0.0-rc2_32bit_Python_Windows.**
>>>> exe/download<http://sourceforge.net/projects/hugin/files/hugin/hugin-2013.0/HuginSetup_2013.0.0-rc2_32bit_Python_Windows.exe/download>
>>>>
>>>> 64-bit Installer:
>>>> http://sourceforge.net/**projects/hugin/files/hugin/**
>>>> hugin-2013.0/HuginSetup_2013.**0.0-rc2_64bit_Windows.exe/**download<http://sourceforge.net/projects/hugin/files/hugin/hugin-2013.0/HuginSetup_2013.0.0-rc2_64bit_Windows.exe/download>
>>>>
>>>> 64-bit Installer with Python:
>>>> http://sourceforge.net/**projects/hugin/files/hugin/**
>>>> hugin-2013.0/HuginSetup_2013.**0.0-rc2_64bit_Python_Windows.**
>>>> exe/download<http://sourceforge.net/projects/hugin/files/hugin/hugin-2013.0/HuginSetup_2013.0.0-rc2_64bit_Python_Windows.exe/download>
>>>>
>>>> 32-bit 7z Archive:
>>>> http://sourceforge.net/**projects/hugin/files/hugin/**
>>>> hugin-2013.0/Hugin_2013.0.0-**rc2_32bit_Windows.7z/download<http://sourceforge.net/projects/hugin/files/hugin/hugin-2013.0/Hugin_2013.0.0-rc2_32bit_Windows.7z/download>
>>>>
>>>> 32-bit 7z Archive with Python:
>>>> http://sourceforge.net/**projects/hugin/files/hugin/**
>>>> hugin-2013.0/Hugin_2013.0.0-**rc2_32bit_Python_Windows.7z/**download<http://sourceforge.net/projects/hugin/files/hugin/hugin-2013.0/Hugin_2013.0.0-rc2_32bit_Python_Windows.7z/download>
>>>>
>>>> 64-bit 7z Archive:
>>>> http://sourceforge.net/**projects/hugin/files/hugin/**
>>>> hugin-2013.0/Hugin_2013.0.0-**rc2_64bit_Windows.7z/download<http://sourceforge.net/projects/hugin/files/hugin/hugin-2013.0/Hugin_2013.0.0-rc2_64bit_Windows.7z/download>
>>>>
>>>> 64-bit 7z Archive with Python:
>>>> http://sourceforge.net/**projects/hugin/files/hugin/**
>>>> hugin-2013.0/Hugin_2013.0.0-**rc2_64bit_Python_Windows.7z/**download<http://sourceforge.net/projects/hugin/files/hugin/hugin-2013.0/Hugin_2013.0.0-rc2_64bit_Python_Windows.7z/download>
>>>>
>>>>
>>>> -Matthew
>>>>
>>>> On Monday, September 9, 2013 3:15:03 PM UTC-4, Harry van der Wolf wrote:
>>>>>
>>>>> Hi all,
>>>>>
>>>>> Again a pretty long time between RC1 and RC2. sorry.
>>>>>
>>>>> ===
>>>>> Hugin-2013.0 RELEASE NOTES
>>>>>
>>>>> ABOUT
>>>>>
>>>>> Hugin is more than just a panorama stitcher. 
>>>>>
>>>>> Hugin can be found

Re: [hugin-ptx] Re: Hugin 2013.0rc2 released

2013-09-26 Thread Matthew Petroff
This wiki article is a good place to start: 
http://wiki.panotools.org/Hugin_SDK_%28MSVC_2010%29

-Matthew

On Thursday, September 26, 2013 8:52:50 AM UTC-4, Frederic Da Vitoria wrote:
>
> 2013/9/25 Matthew Petroff >
>
>> Windows binaries for Hugin 2013.0.0-rc2 are now available. For the Python
>> enabled builds, one needs a preexisting Python 3.2 installation.
>>
>> I was a bit busy this summer working on Google Summer of Code for 
>> Inkscape, and
>> therefore did not get around to making builds for the previous release 
>> candidate.
>> In addition, I have not used Windows as my primary platform for over a 
>> year now,
>> so I do not use my own builds much anymore. While I plan on producing 
>> Windows
>> builds for the rest of this release cycle and will continue to do so if 
>> no one
>> else takes my place, it would be nice if someone who actively uses 
>> Windows steps
>> up to produce Windows builds for future release cycles.
>>
>> 32-bit Installer:
>>
>> http://sourceforge.net/projects/hugin/files/hugin/hugin-2013.0/HuginSetup_2013.0.0-rc2_32bit_Windows.exe/download
>>
>> 32-bit Installer with Python:
>>
>> http://sourceforge.net/projects/hugin/files/hugin/hugin-2013.0/HuginSetup_2013.0.0-rc2_32bit_Python_Windows.exe/download
>>
>> 64-bit Installer:
>>
>> http://sourceforge.net/projects/hugin/files/hugin/hugin-2013.0/HuginSetup_2013.0.0-rc2_64bit_Windows.exe/download
>>
>> 64-bit Installer with Python:
>>
>> http://sourceforge.net/projects/hugin/files/hugin/hugin-2013.0/HuginSetup_2013.0.0-rc2_64bit_Python_Windows.exe/download
>>
>> 32-bit 7z Archive:
>>
>> http://sourceforge.net/projects/hugin/files/hugin/hugin-2013.0/Hugin_2013.0.0-rc2_32bit_Windows.7z/download
>>
>> 32-bit 7z Archive with Python:
>>
>> http://sourceforge.net/projects/hugin/files/hugin/hugin-2013.0/Hugin_2013.0.0-rc2_32bit_Python_Windows.7z/download
>>
>> 64-bit 7z Archive:
>>
>> http://sourceforge.net/projects/hugin/files/hugin/hugin-2013.0/Hugin_2013.0.0-rc2_64bit_Windows.7z/download
>>
>> 64-bit 7z Archive with Python:
>>
>> http://sourceforge.net/projects/hugin/files/hugin/hugin-2013.0/Hugin_2013.0.0-rc2_64bit_Python_Windows.7z/download
>>
>>
>> -Matthew
>>
>> On Monday, September 9, 2013 3:15:03 PM UTC-4, Harry van der Wolf wrote:
>>>
>>> Hi all,
>>>
>>> Again a pretty long time between RC1 and RC2. sorry.
>>>
>>> ==**=
>>> Hugin-2013.0 RELEASE NOTES
>>>
>>> ABOUT
>>>
>>> Hugin is more than just a panorama stitcher. 
>>>
>>> Hugin can be found at
>>> * SourceForge:  http://hugin.sourceforge.net/
>>> * Launchpad:https://launchpad.net/hugin
>>>
>>>
>>> DOWNLOAD
>>>
>>> The 2013.0rc2 source tarball can be downloaded
>>>
>>> * from SourceForge at
>>> http://sourceforge.net/**projects/hugin/files/hugin/**
>>> hugin-2013.0/hugin-2013.0.0_**rc2.tar.bz2/download<http://sourceforge.net/projects/hugin/files/hugin/hugin-2013.0/hugin-2013.0.0_rc2.tar.bz2/download>
>>>
>>> * from Launchpad at
>>> https://launchpad.net/hugin/**2013.0/2013.0rc2/+download/**
>>> hugin-2013.0.0_rc2.tar.bz2<https://launchpad.net/hugin/2013.0/2013.0rc2/+download/hugin-2013.0.0_rc2.tar.bz2>
>>>
>>> This is a source code release.  For executables see below.
>>>
>>> This tarball is equivalent to rev/changeset bbf25923d4c1 in our Mercurial
>>> repository, where it is also tagged 2013.0.0rc2
>>>
>>> Verify its SHA1SUM
>>> 4094e76160d04b1e66ef4efd947ad1**176e6a3072  hugin-2013.0.0_rc2.tar.bz2
>>>
>>> EXECUTABLES
>>>
>>> Users communities produce executables for their respective platforms.
>>>
>>> These executables are then added to the download section on SourceForge 
>>> at
>>> http://sourceforge.net/**projects/hugin/files/hugin/<http://sourceforge.net/projects/hugin/files/hugin/>
>>>
>>> A number of users have built recent snapshots and executables are likely 
>>> to be
>>> announced within a few days of this tarball release.
>>>
>>> Watch 
>>> http://groups.google.com/**group/hugin-ptx<http://groups.google.com/group/hugin-ptx>for
>>>  the announcements of binary
>>> releases.  If you don't see a binary for your platform it has most 
>>> likely not
>>> been produced yet.  C

[hugin-ptx] Re: Hugin 2013.0rc2 released

2013-09-25 Thread Matthew Petroff
Windows binaries for Hugin 2013.0.0-rc2 are now available. For the Python
enabled builds, one needs a preexisting Python 3.2 installation.

I was a bit busy this summer working on Google Summer of Code for Inkscape, 
and
therefore did not get around to making builds for the previous release 
candidate.
In addition, I have not used Windows as my primary platform for over a year 
now,
so I do not use my own builds much anymore. While I plan on producing 
Windows
builds for the rest of this release cycle and will continue to do so if no 
one
else takes my place, it would be nice if someone who actively uses Windows 
steps
up to produce Windows builds for future release cycles.

32-bit Installer:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2013.0/HuginSetup_2013.0.0-rc2_32bit_Windows.exe/download

32-bit Installer with Python:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2013.0/HuginSetup_2013.0.0-rc2_32bit_Python_Windows.exe/download

64-bit Installer:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2013.0/HuginSetup_2013.0.0-rc2_64bit_Windows.exe/download

64-bit Installer with Python:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2013.0/HuginSetup_2013.0.0-rc2_64bit_Python_Windows.exe/download

32-bit 7z Archive:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2013.0/Hugin_2013.0.0-rc2_32bit_Windows.7z/download

32-bit 7z Archive with Python:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2013.0/Hugin_2013.0.0-rc2_32bit_Python_Windows.7z/download

64-bit 7z Archive:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2013.0/Hugin_2013.0.0-rc2_64bit_Windows.7z/download

64-bit 7z Archive with Python:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2013.0/Hugin_2013.0.0-rc2_64bit_Python_Windows.7z/download


-Matthew

On Monday, September 9, 2013 3:15:03 PM UTC-4, Harry van der Wolf wrote:
>
> Hi all,
>
> Again a pretty long time between RC1 and RC2. sorry.
>
> ===
> Hugin-2013.0 RELEASE NOTES
>
> ABOUT
>
> Hugin is more than just a panorama stitcher. 
>
> Hugin can be found at
> * SourceForge:  http://hugin.sourceforge.net/
> * Launchpad:https://launchpad.net/hugin
>
>
> DOWNLOAD
>
> The 2013.0rc2 source tarball can be downloaded
>
> * from SourceForge at
>
> http://sourceforge.net/projects/hugin/files/hugin/hugin-2013.0/hugin-2013.0.0_rc2.tar.bz2/download
>
> * from Launchpad at
>
> https://launchpad.net/hugin/2013.0/2013.0rc2/+download/hugin-2013.0.0_rc2.tar.bz2
>
> This is a source code release.  For executables see below.
>
> This tarball is equivalent to rev/changeset bbf25923d4c1 in our Mercurial
> repository, where it is also tagged 2013.0.0rc2
>
> Verify its SHA1SUM
> 4094e76160d04b1e66ef4efd947ad1176e6a3072  hugin-2013.0.0_rc2.tar.bz2
>
> EXECUTABLES
>
> Users communities produce executables for their respective platforms.
>
> These executables are then added to the download section on SourceForge at
> http://sourceforge.net/projects/hugin/files/hugin/
>
> A number of users have built recent snapshots and executables are likely 
> to be
> announced within a few days of this tarball release.
>
> Watch http://groups.google.com/group/hugin-ptx for the announcements of 
> binary
> releases.  If you don't see a binary for your platform it has most likely 
> not
> been produced yet.  Consider stepping up to the task.  Instructions at
>
>
> http://wiki.panotools.org/Development_of_Open_Source_tools#Supported_Platforms
>
> Announce your build on http://groups.google.com/group/hugin-ptx
>
>
> CHANGES SINCE 2012.0.0
>
> * The greatest change is the redesign of the (Graphical) User Interface 
> (GUI). The user interface now consists of three modes: Simple, Advanced and 
> Expert.
> The Simple interface is for the beginning panorama photographer and offers 
> all tools to create your panorama. You can also use this mode if you have a 
> simple, straightforward panorama. The Simple interface mode uses the "Fast 
> Preview"  window as its main workflow window.
> The Advanced interface mode offers you more options to improve your 
> panorama. It uses the Panorama Editor as its main window.
> The Expert mode gives you access to all options and functions that Hugin 
> has to offer. This is where you can optimize your complicated, multilayer, 
> mosaic, multi-stack, you name it, panorama. It also uses the Panorama 
> Editor as its main window.
>
> * The Hugin build for Mac OS X has switched from Carbon to Cocoa and is 
> now fully 64bit.
>
> New tools added:
> * pto_var ( change image variables inside pto files)
> * pto_lensstack (modify assigned lenses and stack in pto files)
> * geocpset  (set/add geometric constraints for multirow panorama with 
> featureless images)
>
>
> Other Improvements
> * Many more improvements and bug fixes.
>
> UPGRADING
>
> Upgrading from previous versions of Hugin should be seamless. If you do 
> have
> problems with old settings, these can be reset in the Preferences by 
> 

Re: [hugin-ptx] Porting hugin and panotools to Android

2013-08-01 Thread Matthew Petroff
They replied, providing the source code at this link:
https://www.dropbox.com/s/adqbtaej8gud6wn/PanoStitch-source.7z

-Matthew

On Thursday, August 1, 2013 9:49:19 AM UTC-4, Guillaume Lesniak wrote:
>
> I've sent one too yesterday actually. He said he's currently on vacations 
> and he will send it next week.
>
> Anyway, back on topic :) Is there any known issue that would cause ptclean 
> or autooptimiser to hang under certain conditions?
>
> Guillaume
>
> Le jeudi 1 août 2013 15:44:10 UTC+2, Matthew Petroff a écrit :
>>
>> I've sent an email to the developer requesting the PanoStitch source 
>> code. We'll see if he complies.
>>
>> -Matthew
>>
>> On Wednesday, July 31, 2013 11:58:41 AM UTC-4, Guillaume Lesniak wrote:
>>>
>>> Confirmed: it uses Hugin GPL code in libpano.so:
>>>
>>>>  # strings libpano.so | grep "jni" 
>>>>
>>>> jni/prebuilts/include/boost/exception/detail/exception_ptr.hpp
>>>>
>>>> jni/hugin-2011.4.0/src/hugin_base/panodata/Panorama.h
>>>>
>>>> jni/hugin-2011.4.0/src/hugin_base/hugin_utils/stl_utils.h
>>>>
>>>> jni/hugin-2011.4.0/src/hugin_base/nona/Stitcher.h
>>>>
>>>> jni/hugin-2011.4.0/src/hugin_base/nona/Stitcher.cpp
>>>>
>>>> jni/hugin-2011.4.0/src/hugin_base/panodata/Panorama.cpp
>>>>
>>>> jni/hugin-2011.4.0/src/hugin_base/hugin_utils/utils.h
>>>>
>>>> jni/hugin-2011.4.0/src/hugin_base/panodata/image_variables.h
>>>>
>>>> jni/hugin-2011.4.0/src/hugin_base/panodata/PanoramaOptions.cpp
>>>>
>>>> jni/hugin-2011.4.0/src/hugin_base/panodata/PTScriptParsing.cpp
>>>>
>>>> jni/hugin-2011.4.0/src/hugin_base/panodata/SrcPanoImage.cpp
>>>>
>>>> jni/hugin-2011.4.0/src/hugin_base/panodata/ImageVariableGroup.cpp
>>>>
>>>>
>>>>> jni/hugin-2011.4.0/src/hugin_base/panodata/StandardImageVariableGroups.cpp
>>>>
>>>> jni/hugin-2011.4.0/src/hugin_base/panotools/PanoToolsInterface.cpp
>>>>
>>>>
>>>>
>>>
>>> Le mercredi 31 juillet 2013 17:52:11 UTC+2, Guillaume Lesniak a écrit :
>>>>
>>>> There is no official way to try it without CM, but I might try to build 
>>>> it externally in some time. I'll post it here if I have time.
>>>>
>>>> If PanoStitch uses Hugin, then it's an illegal app. The SIFT algorithms 
>>>> are patented by the University of British Columbia, and everything is GPL, 
>>>> which means the app must be open-sourced too, especially the changes made 
>>>> to it (and Hugin is far from compiling on Android without changes). 
>>>> PanoStitch is not only a paid app, but also not releasing AT LEAST their 
>>>> changes, making it a 100% illegal app. You might want to bring that to the 
>>>> GPL-Violations list.
>>>> That's why I put Focal as GPL too, and that's why I was excited to work 
>>>> on it: because I could use basically everything I want without worrying 
>>>> about licensing.
>>>>
>>>> I'll eventually check and compare the speed, but if they made no 
>>>> changes, it'll likely be the same as I have. I'll unpack/decompile the APK 
>>>> for further licensing concerns.
>>>>
>>>>
>>>>
>>>> Le mercredi 31 juillet 2013 16:34:03 UTC+2, Jim Watters a écrit :
>>>>>
>>>>>  Guillaume,
>>>>>
>>>>> Great news!
>>>>> I've watched a video demo of Focal but have not tried it out yet.
>>>>>
>>>>> PanoStitch, available on Google Play ( there is a free demo and a paid 
>>>>> full version)
>>>>>
>>>>> https://play.google.com/store/apps/details?id=com.myboyfriendisageek.panostitch.demo&hl=en
>>>>> Also uses Panotools and Hugin but I don't notice any credit or link to 
>>>>> the source code they are using.
>>>>> It will give you a chance to compare speeds and see if they managed to 
>>>>> improve it.
>>>>>
>>>>> Developers,
>>>>>
>>>>> What are the GLP requirements for using Panotools and Hugin in an 
>>>>> Android app?
>>>>>
>>>>> Jim Watters
>>>>>
>>>>> On 2013-07-31 7:06 AM, Guillaume Lesniak wrote:
>>>>

Re: [hugin-ptx] Porting hugin and panotools to Android

2013-08-01 Thread Matthew Petroff
I've sent an email to the developer requesting the PanoStitch source code. 
We'll see if he complies.

-Matthew

On Wednesday, July 31, 2013 11:58:41 AM UTC-4, Guillaume Lesniak wrote:
>
> Confirmed: it uses Hugin GPL code in libpano.so:
>
>>  # strings libpano.so | grep "jni" 
>>
>> jni/prebuilts/include/boost/exception/detail/exception_ptr.hpp
>>
>> jni/hugin-2011.4.0/src/hugin_base/panodata/Panorama.h
>>
>> jni/hugin-2011.4.0/src/hugin_base/hugin_utils/stl_utils.h
>>
>> jni/hugin-2011.4.0/src/hugin_base/nona/Stitcher.h
>>
>> jni/hugin-2011.4.0/src/hugin_base/nona/Stitcher.cpp
>>
>> jni/hugin-2011.4.0/src/hugin_base/panodata/Panorama.cpp
>>
>> jni/hugin-2011.4.0/src/hugin_base/hugin_utils/utils.h
>>
>> jni/hugin-2011.4.0/src/hugin_base/panodata/image_variables.h
>>
>> jni/hugin-2011.4.0/src/hugin_base/panodata/PanoramaOptions.cpp
>>
>> jni/hugin-2011.4.0/src/hugin_base/panodata/PTScriptParsing.cpp
>>
>> jni/hugin-2011.4.0/src/hugin_base/panodata/SrcPanoImage.cpp
>>
>> jni/hugin-2011.4.0/src/hugin_base/panodata/ImageVariableGroup.cpp
>>
>> jni/hugin-2011.4.0/src/hugin_base/panodata/StandardImageVariableGroups.cpp
>>
>> jni/hugin-2011.4.0/src/hugin_base/panotools/PanoToolsInterface.cpp
>>
>>
>>
>
> Le mercredi 31 juillet 2013 17:52:11 UTC+2, Guillaume Lesniak a écrit :
>>
>> There is no official way to try it without CM, but I might try to build 
>> it externally in some time. I'll post it here if I have time.
>>
>> If PanoStitch uses Hugin, then it's an illegal app. The SIFT algorithms 
>> are patented by the University of British Columbia, and everything is GPL, 
>> which means the app must be open-sourced too, especially the changes made 
>> to it (and Hugin is far from compiling on Android without changes). 
>> PanoStitch is not only a paid app, but also not releasing AT LEAST their 
>> changes, making it a 100% illegal app. You might want to bring that to the 
>> GPL-Violations list.
>> That's why I put Focal as GPL too, and that's why I was excited to work 
>> on it: because I could use basically everything I want without worrying 
>> about licensing.
>>
>> I'll eventually check and compare the speed, but if they made no changes, 
>> it'll likely be the same as I have. I'll unpack/decompile the APK for 
>> further licensing concerns.
>>
>>
>>
>> Le mercredi 31 juillet 2013 16:34:03 UTC+2, Jim Watters a écrit :
>>>
>>>  Guillaume,
>>>
>>> Great news!
>>> I've watched a video demo of Focal but have not tried it out yet.
>>>
>>> PanoStitch, available on Google Play ( there is a free demo and a paid 
>>> full version)
>>>
>>> https://play.google.com/store/apps/details?id=com.myboyfriendisageek.panostitch.demo&hl=en
>>> Also uses Panotools and Hugin but I don't notice any credit or link to 
>>> the source code they are using.
>>> It will give you a chance to compare speeds and see if they managed to 
>>> improve it.
>>>
>>> Developers,
>>>
>>> What are the GLP requirements for using Panotools and Hugin in an 
>>> Android app?
>>>
>>> Jim Watters
>>>
>>> On 2013-07-31 7:06 AM, Guillaume Lesniak wrote:
>>>  
>>> Hey everyone, 
>>>
>>>  As you might or might not know, I've released a component called 
>>> "PicSphere" in the new CyanogenMod camera app Focal. This component is 
>>> based on PanoTools and Hugin libraries.
>>> I've been mostly hacking around to make it work, and it does work, but 
>>> there are still a few kinks I need to iron out.
>>>  
>>>  The repositories are available at 
>>> https://github.com/cyanogenmod/android_external_Focal
>>>
>>>  - First, cpfind is just crashing and I cannot get it to work. I don't 
>>> have the stacktrace anymore, as I ended up using autopano-sift-c for the 
>>> alignment and cp detection, but I read here and there that cpfind works 
>>> better (as in, faster) than autopano is most situations.
>>> - I had to hack around a bit that wouldn't build in vigra, see 
>>> https://github.com/CyanogenMod/android_external_Focal/blob/cm-10.2/vigra/include/vigra/impexbase.hxx#L154
>>>  - 
>>> it doens't seem to affect the final result, but I would like to know if 
>>> there's a better way. Basically, the compiler cannot find 
>>> Accessor::ElementAccessor
>>> - Another big problem is that it's slow. Stitching a correct panorama 
>>> with 640x480 shots takes about a minute, where it takes 3 seconds on my 
>>> home PC. I know smartphones aren't as powerful as PCs, but going from 3 
>>> seconds to 1 minutes is quite a leap (for a quadcore 1.5GHz, 2GB RAM 
>>> device). Is there any plans for NEON/ARM enhancements, or at least could 
>>> you give me some pointers on where should I focus optimizing (adding NEON 
>>> ASM code) to make the whole process faster.
>>>
>>>  Here's the flow of the rendering process (from 
>>> https://github.com/CyanogenMod/android_packages_apps_Focal/blob/cm-10.2/src/org/cyanogenmod/focal/picsphere/PicSphere.java#L183)
>>>  
>>> :
>>>
>>>  
>>>1. autopano --align --bottom-is-left --generate-horizon 2 --ransac 
>>>on --maxmatches 30 --keep-unrefinabl

[hugin-ptx] Re: Are there most updated tutorial of Hugin Compiling Windows?

2013-05-23 Thread Matthew Petroff
This page is more up-to-date:
http://wiki.panotools.org/Hugin_SDK_(MSVC_2010)

-Matthew

On Wednesday, May 22, 2013 9:09:53 AM UTC-4, Pedro Martins wrote:
>
> Dear all,
>
> Are there most updated tutorial of Hugin Compiling Windows? >> 
> http://wiki.panotools.org/Hugin_Compiling_Windows_with_SDK
> Because I can't compiling with this.
>
>
> Thank you
>
> Pedro Martins
>
>
>

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

--- 
You received this message because you are subscribed to the Google Groups 
"hugin and other free panoramic software" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to hugin-ptx+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [hugin-ptx] Can't find the Sourceforge hg repo

2013-05-16 Thread Matthew Petroff
I just pushed the repository using a fast university connection.

-Matthew

On Thursday, May 16, 2013 7:10:24 PM UTC-4, Bruno Postle wrote:
>
> On Fri 17-May-2013 at 08:28 +1000, Terry Duell wrote: 
> >On Fri, 17 May 2013 05:57:36 +1000, Bruno Postle 
> >> 
> wrote: 
> > 
> >>They 'upgraded' us, but only migrated the unused SVN repository.   
> >>The old Mercurial repository is still there, read-only I think: 
> >>http://hugin.hg.sourceforge.net/hgweb/hugin/ 
>
> >Cory Johns responded to my [forge:site-support] contact... 
> >"It appears the Hg repository didn't migrate when the project was 
> >upgraded.  I can restore it for you, or, if you prefer, you can add a 
> >Mercurial tool on the [Tools Admin 
> >page](https://sourceforge.net/p/hugin/admin/tools/) and then push 
> >your copy of the repo to it." 
> > 
> >and I responded, asking if they could restore it, thinking they were 
> >probably less likely to stuff it up. 
>
> I migrated all of the Mercurial repositories, except for hugin 
> itself - which keeps timing out during the push. 
>
> I'll try one more time, then somebody else with better bandwidth 
> needs to give it a go. 
>
> -- 
> Bruno 
>

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

--- 
You received this message because you are subscribed to the Google Groups 
"hugin and other free panoramic software" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to hugin-ptx+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[hugin-ptx] Re: Hugin 2013.0beta1 released

2013-03-09 Thread Matthew Petroff
Windows binaries for Hugin 2013.0.0-beta1 are now available. For the Python 
enabled builds, one needs a preexisting Python 3.2 installation.

32-bit Installer:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2013.0/HuginSetup_2013.0.0-beta1_32bit_Windows.exe/download

32-bit Installer with Python:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2013.0/HuginSetup_2013.0.0-beta1_32bit_Python_Windows.exe/download

64-bit Installer:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2013.0/HuginSetup_2013.0.0-beta1_64bit_Windows.exe/download

64-bit Installer with Python:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2013.0/HuginSetup_2013.0.0-beta1_64bit_Python_Windows.exe/download

32-bit 7z Archive:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2013.0/Hugin_2013.0.0-beta1_32bit_Windows.7z/download

32-bit 7z Archive with Python:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2013.0/Hugin_2013.0.0-beta1_32bit_Python_Windows.7z/download

64-bit 7z Archive:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2013.0/Hugin_2013.0.0-beta1_64bit_Windows.7z/download

64-bit 7z Archive with Python:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2013.0/Hugin_2013.0.0-beta1_64bit_Python_Windows.7z/download


-Matthew

On Sunday, March 3, 2013 3:23:15 PM UTC-5, Harry van der Wolf wrote:
>
> Hugin-2013.0 RELEASE NOTES
>
> ABOUT
>
> Hugin is more than just a panorama stitcher. 
>
> Hugin can be found at
> * SourceForge:  http://hugin.sourceforge.net/
> * Launchpad:https://launchpad.net/hugin
>
>
> DOWNLOAD
>
> The 2013.0 source tarball can be downloaded
>
> * from SourceForge at
>
> http://sourceforge.net/projects/hugin/files/hugin/hugin-2013.0/hugin-2013.0.0_beta1.tar.bz2/download
>
> * from Launchpad at
>
> https://launchpad.net/hugin/2013.0/2013.0beta1/+download/hugin-2013.0.0_beta1.tar.bz2
>
> This is a source code release.  For executables see below.
>
> This tarball is equivalent to rev/changeset b7f603b17a69 in our Mercurial
> repository, where it is also tagged 2013.0.0beta1
>
> Verify its SHA1SUM
> 8b13bd71eb9a7e318fb2fcb119803c44896c0143  hugin-2013.0.0beta1.tar.bz2
>
> EXECUTABLES
>
> Users communities produce executables for their respective platforms.
>
> These executables are then added to the download section on SourceForge at
> http://sourceforge.net/projects/hugin/files/hugin/
>
> A number of users have built recent snapshots and executables are likely 
> to be
> announced within a few days of this tarball release.
>
> Watch http://groups.google.com/group/hugin-ptx for the announcements of 
> binary
> releases.  If you don't see a binary for your platform it has most likely 
> not
> been produced yet.  Consider stepping up to the task.  Instructions at
>
>
> http://wiki.panotools.org/Development_of_Open_Source_tools#Supported_Platforms
>
> Announce your build on http://groups.google.com/group/hugin-ptx
>
>
> CHANGES SINCE 2012.0.0
>
> * The greatest change is the redesign of the (Graphical) User Interface 
> (GUI). The user interface now consists of three modes: Simple, Advanced and 
> Expert.
> The Simple interface is for the beginning panorama photographer and offers 
> all tools to create your panorama. You can also use this mode if you have a 
> simple, straightforward panorama. The Simple interface mode uses the "Fast 
> Preview"  window as its main workflow window.
> The Advanced interface mode offers you more options to improve your 
> panorama. It uses the Panorama Editor as its main window.
> The Expert mode gives you access to all options and functions that Hugin 
> has to offer. This is where you can optimize your complicated, multilayer, 
> mosaic, multi-stack, you name it, panorama. It also uses the Panorama 
> Editor as its main window.
>
> * The Hugin build for Mac OS X has switched from Carbon to Cocoa and is 
> now fully 64bit.
>
> New tools added:
> * pto_var ( change image variables inside pto files)
> * pto_lensstack (modify assigned lenses and stack in pto files)
> * geocpset  (set/add geometric constraints for multirow panorama with 
> featureless images)
>
>
> Other Improvements
> * Many more improvements and bug fixes.
>
> UPGRADING
>
> Upgrading from previous versions of Hugin should be seamless. If you do 
> have
> problems with old settings, these can be reset in the Preferences by 
> clicking
> 'Load defaults'.
>
> It is strongly recommeded to set the default control point detector to
> Hugin's CPFind.  It is the only control point generator endorsed by Hugin.
> Third-party generators may be compatible with the plug-in architecture.
>
>
> COMPILING
>
> Users compiling from source refer to the dependencies listed at
> http://wiki.panotools.org/Development_of_Open_Source_tools#Dependencies
>
> and the build processes listed at
>
> http://wiki.panotools.org/Development_of_Open_Source_tools#Build_your_Own_Test_Builds
>
> More information in the README and INSTALL_cmake files in the tarball.
>
>
> KNOWN ISSUES AND 

[hugin-ptx] Re: Creating 360/180 Panoramas for Google+/Picasa lightbox display

2012-11-24 Thread Matthew Petroff
It's enabled using XMP tags. Unfortunately, there's no documentation as far 
as I can find. I figured out how to add the required data to full 
equirectangular panoramas, though:

http://www.mpetroff.net/archives/2012/11/05/google-photo-spheres/


-Matthew

On Wednesday, November 21, 2012 10:23:33 PM UTC-5, Brian Sullivan wrote:
>
> Any information out there about creating for the Google+ lightbox (which 
> apparently has built in display capability for 360/180 panoramas that can 
> be created using an Android 4.2 app)?
>
>
> https://plus.google.com/photos/114266681735641499053/albums/5813381890198650705/5813381893599555170is
>  a sample
>  

-- 
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: Hugin 2012.0.0 released

2012-11-05 Thread Matthew Petroff
Windows binaries for Hugin 2012.0.0 are now available. For the Python 
enabled builds, one needs a preexisting Python 3.2 installation.

32-bit Installer:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2012.0/HuginSetup_2012.0.0_32bit_Windows.exe/download

32-bit Installer with Python:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2012.0/HuginSetup_2012.0.0_32bit_Python_Windows.exe/download

64-bit Installer:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2012.0/HuginSetup_2012.0.0_64bit_Windows.exe/download

64-bit Installer with Python:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2012.0/HuginSetup_2012.0.0_64bit_Python_Windows.exe/download

32-bit 7z Archive:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2012.0/Hugin_2012.0.0_32bit_Windows.7z/download

32-bit 7z Archive with Python:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2012.0/Hugin_2012.0.0_32bit_Python_Windows.7z/download

64-bit 7z Archive:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2012.0/Hugin_2012.0.0_64bit_Windows.7z/download

64-bit 7z Archive with Python:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2012.0/Hugin_2012.0.0_64bit_Python_Windows.7z/download


-Matthew

On Monday, November 5, 2012 3:44:35 PM UTC-5, Harry van der Wolf wrote:
>
> Hugin-2012.0 RELEASE NOTES
>
> ABOUT
>
> Hugin is more than just a panorama stitcher. 
>
> Hugin can be found at
> * SourceForge:  http://hugin.sourceforge.net/
> * Launchpad:https://launchpad.net/hugin
>
> DOWNLOAD
>
> The 2012.0 source tarball can be downloaded
>
> * from SourceForge at
>
> http://sourceforge.net/projects/hugin/files/hugin/hugin-2012.0/hugin-2012.0.0.tar.bz2/download
>
> * from Launchpad at
>
> https://launchpad.net/hugin/2012.0/2012.0.0/+download/hugin-2012.0.0.tar.bz2
> This is a source code release.  For executables see below.
>
> This tarball is equivalent to rev/changeset 
>
> a6e4184ad538 in our Mercurial
> repository, where it is also tagged 2012.0.0
>
> Verify its SHA1SUM
> 53f97d030716e66dc5a49c7e786686
> a9d5262b8d
>
>
>
> EXECUTABLES
>
> Users communities produce executables for their respective platforms.
>
> These executables are then added to the download section on SourceForge at
> http://sourceforge.net/projects/hugin/files/hugin/
>
> A number of users have built recent snapshots and executables are likely 
> to be
> announced within a few days of this tarball release.
>
> Watch http://groups.google.com/group/hugin-ptx for the announcements of 
> binary
> releases.  If you don't see a binary for your platform it has most likely 
> not
> been produced yet.  Consider stepping up to the task.  Instructions at
>
>
> http://wiki.panotools.org/Development_of_Open_Source_tools#Supported_Platforms
>
> Announce your build on http://groups.google.com/group/hugin-ptx
>
>
> CHANGES SINCE 2011.4.0
>
> The lensfun library for reading and writing lens parameters from/to 
> database has now been integrated into Hugin.
> Users can now search the lensfun library and load lens parameters.
>
> Added new tool pto_gen for generation of pto file from image files.
>
> Other Improvements
>
>   * Various improvements to cpfind including a prealign matching strategy 
> and pair wise matching for multirow heuristic
>   * Added option to keep exposure fused stacks
>   * pano_modify: Added HDR autocrop option
>   * Many more improvements and bug fixes.
>
>
> UPGRADING
>
> Upgrading from previous versions of Hugin should be seamless. If you do 
> have
> problems with old settings, these can be reset in the Preferences by 
> clicking
> 'Load defaults'.
>
> It is strongly recommeded to set the default control point detector to
> Hugin's CPFind.  It is the only control point generator endorsed by Hugin.
> Third-party generators may be compatible with the plug-in architecture.
>
>
> COMPILING
>
> Users compiling from source refer to the dependencies listed at
> http://wiki.panotools.org/Development_of_Open_Source_tools#Dependencies
>
> and the build processes listed at
>
> http://wiki.panotools.org/Development_of_Open_Source_tools#Build_your_Own_Test_Builds
>
> More information in the README and INSTALL_cmake files in the tarball.
>
>
> KNOWN ISSUES AND WORKAROUNDS
>
> Panosphere Overview window seperated from the content
> https://bugs.launchpad.net/hugin/+bug/726997
>
> There is a known problem building Hugin with CMake 2.8.5rc2.
> Workaround: Upgrade to a newer CMake version.
>
> Mac OS X:
> - Mac OS X Tiger (10.4) is no longer supported.
> - The PPC platform is no longer supported.
> - The OpenMP enabled enblend is now compatible on Mac OS X Lion (10.7).
> - The cmake compilation of Hugin is currently broken due to the fact that
> the boost library on OS X is currently at version 1.50 and boost versions 
> => 1.48
> conflict with a number of Mac OS X macros (from AssertMacros.h). This can
> not be disabled as WxWindows for Mac (a.k.a. WxMac) needs these macros.
> An XCode build, where a specific boost (<=1.4

[hugin-ptx] Re: Hugin 2012.0.0_rc3 released

2012-10-27 Thread Matthew Petroff
Windows binaries for Hugin 2012.0.0-rc3 are now available. For the Python 
enabled builds, one needs a preexisting Python 3.2 installation.

32-bit 7z Archive:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2012.0/Hugin_2012.0.0-rc3_32bit_Windows.7z/download

32-bit 7z Archive with Python:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2012.0/Hugin_2012.0.0-rc3_32bit_Python_Windows.7z/download

64-bit 7z Archive:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2012.0/Hugin_2012.0.0-rc3_64bit_Windows.7z/download

64-bit 7z Archive with Python:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2012.0/Hugin_2012.0.0-rc3_64bit_Python_Windows.7z/download

32-bit Installer:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2012.0/HuginSetup_2012.0.0-rc3_32bit_Windows.exe/download

32-bit Installer with Python:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2012.0/HuginSetup_2012.0.0-rc3_32bit_Python_Windows.exe/download

64-bit Installer:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2012.0/HuginSetup_2012.0.0-rc3_64bit_Windows.exe/download

64-bit Installer with Python:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2012.0/HuginSetup_2012.0.0-rc3_64bit_Python_Windows.exe/download

-Matthew

On Sunday, October 14, 2012 8:01:34 AM UTC-4, Harry van der Wolf wrote:
>
> Dear all,
> Unfortunately we needed to release another rc build due to a (very old) 
> error in OS X. Also the updated brazilian translation has been added.
>
> Hugin-2012.0 RELEASE NOTES
>
> ABOUT
>
> Hugin is more than just a panorama stitcher. 
>
> Hugin can be found at
> * SourceForge:  http://hugin.sourceforge.net/
> * Launchpad:https://launchpad.net/hugin
>
> NOTE: The translation is not yet complete for all languages for this 
> release. Please check further down in this mail for the status of the 
> translations.
>
> DOWNLOAD
>
> The 2012.0 source tarball can be downloaded
>
> * from SourceForge at
>
> http://sourceforge.net/projects/hugin/files/hugin/hugin-2012.0/hugin-2012.0.0_
> rc3.tar.bz2/download
>
> * from Launchpad at
>
> https://launchpad.net/hugin/2012.0/2012.0rc3/+download/hugin-2012.0.0_rc3.tar.bz2
>
> Public gpg key: 222AD173
>
> This is a source code release.  For executables see below.
>
> This tarball is equivalent to rev/changeset 
> 8703d2cf32bd in our Mercurial
> repository, where it is also tagged 2012.0.0_rc3
>
> Verify its SHA1SUM
> 055cd882a6dbc87cbc17e7880fed23f7b9f710e
>
>
> EXECUTABLES
>
> Users communities produce executables for their respective platforms.
>
> These executables are then added to the download section on SourceForge at
> http://sourceforge.net/projects/hugin/files/hugin/
>
> A number of users have built recent snapshots and executables are likely 
> to be
> announced within a few days of this tarball release.
>
> Watch http://groups.google.com/group/hugin-ptx for the announcements of 
> binary
> releases.  If you don't see a binary for your platform it has most likely 
> not
> been produced yet.  Consider stepping up to the task.  Instructions at
>
>
> http://wiki.panotools.org/Development_of_Open_Source_tools#Supported_Platforms
>
> Announce your build on http://groups.google.com/group/hugin-ptx
>
>
> CHANGES SINCE 2011.4.0
>
> The lensfun library for reading and writing lens parameters from/to 
> database has now been integrated into Hugin.
> Users can now search the lensfun library and load lens parameters.
>
> Added new tool pto_gen for generation of pto file from image files.
>
> Other Improvements
>
>   * Various improvements to cpfind including a prealign matching strategy 
> and pair wise matching for multirow heuristic
>   * Added option to keep exposure fused stacks
>   * pano_modify: Added HDR autocrop option
>   * Many more improvements and bug fixes.
>
>
> UPGRADING
>
> Upgrading from previous versions of Hugin should be seamless. If you do 
> have
> problems with old settings, these can be reset in the Preferences by 
> clicking
> 'Load defaults'.
>
> It is strongly recommeded to set the default control point detector to
> Hugin's CPFind.  It is the only control point generator endorsed by Hugin.
> Third-party generators may be compatible with the plug-in architecture.
>
>
> COMPILING
>
> Users compiling from source refer to the dependencies listed at
> http://wiki.panotools.org/Development_of_Open_Source_tools#Dependencies
>
> and the build processes listed at
>
> http://wiki.panotools.org/Development_of_Open_Source_tools#Build_your_Own_Test_Builds
>
> More information in the README and INSTALL_cmake files in the tarball.
>
>
> KNOWN ISSUES AND WORKAROUNDS
>
> Panosphere Overview window seperated from the content
> https://bugs.launchpad.net/hugin/+bug/726997
>
> There is a known problem building Hugin with CMake 2.8.5rc2.
> Workaround: Upgrade to a newer CMake version.
>
> Mac OS X:
> - Mac OS X Tiger (10.4) is no longer supported.
> - The PPC platform is no longer supported.
> - The OpenMP enabled enblend is no

Re: [hugin-ptx] Re: Introducing Pannellum - an HTML5 Panorama Viewer

2012-10-12 Thread Matthew Petroff
Pannellum might support GIF files, although I've never tested it. I would 
not recommend using it though, as it is uncompressed and limited to an 
8-bit color space. Just because a proprietary piece of software does 
something some way does not make it a standard, although adaptive dynamic 
range looks quite interesting. I might add it in the future, but the image 
pyramid support I'm currently working on is a higher priority in my 
opinion. Animated objects are a very low priority for me (I think they're 
gaudy).

-Matthew

On Friday, October 12, 2012 12:35:23 AM UTC-4, Emaad wrote:
>
> Mathew is it possible that Pannellum can support Gif file format? 
> Basically I want to animate only one of image cubes. For example I edit 
> Nadir image cube, convert it to gif format and make some animated effects 
> over it. Now If Pannelum support gif format than animated object will be 
> working.
>
> You are doing very nice work. Pannelum is a very good platform. Please! 
> Consider standards set by Spi-V shockwave player. ADR is a Spiv feature, 
> which has not be replicated in any flash or html5 based viewers. Please! 
> See if it can be done. Spi-V also supported animated objects.
>
>
>
>
> On Wed, Oct 10, 2012 at 12:02 AM, Matthew Petroff 
> 
> > wrote:
>
>> No, there isn't.
>>
>> -Matthew
>>
>>
>> On Tuesday, October 9, 2012 2:55:52 AM UTC-4, Emaad wrote:
>>
>>> Is there any way we can add animated objects in panorama using Pannellum?
>>>
>>>
>>> On Mon, Oct 8, 2012 at 8:23 PM, Matthew Petroff wrote:
>>>
>>>> The most likely cause is the texture size being to large for your 
>>>> graphics card / driver. Does an error get printed to Chome's JavaScript 
>>>> Console?
>>>>
>>>> -Matthew
>>>>
>>>>
>>>> On Sunday, October 7, 2012 11:20:43 PM UTC-4, Rasmus Schultz wrote:
>>>>>
>>>>> All I see is a black screen - using Chrome 22.0.1229.79 m.
>>>>>
>>>>> I've had no other problems with WebGL-based applications on this 
>>>>> machine...
>>>>>
>>>>>
>>>>> On Wednesday, May 30, 2012 12:03:45 AM UTC-4, Matthew Petroff wrote:
>>>>>>
>>>>>> Thanks for the reports! It should work in recent desktop versions of 
>>>>>> Firefox and Chrome with proper driver support. Safari needs WebGL to 
>>>>>> be manually enabled, and Opera won't support it until Opera 12. 
>>>>>> Mobile 
>>>>>> support is much more spotty. As for the reports of a black screen, I 
>>>>>> think it is due to buggy WebGL implementations; when I first started 
>>>>>> working on this last year, I got the occasional black screen, but 
>>>>>> with 
>>>>>> more recent browser updates, this is no longer the case for me. 
>>>>>>
>>>>>> I can certainly change the text from "Load Panorama" to "Click to 
>>>>>> Load 
>>>>>> Panorama." As for translations, there is no client side way for 
>>>>>> detecting language that I know of, so it's a bit of a moot point; if 
>>>>>> one wants to host it on a page in a different language, one can just 
>>>>>> change the strings in the hosted copy. I might consider changing the 
>>>>>> base implementation and adding some sort of image pyramid support in 
>>>>>> the future, but I don't plan on adding new feature or developing it 
>>>>>> much more until WebGL support matures more. 
>>>>>>
>>>>>> -Matthew 
>>>>>>
>>>>>> On May 28, 11:49 pm, Matthew Petroff  wrote: 
>>>>>> > After a year of on and off development, Pannellum, a free and open 
>>>>>> > source panorama viewer for the web, is ready for release. Built 
>>>>>> using 
>>>>>> > HTML5, CSS3, JavaScript, and WebGL, it is plug-in free. The 
>>>>>> > lightweight viewer, just 18kB gzipped, can be deployed using a 
>>>>>> single 
>>>>>> > file and displays full equirectangular panoramas. One can easily 
>>>>>> embed 
>>>>>> > panoramas in web pages as an , using code generated by the 
>>>>>> > included configuration utility. 
>>>>>> > 
>>>>>> > For more information and an example, see:
>>>>>

Re: [hugin-ptx] Re: Introducing Pannellum - an HTML5 Panorama Viewer

2012-10-09 Thread Matthew Petroff
No, there isn't.

-Matthew

On Tuesday, October 9, 2012 2:55:52 AM UTC-4, Emaad wrote:
>
> Is there any way we can add animated objects in panorama using Pannellum?
>
>
> On Mon, Oct 8, 2012 at 8:23 PM, Matthew Petroff 
> 
> > wrote:
>
>> The most likely cause is the texture size being to large for your 
>> graphics card / driver. Does an error get printed to Chome's JavaScript 
>> Console?
>>
>> -Matthew
>>
>>
>> On Sunday, October 7, 2012 11:20:43 PM UTC-4, Rasmus Schultz wrote:
>>>
>>> All I see is a black screen - using Chrome 22.0.1229.79 m.
>>>
>>> I've had no other problems with WebGL-based applications on this 
>>> machine...
>>>
>>>
>>> On Wednesday, May 30, 2012 12:03:45 AM UTC-4, Matthew Petroff wrote:
>>>>
>>>> Thanks for the reports! It should work in recent desktop versions of 
>>>> Firefox and Chrome with proper driver support. Safari needs WebGL to 
>>>> be manually enabled, and Opera won't support it until Opera 12. Mobile 
>>>> support is much more spotty. As for the reports of a black screen, I 
>>>> think it is due to buggy WebGL implementations; when I first started 
>>>> working on this last year, I got the occasional black screen, but with 
>>>> more recent browser updates, this is no longer the case for me. 
>>>>
>>>> I can certainly change the text from "Load Panorama" to "Click to Load 
>>>> Panorama." As for translations, there is no client side way for 
>>>> detecting language that I know of, so it's a bit of a moot point; if 
>>>> one wants to host it on a page in a different language, one can just 
>>>> change the strings in the hosted copy. I might consider changing the 
>>>> base implementation and adding some sort of image pyramid support in 
>>>> the future, but I don't plan on adding new feature or developing it 
>>>> much more until WebGL support matures more. 
>>>>
>>>> -Matthew 
>>>>
>>>> On May 28, 11:49 pm, Matthew Petroff  wrote: 
>>>> > After a year of on and off development, Pannellum, a free and open 
>>>> > source panorama viewer for the web, is ready for release. Built using 
>>>> > HTML5, CSS3, JavaScript, and WebGL, it is plug-in free. The 
>>>> > lightweight viewer, just 18kB gzipped, can be deployed using a single 
>>>> > file and displays full equirectangular panoramas. One can easily 
>>>> embed 
>>>> > panoramas in web pages as an , using code generated by the 
>>>> > included configuration utility. 
>>>> > 
>>>> > For more information and an example, see:
>>>> http://www.mpetroff.net/archives/2012/05/28/introducing-pannellum/ 
>>>> > 
>>>> > Or the project page:https://bitbucket.org/mpetroff/pannellum/ 
>>>> > 
>>>> > I've tested it across a range of browsers, but I'd appreciate any 
>>>> > feedback or bug reports. 
>>>> > 
>>>> > -Matthew
>>>
>>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "Hugin and other free panoramic software" group.
>> A list of frequently asked questions is available at: 
>> http://wiki.panotools.org/Hugin_FAQ
>> To post to this group, send email to hugi...@googlegroups.com
>> To unsubscribe from this group, send email to 
>> hugin-ptx+...@googlegroups.com 
>> For more options, visit this group at 
>> http://groups.google.com/group/hugin-ptx
>>
>
>
>
> -- 
>
>
> *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


[hugin-ptx] Re: Introducing Pannellum - an HTML5 Panorama Viewer

2012-10-08 Thread Matthew Petroff
The most likely cause is the texture size being to large for your graphics 
card / driver. Does an error get printed to Chome's JavaScript Console?

-Matthew

On Sunday, October 7, 2012 11:20:43 PM UTC-4, Rasmus Schultz wrote:
>
> All I see is a black screen - using Chrome 22.0.1229.79 m.
>
> I've had no other problems with WebGL-based applications on this machine...
>
>
> On Wednesday, May 30, 2012 12:03:45 AM UTC-4, Matthew Petroff wrote:
>>
>> Thanks for the reports! It should work in recent desktop versions of 
>> Firefox and Chrome with proper driver support. Safari needs WebGL to 
>> be manually enabled, and Opera won't support it until Opera 12. Mobile 
>> support is much more spotty. As for the reports of a black screen, I 
>> think it is due to buggy WebGL implementations; when I first started 
>> working on this last year, I got the occasional black screen, but with 
>> more recent browser updates, this is no longer the case for me. 
>>
>> I can certainly change the text from "Load Panorama" to "Click to Load 
>> Panorama." As for translations, there is no client side way for 
>> detecting language that I know of, so it's a bit of a moot point; if 
>> one wants to host it on a page in a different language, one can just 
>> change the strings in the hosted copy. I might consider changing the 
>> base implementation and adding some sort of image pyramid support in 
>> the future, but I don't plan on adding new feature or developing it 
>> much more until WebGL support matures more. 
>>
>> -Matthew 
>>
>> On May 28, 11:49 pm, Matthew Petroff  wrote: 
>> > After a year of on and off development, Pannellum, a free and open 
>> > source panorama viewer for the web, is ready for release. Built using 
>> > HTML5, CSS3, JavaScript, and WebGL, it is plug-in free. The 
>> > lightweight viewer, just 18kB gzipped, can be deployed using a single 
>> > file and displays full equirectangular panoramas. One can easily embed 
>> > panoramas in web pages as an , using code generated by the 
>> > included configuration utility. 
>> > 
>> > For more information and an example, see:
>> http://www.mpetroff.net/archives/2012/05/28/introducing-pannellum/ 
>> > 
>> > Or the project page:https://bitbucket.org/mpetroff/pannellum/ 
>> > 
>> > I've tested it across a range of browsers, but I'd appreciate any 
>> > feedback or bug reports. 
>> > 
>> > -Matthew
>
>

-- 
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: Hugin 2012.0.0_rc2 released

2012-09-28 Thread Matthew Petroff
Windows binaries for Hugin 2012.0.0-rc2 are now available. For the Python 
enabled builds, one needs a preexisting Python 3.2 installation.

32-bit 7z Archive:
https://www.box.com/s/pxtfck83wec84ufhjf13

32-bit 7z Archive with Python:
https://www.box.com/s/7kepe9p9bi3j2khfz984

64-bit 7z Archive:
https://www.box.com/s/4sv65mj4n0uucfg709nw

64-bit 7z Archive with Python:
https://www.box.com/s/kr0xn40i4jy68ysnjsm6

32-bit Installer:
https://www.box.com/s/wvn7ql7saj86f2erwp69

32-bit Installer with Python:
https://www.box.com/s/qj2sir6k48cjiyvy4rcc

64-bit Installer:
https://www.box.com/s/zldakx8h64jmtrkr11cj

64-bit Installer with Python:
https://www.box.com/s/ozhswf5hzrietbkttvj5

-Matthew

On Tuesday, September 25, 2012 3:25:28 PM UTC-4, Harry van der Wolf wrote:
>
> Hugin-2012.0 RELEASE NOTES
>
> ABOUT
>
> Hugin is more than just a panorama stitcher. 
>
> Hugin can be found at
> * SourceForge:  http://hugin.sourceforge.net/
> * Launchpad:https://launchpad.net/hugin
>
> NOTE: The translation is not yet complete for all languages for this 
> release. Please check further down in this mail for the status of the 
> translations.
>
> DOWNLOAD
>
> The 2012.0 source tarball can be downloaded
>
> * from SourceForge at
>
> http://sourceforge.net/projects/hugin/files/hugin/hugin-2012.0/hugin-2012.0.0_
> rc2.tar.bz2/download
>
> * from Launchpad at
>
> https://launchpad.net/hugin/2012.0/2012.0rc2/+download/hugin-2012.0.0_rc2.tar.bz2
>
> This is a source code release.  For executables see below.
>
> This tarball is equivalent to rev/changeset 
> f5e3fdf42c0e in our Mercurial
> repository, where it is also tagged 2012.0.0_rc2
>
> Verify its SHA1SUM
> 7b2ef841c82b5360fbfefac2b0ca464b27d13ef6
>
>
> EXECUTABLES
>
> Users communities produce executables for their respective platforms.
>
> These executables are then added to the download section on SourceForge at
> http://sourceforge.net/projects/hugin/files/hugin/
>
> A number of users have built recent snapshots and executables are likely 
> to be
> announced within a few days of this tarball release.
>
> Watch http://groups.google.com/group/hugin-ptx for the announcements of 
> binary
> releases.  If you don't see a binary for your platform it has most likely 
> not
> been produced yet.  Consider stepping up to the task.  Instructions at
>
>
> http://wiki.panotools.org/Development_of_Open_Source_tools#Supported_Platforms
>
> Announce your build on http://groups.google.com/group/hugin-ptx
>
>
> CHANGES SINCE 2011.4.0
>
> The lensfun library for reading and writing lens parameters from/to 
> database has now been integrated into Hugin.
> Users can now search the lensfun library and load lens parameters.
>
> Added new tool pto_gen for generation of pto file from image files.
>
> Other Improvements
>
>   * Various improvements to cpfind including a prealign matching strategy 
> and pair wise matching for multirow heuristic
>   * Added option to keep exposure fused stacks
>   * pano_modify: Added HDR autocrop option
>   * Many more improvements and bug fixes.
>
>
> UPGRADING
>
> Upgrading from previous versions of Hugin should be seamless. If you do 
> have
> problems with old settings, these can be reset in the Preferences by 
> clicking
> 'Load defaults'.
>
> It is strongly recommeded to set the default control point detector to
> Hugin's CPFind.  It is the only control point generator endorsed by Hugin.
> Third-party generators may be compatible with the plug-in architecture.
>
>
> COMPILING
>
> Users compiling from source refer to the dependencies listed at
> http://wiki.panotools.org/Development_of_Open_Source_tools#Dependencies
>
> and the build processes listed at
>
> http://wiki.panotools.org/Development_of_Open_Source_tools#Build_your_Own_Test_Builds
>
> More information in the README and INSTALL_cmake files in the tarball.
>
>
> KNOWN ISSUES AND WORKAROUNDS
>
> Panosphere Overview window seperated from the content
> https://bugs.launchpad.net/hugin/+bug/726997
>
> There is a known problem building Hugin with CMake 2.8.5rc2.
> Workaround: Upgrade to a newer CMake version.
>
> Mac OS X:
> - Mac OS X Tiger (10.4) is no longer supported.
> - The PPC platform is no longer supported.
> - The OpenMP enabled enblend is now compatible on Mac OS X Lion (10.7).
> - The cmake compilation of Hugin is currently broken due to the fact that
> the boost library on OS X is currently at version 1.50 and boost versions 
> => 1.48
> conflict with a number of Mac OS X macros (from AssertMacros.h). This can
> not be disabled as WxWindows for Mac (a.k.a. WxMac) needs these macros.
> An XCode build, where a specific boost (<=1.46) can be specified, is
> possible. The 2012.0 OSX bundle will be based on an XCode build with boost
> 1.46.
>
> An updated list of issues deemed to be critical, including discussions
> and workarounds is in the issue tracker.
>
> https://bugs.launchpad.net/hugin/+bugs?search=Search&field.importance=Critical
>
>
> TRANSLATIONS
> Not all languages for this re

[hugin-ptx] Re: Hugin 2012.0.0_rc1 released

2012-09-23 Thread Matthew Petroff
Thanks for pointing out Sysinternals Strings. While I'm familiar with 
Dependency Walker, it doesn't work on 64-bit executables on a 32-bit 
system. Strings does work, though. It seems Python didn't link properly; 
none of the other Python related strings are in the executable either. I 
built the non-Python version first and then probably failed to rebuild 
something after enabling Python with CMake. Now that I have a way to check 
if the 64-bit executable is actually linked to Python, using Strings, I'll 
be sure to check in the future.

-Matthew

On Sunday, September 23, 2012 5:46:54 AM UTC-4, Wolfgang Strobl wrote:
>
> Matthew Petroff >: 
>
> [64-bit 7z Archive with Python 
> https://www.box.com/s/hvsl42i6ugfl4yvm2p0i isn't Python enabled] 
>
>
> >It should work as long as Python is in your system path. 
>
> Even with a local Python 3.2 installation including python32.dll on the 
> path, it doesn't. 
>
> >possibility that there's something wrong with the build, but I don't have 
> a 
> >64-bit system to test it on. 
>
> Perhaps I can offer some help.  I have all the necessary tools and a 
> reasonably large system, but failed constructing a working build 
> environment, starting from the very outdated sdk instructions. There are 
> just too many dependencies which are far from working out of the box on 
> Windows. So I gave up early. 
>
> >There will be at least one more release 
> >candidate before 2012.0.0 is declared final, so if there is something 
> wrong 
> >with that build, it hopefully won't manifest itself again. 
>
> Please apply sysinternals strings.exe (or a similar tool) to hugin.exe. 
> Applied to the  2012.0 beta 1 binary from july, the show the string 
> "python32.dll" and various external python symbols, Applied to the 
> actual rc1 binary, the output doesn't show "python32.dll", or any string 
> related to Python which isn't recogniceable as a UI string mentioning 
> it.  From the outside, it looks just like a not python enabled build. 
>
> If there hasn't been a change from using LoadLibrary and GetProcAdress 
> with ordinal values, between beta1 and rc1, I guess there has something 
> failed while linking with the python interface library. 
>
> -- 
> Wir danken f�r die Beachtung aller Sicherheitsbestimmungen 
>
>

-- 
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: Hugin 2012.0.0_rc1 released

2012-09-22 Thread Matthew Petroff
It should work as long as Python is in your system path. There's the 
possibility that there's something wrong with the build, but I don't have a 
64-bit system to test it on. There will be at least one more release 
candidate before 2012.0.0 is declared final, so if there is something wrong 
with that build, it hopefully won't manifest itself again.

-Matthew 

On Friday, September 21, 2012 5:04:31 PM UTC-4, Wolfgang Strobl wrote:
>
> Matthew Petroff >: 
>
> >Windows binaries for Hugin 2012.0.0-rc1 are now available. For the Python 
> >enabled builds, one needs a preexisting Python 3.2 installation. 
>
> How is that preexisting Python installation supposed to be installed? 
>
> Neither a global installation of Python 3.2 nor a local one copied to 
> ./bin is recognized by python enabled hugin rc1 on my system.. 
>
> "run python script" is greyed, no scripts are shown in the menue. 
>
> depends.exe applied to hugin.exe doesn't show a dependency on 
> python32.dll. AFAIR this has changed from beta1, which shows that 
> dependency. 
>
> I tried this with 
>
> >64-bit 7z Archive with Python: 
> >https://www.box.com/s/hvsl42i6ugfl4yvm2p0i 
>
> on Windows 7/64 german 
>
>
> -- 
> Wir danken f�r die Beachtung aller Sicherheitsbestimmungen 
>
>

-- 
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: Pannellum 1.2 Released

2012-09-18 Thread Matthew Petroff
Currently, Pannellum doesn't support touch events, so it isn't usable on 
touch screen devices, although I plan to add support in the next release. 
As for the iPad, iOS does not support WebGL, so Pannellum is not supported.

-Matthew

On Monday, September 17, 2012 7:20:55 PM UTC-4, IKT wrote:
>
> I tried it on my Xperia phone, and although (unlike my iPad) I can see the 
> panorama image, I can’t get it to realise that I’m pushing or prodding or 
> stroking the panorama, so it doesn’t move. 
>
> I’ve been looking around a bit, and found this:
>
> http://coding.smashingmagazine.com/2012/04/17/beercamp-an-experiment-with-css-3d/
> which, through all the incomprehensible technical nerdy mumbo-jumbo for 
> those computer programmer types, suggests using the gyroscope on ipads 
> (although the pannellum doesn’t seem to work on my ipad). I’m not sure if 
> my android Xperia Arc S phone has a gyroscope, but it has an accelerometer, 
> and this might be a good input method for “panning” a pano, where there’s 
> no trackpad or mouse.
>
> -- 
> *Ian Tindale*
>  

-- 
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: Pannellum 1.2 Released

2012-09-06 Thread Matthew Petroff
On Wednesday, September 5, 2012 6:41:20 PM UTC-4, Yuv wrote:

> I'm on Precise Pangolin, using Firefox 15, on a two years old Intel 
> Core ULV.  It works, but panning is very jerky (and I did not even try 
> full screen).  Can you measure / display FPS? 
>

It wouldn't be difficult to measure FPS. I'm currently working on rewriting 
the rendering functions to improve performance and will probably add a FPS 
display so I can compare the performance.

 

> Also: can you detect if the interaction is with a mouse or with a 
> touch device? as it is now I find the interaction with a mouse counter- 
> intuitively inverse, but it is great with a touch pad. 
>

As far as I know, there is no way to determine if a mouse or touch pad is 
being used. I went with the current control method since most web users 
should be familiar with it from web-based maps. I'm still undecided as to 
whether I want to keep it or switch to a "joystick" like control scheme.

 

> On a very recent version of Firefox for Android it seems to load the 
> image but does not display it.  On the browser built into Android 
> 4.0.4 it shows a message saying that A browser supporting WebGL is 
> required. 
>

Most mobile devices have smaller maximum texture sizes for WebGL, so 
Pannellum won't work if the image is too big (I have the same problem on my 
Android tablet). I plan on eventually adding image pyramid support to 
progressively load higher resolutions, which will address the inability to 
show loading progress as well as allow higher resolution panoramas to be 
displayed on devices that do not support large textures. In addition, I'm 
still working on touch screen controls, so at the moment, even if the image 
was displayed, one would not have been able to pan.

-Matthew

-- 
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: Hugin 2012.0.0_rc1 released

2012-09-03 Thread Matthew Petroff
Windows binaries for Hugin 2012.0.0-rc1 are now available. For the Python 
enabled builds, one needs a preexisting Python 3.2 installation.

32-bit 7z Archive:
https://www.box.com/s/s323hn4sgh4o2yteb4an

32-bit 7z Archive with Python:
https://www.box.com/s/rvfyp6qne36fynsr9hz1

64-bit 7z Archive:
https://www.box.com/s/laeon1gz576ph8ll1ryg

64-bit 7z Archive with Python:
https://www.box.com/s/hvsl42i6ugfl4yvm2p0i

32-bit Installer:
https://www.box.com/s/z7ic927pjxq0gr5mghqe

32-bit Installer with Python:
https://www.box.com/s/12ndy9h9gx7qti5zvuxe

64-bit Installer:
https://www.box.com/s/qsob0jo9poe63m19gvzt

64-bit Installer with Python:
https://www.box.com/s/914217ftc2kkjd3u0bzg

-Matthew

On Thursday, August 30, 2012 4:10:29 PM UTC-4, Harry van der Wolf wrote:
>
> Hugin-2012.0 RELEASE NOTES
>
> ABOUT
>
> Hugin is more than just a panorama stitcher. 
>
> Hugin can be found at
> * SourceForge:  http://hugin.sourceforge.net/
> * Launchpad:https://launchpad.net/hugin
>
> NOTE: The translation is not yet complete for all languages for this 
> release. Please check further down in this mail for the status of the 
> translations.
>
> DOWNLOAD
>
> The 2012.0 source tarball can be downloaded
>
> * from SourceForge at
>
> http://sourceforge.net/projects/hugin/files/hugin/hugin-2012.0/hugin-2012.0.0_rc1.tar.bz2/download
>
> * from Launchpad at
>
> https://launchpad.net/hugin/2012.0/2012.0rc1/+download/hugin-2012.0.0_rc1.tar.bz2
>
> This is a source code release.  For executables see below.
>
> This tarball is equivalent to rev/changeset 
> 5a8852eb5b3e3bd261df3162269431e506a33875 in our Mercurial
> repository, where it is also tagged 2012.0.0_rc1
>
> Verify its SHA1SUM
> 5a8852eb5b3e3bd261df3162269431e506a33875
>
>
> EXECUTABLES
>
> Users communities produce executables for their respective platforms.
>
> These executables are then added to the download section on SourceForge at
> http://sourceforge.net/projects/hugin/files/hugin/
>
> A number of users have built recent snapshots and executables are likely 
> to be
> announced within a few days of this tarball release.
>
> Watch http://groups.google.com/group/hugin-ptx for the announcements of 
> binary
> releases.  If you don't see a binary for your platform it has most likely 
> not
> been produced yet.  Consider stepping up to the task.  Instructions at
>
>
> http://wiki.panotools.org/Development_of_Open_Source_tools#Supported_Platforms
>
> Announce your build on http://groups.google.com/group/hugin-ptx
>
>
> CHANGES SINCE 2011.4.0
>
> The lensfun library for reading and writing lens parameters from/to 
> database has now been integrated into Hugin.
> Users can now search the lensfun library and load lens parameters.
>
> Added new tool pto_gen for generation of pto file from image files.
>
> Other Improvements
>
>   * Various improvements to cpfind including a prealign matching strategy 
> and pair wise matching for multirow heuristic
>   * Added option to keep exposure fused stacks
>   * pano_modify: Added HDR autocrop option
>   * Many more improvements and bug fixes.
>
>
> UPGRADING
>
> Upgrading from previous versions of Hugin should be seamless. If you do 
> have
> problems with old settings, these can be reset in the Preferences by 
> clicking
> 'Load defaults'.
>
> It is strongly recommeded to set the default control point detector to
> Hugin's CPFind.  It is the only control point generator endorsed by Hugin.
> Third-party generators may be compatible with the plug-in architecture.
>
>
> COMPILING
>
> Users compiling from source refer to the dependencies listed at
> http://wiki.panotools.org/Development_of_Open_Source_tools#Dependencies
>
> and the build processes listed at
>
> http://wiki.panotools.org/Development_of_Open_Source_tools#Build_your_Own_Test_Builds
>
> More information in the README and INSTALL_cmake files in the tarball.
>
>
> KNOWN ISSUES AND WORKAROUNDS
>
> Panosphere Overview window seperated from the content
> https://bugs.launchpad.net/hugin/+bug/726997
>
> There is a known problem building Hugin with CMake 2.8.5rc2.
> Workaround: Upgrade to a newer CMake version.
>
> Mac OS X:
> - Mac OS X Tiger (10.4) is no longer supported.
> - The PPC platform is no longer supported.
> - The OpenMP enabled enblend is now compatible on Mac OS X Lion (10.7).
> - The cmake compilation of Hugin is currently broken due to the fact that
> the boost library on OS X is currently at version 1.50 and boost versions 
> => 1.48
> conflict with a number of Mac OS X macros (from AssertMacros.h). This can
> not be disabled as WxWindows for Mac (a.k.a. WxMac) needs these macros.
> An XCode build, where a specific boost (<=1.46) can be specified, is
> possible. The 2012.0 OSX bundle will be based on an XCode build with boost
> 1.46.
>
> An updated list of issues deemed to

Re: [hugin-ptx] Pannellum 1.2 Released

2012-08-29 Thread Matthew Petroff
On Tuesday, August 28, 2012 4:01:25 PM UTC-4, Thomas Pryds wrote:

> On Chrome, however, I experience a slight glitch. Nothing serious, 
> though. When I drag the mouse to move the pano; if I drag out off the 
> pano area in the bottom, the whole pano and controls slide 5 or 10 
> pixels up in the pano area, leaving a stripe of "nothing" below the 
> pano. If I then drag the mouse cursor out off the pano in the top, the 
> pano and controls slide back into place. This doesn't happen for me on 
> Firefox, so I don't know if it's actually a Pannellum issue. 
>

It was a bug. I removed what I originally had in place to prevent that 
issue in order to get the keyboard controls to work properly, forgetting 
why it was there. I fixed the bug and released a minor update.

Pannellum 1.2.1:
https://bitbucket.org/mpetroff/pannellum/get/1.2.1.zip


-Matthew

-- 
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] Pannellum 1.2 Released

2012-08-28 Thread Matthew Petroff
With a few new features, a few improvements, and a bug fix, Pannellum 1.2, 
an HTML5 panorama viewer, has been released.

New Features:
 - Added keyboard panning controls
 - Added support for a fallback URL if WebGL is not supported

Improvements:
 - Clarified load button text
 - Switched from raster to vector icons

Bug Fixes:
 - Added workaround for a, now resolved, WebKit fullscreen regression

The new release can be downloaded here:
https://bitbucket.org/mpetroff/pannellum/get/1.2.zip

For a live example of the new release (although the example does not use a 
fallback viewer), see:
http://www.mpetroff.net/archives/2012/08/28/pannellum-1-2/



-Matthew

-- 
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: Hugin 2012.0beta1 released

2012-07-30 Thread Matthew Petroff
Windows binaries for Hugin 2012.0.0-beta1 are now available. Unfortunately, 
they are not on SourceForge since the files I have uploaded don't seem to 
appear for some reason. For the Python enabled builds, one needs a 
preexisting Python 3.2 installation.

32-bit 7z Archive:
https://www.box.com/s/c8b8f7b89a209519283a

32-bit 7z Archive with Python:
https://www.box.com/s/9a136b574a32c66fda46

64-bit 7z Archive:
https://www.box.com/s/9b1c4b740366f49a9d03

64-bit 7z Archive with Python:
https://www.box.com/s/5edaae44bef9b031850f

32-bit Installer:
https://www.box.com/s/37d2fca9b5091247e443

32-bit Installer with Python:
https://www.box.com/s/6f94a01b4faaba26e461

64-bit Installer:
https://www.box.com/s/a0f1a6c8188a53c0388b

64-bit Installer with Python:
https://www.box.com/s/15da120514cdda15f252

-Matthew

On Monday, July 23, 2012 2:54:03 AM UTC-4, Harry van der Wolf wrote:
>
> Hugin-2012.0 RELEASE NOTES
>
> ABOUT
>
> Hugin is more than just a panorama stitcher. 
>
> Hugin can be found at
> * SourceForge:  http://hugin.sourceforge.net/
> * Launchpad:https://launchpad.net/hugin
>
>
> DOWNLOAD
>
> The 2012.0 source tarball can be downloaded
>
> * from SourceForge at
>
> http://sourceforge.net/projects/hugin/files/hugin/hugin-2012.0/hugin-2012.0.0_beta1.tar.bz2/download
>
> * from Launchpad at
>
> https://launchpad.net/hugin/2012.0/2012.0beta1/+download/hugin-2012.0.0_beta1.tar.bz2
>
> This is a source code release.  For executables see below.
>
> This tarball is equivalent to rev/changeset 774550436f28 in our Mercurial
> repository, where it is also tagged 2012.0beta1
>
> Verify its SHA1SUM
> 8f9aa64b86f799283d302d702de4ecb16976f07a  hugin-2012.0.0_beta1.tar.bz2
>
> EXECUTABLES
>
> Users communities produce executables for their respective platforms.
>
> These executables are then added to the download section on SourceForge at
> http://sourceforge.net/projects/hugin/files/hugin/
>
> A number of users have built recent snapshots and executables are likely 
> to be
> announced within a few days of this tarball release.
>
> Watch http://groups.google.com/group/hugin-ptx for the announcements of 
> binary
> releases.  If you don't see a binary for your platform it has most likely 
> not
> been produced yet.  Consider stepping up to the task.  Instructions at
>
>
> http://wiki.panotools.org/Development_of_Open_Source_tools#Supported_Platforms
>
> Announce your build on http://groups.google.com/group/hugin-ptx
>
>
> CHANGES SINCE 2011.4.0
>
> The lensfun library for reading and writing lens parameters from/to 
> database has now been integrated into Hugin.
> Users can now search the lensfun library and load lens parameters.
>
> Added new tool pto_gen for generation of pto file from image files.
>
> Other Improvements
>
>   * Various improvements to cpfind including a prealign matching strategy 
> and pair wise matching for multirow heuristic
>   * Added option to keep exposure fused stacks
>   * pano_modify: Added HDR autocrop option
>   * Many more improvements and bug fixes.
>
>
> UPGRADING
>
> Upgrading from previous versions of Hugin should be seamless. If you do 
> have
> problems with old settings, these can be reset in the Preferences by 
> clicking
> 'Load defaults'.
>
> It is strongly recommeded to set the default control point detector to
> Hugin's CPFind.  It is the only control point generator endorsed by Hugin.
> Third-party generators may be compatible with the plug-in architecture.
>
>
> COMPILING
>
> Users compiling from source refer to the dependencies listed at
> http://wiki.panotools.org/Development_of_Open_Source_tools#Dependencies
>
> and the build processes listed at
>
> http://wiki.panotools.org/Development_of_Open_Source_tools#Build_your_Own_Test_Builds
>
> More information in the README and INSTALL_cmake files in the tarball.
>
>
> KNOWN ISSUES AND WORKAROUNDS
>
> Panosphere Overview window seperated from the content
> https://bugs.launchpad.net/hugin/+bug/726997
>
> There is a known problem building Hugin with CMake 2.8.5rc2.
> Workaround: Upgrade to a newer CMake version.
>
> Mac OS X:
> - Mac OS X Tiger (10.4) is no longer supported.
> - The PPC platform is no longer supported.
> - The OpenMP enabled enblend is now compatible on Mac OS X Lion (10.7).
> - The cmake compilation of Hugin is currently broken due to the fact that
> the boost library on OS X is currently at version 1.50 and boost versions 
> => 1.48
> conflict with a number of Mac OS X macros (from AssertMacros.h). This can
> not be disabled as WxWindows for Mac (a.k.a. WxMac) needs these macros.
> An XCode build, where a specific boost (<=1.46) can be specified, is
> possible. The 2012.0 OSX bundle will be based on an XCode build with boost
> 1.46.
>
> An updated list of issues deemed to be critical, including discussions
> and workarounds is in the issue tracker.
>
> https://bugs.launchpad.net/hugin/+bugs?search=Search&field.importance=Critical
>
>
> THANKS
>
> Thanks to all the contributors to this release and membe

[hugin-ptx] Re: Introducing Pannellum - an HTML5 Panorama Viewer

2012-06-03 Thread Matthew Petroff
Currently, partial panoramas are not supported; images are assumed to
be 360x180 degrees. I have not tested it with large panoramas; the
minimum field of view is currently hard-coded (and somewhat
arbitrary), so even if a large panorama works, you won't be able to
see the full detail. Adding keyboard controls for panning is a good
idea and is something I might add in the future.

-Matthew

On May 28, 11:49 pm, Matthew Petroff  wrote:
> After a year of on and off development, Pannellum, a free and open
> source panorama viewer for the web, is ready for release. Built using
> HTML5, CSS3, JavaScript, and WebGL, it is plug-in free. The
> lightweight viewer, just 18kB gzipped, can be deployed using a single
> file and displays full equirectangular panoramas. One can easily embed
> panoramas in web pages as an , using code generated by the
> included configuration utility.
>
> For more information and an example, 
> see:http://www.mpetroff.net/archives/2012/05/28/introducing-pannellum/
>
> Or the project page:https://bitbucket.org/mpetroff/pannellum/
>
> I've tested it across a range of browsers, but I'd appreciate any
> feedback or bug reports.
>
> -Matthew

-- 
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: Windows Build of GUI Overhaul Branch

2012-06-03 Thread Matthew Petroff
I guess the best method would be to distribute two versions, one
without Python and one with Python. I'll look into extending the
installer to check for Python and allow the user to download and
install it if it is not already installed.

Now that you mentioned that you were using a virtual machine, I know
what caused the crash. Your virtual machine does not support the
OpenGL preview. Therefore, unless the interface is set to expert,
Hugin crashes since the new GUI uses the OpenGL preview in the main
interface.

-Matthew

On Jun 1, 3:30 am, kfj <_...@yahoo.com> wrote:
> On 28 Mai, 21:48, Matthew Petroff  wrote:
>
> > While I included enough of Python for Hugin to run, I did not include
> > enough for the Python based features to work.
>
> What is the point? Why don't you just do it like Brian in his Windows
> build which he published a couple of days before you? It's a python-
> enabled build, so to run it, python has to be installed. Not a
> crippled isolated version (which is specifically missing the modules
> which would be needed to run the few included plugins), but an
> ordinary python install which everyone can get with a few clicks from
> python.org. Your minimal python takes up lots of space and has heaps
> of totally unnecessary stuff, and if any needed python modules can be
> installed into it, it would take some wizardry which is certainly way
> beyond the usual mechanism of just picking them up from the 'cheese
> shop' (the python package index PyPI).
>
> > I also mistook
> > "_hsi.pyd" for a ".pyc" file and accidentally deleted it before
> > packaging the build.
>
> Ooops... you happened to forget the core component ;-)
>
> If your intention was to provide a demo of the new GUI, you had better
> built it without python. Packaging a crippled python interface will
> make everyone think it's crap.
>
> > Here is a new build that includes a stripped down
> > Python install similar to what is included with Blender or the GIMP
> > (the old build only included Python32.dll).
>
> I think this isn't a good idea. I say again: If the user installs a
> python-enabled build, he/she needs a proper python installation. You
> don't want all the confused users to come complaining on hugin-ptx not
> understanding how they can install modules etc.
>
> The python interface is deliberately designed to empower the user.
> Anyone can pick one of the template plugins and come up with a
> modified version ready to run in a few minutes. This is partly
> intended and designed, and partly due to the fact that hugin's
> developer community has, so far, not bothered about integrating the
> plugins into hugin, so to make them behave differently, there is no
> menu or mask or such, you can only 'run' them without parameters. I
> hope eventually they will use wxpython to do some GUI, but so far I
> feel it's best to leave them open to easy user modification.
>
> GIMP and blender plugins are much more involved, so they are sort of a
> closed shop, there is an installation mechanism from inside the
> program, and writing them is for a few wizards and may take days. The
> whole philosphy behind the hugin plugin interface is to make it as
> accessible as possible. This is why there is a menu point 'run python
> program' - it simply launches any old plugin from anywhere on the
> systen which a user may have written. It's really quite simple. The
> more formalized installation of select plugins which, then, appear in
> the actions menu, is for well-tested plugins which are considered
> worthy of being distributed with hugin.
>
> > I was not able to
> > reproduce your instant crash on Windows XP, 7, or 8 developer preview.
>
> This may well be due to the W7 installation I used, which is in a
> virtual machine. On XP, which is on a physical machine, I experienced
> no crashes.
>
> I do have a few complaints, though. While the new GUI is a matter of
> taste, and it seemed to do it's job, The python interface in your
> build is mediocre at best:
>
> hsi can only be imported from the place where you have put it.
> Normally, python modules go to a place in the python installation
> where they live with all the other modules, and any python session on
> the system can just import them by the simple statement 'import xyz'.
> No joy here.
>
> Running a python session from the command line in c:\Programme\hugin
> \bin, I could import hsi, but help(hsi) threw an exception. The plugin
> interface is only half of the show; the hsi python module enables any
> python script which imports it to use most of hugin's backend
> functionality - hugin isn't need

[hugin-ptx] Re: Introducing Pannellum - an HTML5 Panorama Viewer

2012-05-29 Thread Matthew Petroff
Thanks for the reports! It should work in recent desktop versions of
Firefox and Chrome with proper driver support. Safari needs WebGL to
be manually enabled, and Opera won't support it until Opera 12. Mobile
support is much more spotty. As for the reports of a black screen, I
think it is due to buggy WebGL implementations; when I first started
working on this last year, I got the occasional black screen, but with
more recent browser updates, this is no longer the case for me.

I can certainly change the text from "Load Panorama" to "Click to Load
Panorama." As for translations, there is no client side way for
detecting language that I know of, so it's a bit of a moot point; if
one wants to host it on a page in a different language, one can just
change the strings in the hosted copy. I might consider changing the
base implementation and adding some sort of image pyramid support in
the future, but I don't plan on adding new feature or developing it
much more until WebGL support matures more.

-Matthew

On May 28, 11:49 pm, Matthew Petroff  wrote:
> After a year of on and off development, Pannellum, a free and open
> source panorama viewer for the web, is ready for release. Built using
> HTML5, CSS3, JavaScript, and WebGL, it is plug-in free. The
> lightweight viewer, just 18kB gzipped, can be deployed using a single
> file and displays full equirectangular panoramas. One can easily embed
> panoramas in web pages as an , using code generated by the
> included configuration utility.
>
> For more information and an example, 
> see:http://www.mpetroff.net/archives/2012/05/28/introducing-pannellum/
>
> Or the project page:https://bitbucket.org/mpetroff/pannellum/
>
> I've tested it across a range of browsers, but I'd appreciate any
> feedback or bug reports.
>
> -Matthew

-- 
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] Introducing Pannellum - an HTML5 Panorama Viewer

2012-05-28 Thread Matthew Petroff
After a year of on and off development, Pannellum, a free and open
source panorama viewer for the web, is ready for release. Built using
HTML5, CSS3, JavaScript, and WebGL, it is plug-in free. The
lightweight viewer, just 18kB gzipped, can be deployed using a single
file and displays full equirectangular panoramas. One can easily embed
panoramas in web pages as an , using code generated by the
included configuration utility.

For more information and an example, see:
http://www.mpetroff.net/archives/2012/05/28/introducing-pannellum/

Or the project page:
https://bitbucket.org/mpetroff/pannellum/

I've tested it across a range of browsers, but I'd appreciate any
feedback or bug reports.


-Matthew

-- 
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: Windows Build of GUI Overhaul Branch

2012-05-28 Thread Matthew Petroff
While I included enough of Python for Hugin to run, I did not include
enough for the Python based features to work. I also mistook
"_hsi.pyd" for a ".pyc" file and accidentally deleted it before
packaging the build. Here is a new build that includes a stripped down
Python install similar to what is included with Blender or the GIMP
(the old build only included Python32.dll). I was not able to
reproduce your instant crash on Windows XP, 7, or 8 developer preview.

Installer:
https://www.box.com/s/85d189101c86e16609c8

7z Archive:
https://www.box.com/s/36b8b4d0a092da63c535

-Matthew

On May 27, 10:22 am, kfj <_...@yahoo.com> wrote:
> On 27 Mai, 04:18, Matthew Petroff  wrote:
>
> > These are 32-bit Windows builds of the GUI Overhaul branch including
> > lensfun and Python support as well as a build of the Enblend and
> > Enfuse development repository tip.
>
> Matthew, your build does not work for me:
>
> - On W7, it installs, but crashes instantly when I try to run it
> - On XP, it installs and runs, but crashes when I try to run plugins.
>
> I noticed that the _hsi module is absent from your installer. This is
> the shared library containing the python interface, it's made from the
> C code which swig produces. So importing hsi from a python prompt
> doesn't work either - hsi tries loading _hsi first thing, and it can't
> find it (because it's not there). I suppose this failure to load _hsi
> may produce the crash when trying to run plugins from hugin, but it's
> only a guess. Did the plugin interface run on your system? Any hints
> what might be wrong?
>
> Kay

-- 
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] Windows Build of GUI Overhaul Branch

2012-05-26 Thread Matthew Petroff
These are 32-bit Windows builds of the GUI Overhaul branch including
lensfun and Python support as well as a build of the Enblend and
Enfuse development repository tip.

Installer:
https://www.box.com/s/498e09d35722d868a169

7z Archive:
https://www.box.com/s/9490c58eef67bb099174


-Matthew

-- 
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: 2011.4 win32 - out of memory - "compiled without image cache"

2012-03-06 Thread Matthew Petroff
On Mar 5, 7:05 pm, JohnG  wrote:
> If the Hugin FAQ [1] is still up-to-date, enfuse.exe enables
> image_cache and enfuse_openmp.exe doesn't. I found copies of both in
> my "program files/Hugin/bin".
>
> Though I haven't tried it, perhaps setting enfuse_openmp as the
> "alternative" to enfuse in Preferences/Programs dialogue might be a
> more obvious way to disable image_cache when necessary ? The same
> trick might also work for enblend.exe and enblend_openmp.exe ?

The Hugin 2011.4 Windows distribution has enblend.exe and
enblend_noopenmp.exe (as well as enfuse.exe and enfuse_noopenmp.exe).
The default version, enblend.exe, has OpenMP multithreading turned on
and image_cache turned off. The other version, enblend_noopenmp.exe,
has OpenMP turned off and image_cache turned on. Setting the
enblend_noopenmp.exe version as the alternative in Hugin's preferences
will allow you to use image_cache and avoid the "out of memory"
exception but will be slower than the default version on a multi-core
machine.

-Matthew

-- 
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: Enblend bundled with Hugin no longer supports -m

2012-01-31 Thread Matthew Petroff
There should be a file called "enblend_noopenmp.exe" in the Hugin bin
directory that has OpenMP disabled and therefore has image cache. You
can either rename it "enblend.exe" or set your Hugin preferences to
use an alternative Enblend program and select that file.

Matthew

On Jan 30, 5:38 am, Stratty  wrote:
> Hi guys,
>
> I'm not sure when this might have started, if indeed it was
> intentional, but it seems the current hugin Windows x32 bundle comes
> with a version of enblend that is compiled without image cache,
>
> "enblend: warning: option "-m" has no effect in this version of
> enblend"
>
>  so those of us with with only a few gig of ram can run into out of
> memory errors.
>
> I was wondering if this was intentional i.e. enblend has moved on from
> when this functionality was required? I know with x64 that larger
> amounts of ram are less of an issue and more people are moving to x64.
> I do realise I can still get enblend from the enblend site, and that
> still supports -m, but I would assume the latest enblend bundled with
> hugin has various bug fixes etc in it, which would make it more
> desireable to have if possible.
>
> Regards,
> Stratty ;)

-- 
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: Some nice big mosaics

2012-01-14 Thread Matthew Petroff
I agree that straight line CPs are extremely important. When I
stitched a large mosaic (135 images with an 8mm fisheye, ~1800 manual
CPs), I used a pre-calibrated lens and optimized position and
translation after every image [1]. At first, I started off without
using straight line CPs, and it did not turn out well; adding straight
line CPs, however, did wonders. After, I still had to do a lot of
tweaking and masking to get better alignment, but the straight line
CPs were crucial in maintaining the overall shape of the mosaic.

Matthew

[1] http://www.mpetroff.net/files/openzoom/taft-class-of-2011/

On Jan 14, 12:50 pm, Tom Sharpless  wrote:
> Hi Kay
>
> In my experience the most important things are to place lots of
> straight line CPs, and to rigorously exclude both off-plane and bogus
> CPs.  Hugins CPFind can generate a lot of false matches when matching
> 'all vs all', so I try to organize my shots so that 'multirow' mode
> works.  But in any case I check every CP visually.
>
> Straight line CPs are the 'backbone' that keeps the whole pano
> square.  They only work when the target projection is rectilinear, and
> at first the optimizer wants to generate yaw angles that are too big.
> So I have to reset and reoptimize from scratch a lot -- just positions
> and viewpoint, with nominal lens parameters. Eventually when the CP
> set is good, the pano snaps into alignment and I can then tweak lens
> parameters if it seems necessary -- though with a calibrated lens it
> rarely does.
>
> Regards, Tom
>
> On Jan 13, 5:05 am, kfj <_...@yahoo.com> wrote:
>
>
>
>
>
>
>
> > On 12 Jan., 18:48, Tom Sharpless  wrote:
>
> > > I've been happily making high resolution mosaics of wall paintings
> > > with Hugin.
>
> > > It's a bit chancy getting the very wide ones to align right, but with
> > > plenty of straight line CPs and care to avoid CPs not on the plane of
> > > the mural, I've had good results. In some cases I've had to add one
> > > image at a time to the optimized pool, presetting y,p,r,x,y,z to
> > > reasonably close values.
>
> > I've done a fair amount of similar stitches (mainly maps and
> > signposts), and I found that trying to optimize y,p,r,X,Y and Z all at
> > once introduces to many degrees of freedom, so the whole thing totally
> > fails. But you can still work on the whole image set at once if you
> > only only do a few parameters at a time. I often start out with just X
> > and Y and then take it from there, optimizing the others in turn. Once
> > everything has 'gelled' nicely, you can optimize more parameters
> > simultanously. Doing it this way is probably faster than introducing
> > the images one by one and estimating parameters. The process also
> > benefits from lots of CPs (like, 100-200 per pair).
>
> > This makes me wonder if there couldn't be a specific mosaic
> > optimization mode which follows such a pattern, thus avoiding the mess
> > that usually happens if you try optimizing everything at once.
>
> > Kay

-- 
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: Hugin 2011.4 rc1 released

2011-12-03 Thread Matthew Petroff
Hugin 2011.4.0-rc1 binaries for Windows are now available.

See SourceForge.net downloads page:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2011.4/

Matthew

On Dec 2, 12:33 pm, "T. Modes"  wrote:
> Hugin 2011.4 release candidate 1 has been released:
>
> Hugin is a Panorama stitcher and more.  A powerful software package
> for creating and processing panoramic images.
>
> A hugin-2010.4.0_rc1 (release candidate 1) tarball is available 
> here:http://sourceforge.net/projects/hugin/files/hugin/hugin-2011.4/hugin-...http://launchpad.net/hugin/2011.4/2011.4rc1/+download/hugin-2011.4rc1...
> The SHA1 checksum is
> 21ec7331d5e196aca2a8771d3c9101dd181ad93b  hugin-2011.4rc1.tar.bz2
>
> This is a release candidate, i.e. The final release may be identical.
>
> More information about this release can be found in the ChangeLog and
> the release notes:http://hugin.sourceforge.net/releases/2011.4.0/
>
> Summary of changes since 2011.4 beta 1:
> * Updated Brazilian Portugese, Czech, French, Dutch, Italian, German
> and Hungarian translation (Thanks to all translators again).
> * Fixes for drawing moving mask overlay on Mac OS.
> * Changed keyboard short cuts on Mac OS: use the command key instead
> of control key.
>
> Changes Since 2011.2.0
> Hugin now has a vertical feature detection tool for automatic leveling
> of panoramas. Besides, also many bugs have been fixed and many general
> improvements have been made.
>
> Vertical feature detection tool
> Often a panorama, created from several single photos, is not level. In
> this case the experienced user adds vertical and horizontal control
> points to level the panorama.
> With this release Hugin introduces a tool named linefind which
> automatically detects vertical features in the photos such as the
> edges of buildings and windows, and assigns vertical control points to
> them. This makes it easier than before to level a panorama, in most
> cases it works without any intervention.
>
> Other Improvements
> * The Fast Preview window can now show composition guides such as Rule
> of Thirds and Golden ratio to support an easier composition of the
> final panorama.
>   * The output of High Dynamic Range (HDR) images has been modified to
> prevent clipping of the exposure in EXR format images. The previous
> versions of Hugin outputted HDR images with absolute exposure values,
> now with this 2011.4.0 release, Hugin uses relative exposure values.
> This means that the output Exposure Value (EV) of the panorama, which
> can be set in the preview window, has an influence on the HDR output
> (as already for normal LDR images) and should be set to the medium
> exposure value of the images. If you set  the output exposure value to
> zero, the old behavior is restored.
> * The batch processor PTBatcherGUI has been extended:
> ** It is now possible to directly add unaligned projects to the
> assistant queue for aligning and control point generation.
> ** Successfully stitched projects can be automatically removed from
> the queue, this makes the queue management easier.
> ** If a project was successfully finished by the assistant, it can be
> automatically added to the stitching queue. This now allows for a
> fully automatic panorama creation workflow.
> * Many more improvements and bug fixes.
>
> Upgrading
> Upgrading from previous versions of Hugin should be seamless. If you
> do have problems with old settings, these can be reset in the
> Preferences window by clicking 'Load defaults'.

-- 
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: Hugin 2011.4beta 1 released

2011-11-08 Thread Matthew Petroff
Hugin 2011.4.0-beta1 binaries for Windows are now available.

See SourceForge.net downloads page:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2011.4/


Matthew

On Nov 5, 3:24 am, "T. Modes"  wrote:
> Hugin 2011.4 beta 1 is released.
>
> A vertical feature detector has been added. Beside this many bugs have
> been fixed (see also release notes below).
> Please test.
>
> Now it is also a good time to update the translations. Few new strings
> have been added.
>
> Following the release notes:
>
> Hugin-2011.4 BETA 1 RELEASE NOTES
>
> DOWNLOAD
>
> The 2011.4 beta 1 source tarball can be downloaded
>
> * from SourceForge 
> athttp://sourceforge.net/projects/hugin/files/hugin/hugin-2011.4/hugin-...
>
> * from Launchpad 
> athttp://launchpad.net/hugin/2011.4/2011.4beta1/+download/hugin-2011.4b...
>
> This is a source code release.  For executables see below.
>
> This tarball is equivalent to rev/changeset 4ddbc0de5115 in our
> Mercurial
> repository, where it is also tagged 2011.4beta1
>
> Verify its SHA1SUM
> 89f6ea1f10fae589357bb51581008d7e8e66ed82  hugin-2011.4beta1.tar.bz2
>
> EXECUTABLES
>
> Users communities produce executables for their respective platforms.
>
> These executables are then added to the download section on
> SourceForge athttp://sourceforge.net/projects/hugin/files/hugin/
>
> A number of users have built recent snapshots and executables are
> likely to be
> announced within a few days of this tarball release.
>
> Watchhttp://groups.google.com/group/hugin-ptxfor the announcements
> of binary
> releases.  If you don't see a binary for your platform it has most
> likely not
> been produced yet.  Consider stepping up to the task.  Instructions at
>
> http://wiki.panotools.org/Development_of_Open_Source_tools#Supported_...
>
> Announce your build onhttp://groups.google.com/group/hugin-ptx
>
> TRANSLATIONS
>
> This beta releases introduces some new strings.
> Now is a good time to help update your language.
> Instructions athttp://wiki.panotools.org/Hugin_translation_guide
>
> CHANGES SINCE 2011.2.0
>
> Hugin has got a vertical feature detection tool for automatic
> levelling
> of panoramas. Beside this also many bugs have fixed and many general
> improvements have been made.
>
> Vertical feature detection tool
>
> Often a panorama, created from several single photos, is not level. In
> this case the experienced user adds vertical and horizontal control
> points to level the panorama.
>
> Hugin has now a tool named linefind which can automatically find
> vertical features in the photos such as the edges of buildings and
> windows, and assigns vertical control points to them. This makes is
> easier than before to level a panorama, in most cases it works without
> any intervention.
>
> Other Improvements
>
>   * The Fast Preview window can now show composition guides such as
>     Rule of Thirds and Golden ratio to support an easier composition
>     of the final panorama.
>   * The output of High Dynamic Range (HDR) images has been modified to
>     prevent clipping of the exposure in EXR format images. The
>     previous versions of Hugin outputted HDR images with absolute
>     exposure values, now with this 2011.4.0 release, Hugin uses
> relative
>     exposure values. This means that the output Exposure Value (EV) of
>     the panorama, which can be set in the preview window, has an
>     influence on the HDR output (as already for normal LDR images) and
>     should be set to the medium exposure value of the images. If you
> set
>     the output exposure value to zero, the old behaviour is restored.
>   * The batch processor PTBatcherGUI has been extended:
>       o It is now possible to directly add unaligned projects to the
>         assistant queue for aligning and control point generation.
>       o Successfully stitched projects can be automatically removed
> from
>         the queue, this makes the queue management easier.
>       o If a project was successfully finished by the assistant, it
> can
>         be automatically added to the stitching queue. This now allows
> a
>         fully automatic panorama creation workflow.
>   * Many more improvements and bug fixes.
>
> UPGRADING
>
> Upgrading from previous versions of Hugin should be seamless. If you
> do have
> problems with old settings, these can be reset in the Preferences by
> clicking
> 'Load defaults'.
>
> It is strongly recommeded to set the default control point detector to
> Hugin's CPFind.  It is the only control point generator endorsed by
> Hugin.
> Third-party generators may be compatible with the plug-in
> architecture.
>
> COMPILING
>
> Users compiling from source refer to the dependencies listed 
> athttp://wiki.panotools.org/Development_of_Open_Source_tools#Dependencies
>
> and the build processes listed 
> athttp://wiki.panotools.org/Development_of_Open_Source_tools#Build_your...
>
> More information in the README and INSTALL_cmake files in the tarball.
>
> KNOWN ISSUES AND WORKAROUNDS
>
> Panosphere O

[hugin-ptx] Re: Creating Windows installer

2011-10-30 Thread Matthew Petroff
When you run CMake, be sure to enable "BUILD_HUGINSETUP". Open the
generated solution in MSVC and build the "BUILD_ALL" project followed
by the "INSTALL" project. Finally, build the "HuginSetup" project
which will create the installer in "/INSTALL".

Matthew

On Oct 30, 6:46 pm, Steeve  wrote:
> Developer's
>
> I'm trying to create a Window's installer, to install a local build
> onto another machine.. The outline process seems to be, Cmake is run
> to generate the Visual Studio Solution file, it also generates a cpack
> config file, from which an NSIS installer is generated and run from
> Visual Studio
>
> I'm finding Visual Studio can't build the installer, it has the
> following error:
>
> 1>CPack: - Install project: hugin
> 1>CPack Error: Problem creating temporary directory: C:/HuginSDKLatest/
> builds/_CPack_Packages/win32/NSIS/hugin-2011.3.0.5633-win32/C:/
> HuginSDKLatest/builds/INSTALL/FILES
> 1>CPack Error: Error when generating package: hugin
>
> This looks to be a path created by joining two paths, Windows then
> complains about C:\ appearing within the path. I can fix this, but it
> appears there are further issues with the installer script. For
> example the display name is defaulting to "CMake 2011.3" since the
> NSIS variables don't appear to be configured, by cmake
> SET(CPACK_NSIS_DISPLAY_NAME "CMake 2011.3")
> SET(CPACK_NSIS_INSTALLER_ICON_CODE "")
> SET(CPACK_NSIS_INSTALLER_MUI_ICON_CODE "")
> SET(CPACK_NSIS_INSTALL_ROOT "$PROGRAMFILES")
> SET(CPACK_NSIS_PACKAGE_NAME "CMake 2011.3")
>
> Is anybody using this route for building installers for Windows?  or
> have I done something wrong?
>
> Did Panz's changes[1] get submitted back into the repository?
>
> Regards
> Stephen
>
> [1]http://groups.google.com/group/hugin-ptx/browse_thread/thread/950a0c0...

-- 
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: hsi on Windows 32 bit

2011-10-26 Thread Matthew Petroff
On Oct 26, 4:25 am, kfj <_...@yahoo.com> wrote:
> Building hugin with hsi enabled is a compile-time option, so it's up
> to the builder creating the installer whether they include it or not.
> It looks like the installer you've got may not have it.

The Windows binaries on SourceForge do not have Python enabled. I have
had no success in getting static Python builds to work and didn't want
to mix static and dynamic dependencies in a release build. At some
point, when I have the time, I'll either change my mind or change my
build environment to purely dynamic to include Python support.

Matthew

-- 
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: Hugin 2011.2 RC5 released

2011-09-23 Thread Matthew Petroff
On Sep 22, 9:06 pm, Peter  wrote:
> RC4, RC5 do not start, RC3 does...
> Anybody got a glue what I am doing wrong ?
>
> Using :
> Win XP-SP3, CPU :Pentium 3
> Hugin archive, not the installer.

The newer release candidates have been compiled with SSE2 enabled for
improved performance. Intel introduced SSE2 support with the Pentium 4
in 2001, and virtually every processor made in the past eight years
has support for it. The Pentium III does not have SSE2 support, and
the binaries are therefore not compatible with it.

Matthew

-- 
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: Hugin 2011.2 RC5 released

2011-09-18 Thread Matthew Petroff
Windows builds of Hugin 2011.2.0-rc5 are now available on SourceForge.

32-bit Installer:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2011.2_beta/HuginSetup_2011.2.0-rc5_32bit_Windows.exe/download

64-bit Installer:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2011.2_beta/HuginSetup_2011.2.0-rc5_64bit_Windows.exe/download

32-bit Archive:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2011.2_beta/Hugin_2011.2.0-rc5_32bit_Windows.7z/download

64-bit Archive:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2011.2_beta/Hugin_2011.2.0-rc5_64bit_Windows.7z/download

Matthew

On Sep 18, 4:14 am, "T. Modes"  wrote:
> Hugin-2011.2.0_rc5 RELEASE NOTES
>
> ABOUT
>
> Hugin is more than just a panorama stitcher.  A new version is
> available.
> This is a release candidate and may be declared a final release in a
> few days.
> This release candidate is the same as rc3 with two exception:  a new
> Danish
> translation has been added and the Dutch translation has been updated.
>
> Hugin can be found at
> * SourceForge:  http://hugin.sourceforge.net/
> * Launchpad:    https://launchpad.net/hugin
>
> DOWNLOAD
>
> The 2011.2.0_rc5 source tarball can be downloaded
>
> * from SourceForge 
> athttp://sourceforge.net/projects/hugin/files/hugin/hugin-2011.2_beta/h...
>
> * from Launchpad 
> athttp://launchpad.net/hugin/2011.2/2011.2rc5/+download/hugin-2011.2.0_...
>
> This is a source code release.  For executables see below.
>
> This tarball is equivalent to rev/changeset 3d9649aa241a in our
> Mercurial
> repository, where it is also tagged 2011.2.0_rc5
>
> Verify its SHA1SUM
> 79dfdac229b4e58f50c893c1238bdd0921ad9da6  hugin-2011.2.0_rc5.tar.bz2
>
> EXECUTABLES
>
> Users communities produce executables for their respective platforms.
>
> These executables are then added to the download section on
> SourceForge athttp://sourceforge.net/projects/hugin/files/hugin/
>
> A number of users have built recent snapshots and executables are
> likely to be
> announced within a few days of this tarball release.
>
> Watchhttp://groups.google.com/group/hugin-ptxfor the announcements
> of binary
> releases.  If you don't see a binary for your platform it has most
> likely not
> been produced yet.  Consider stepping up to the task.  Instructions at
>
> http://wiki.panotools.org/Development_of_Open_Source_tools#Supported_...
>
> Announce your build onhttp://groups.google.com/group/hugin-ptx
>
> SPLASH SCREEN
>
> To promote artists using Hugin the project has adopted a user-
> contributed
> artwork to enrich the splash screen of this release.
>
> Read more about the Fafleralp panorama and author/contributor David
> Haberthür athttp://hugin.sourceforge.net/releases/2011.2.0/
>
> CHANGES SINCE 2011.0.0
>
> Little time has passed since our last release and yet there is new
> major
> functionality.  Hugin has received a Python scripting interface and
> new
> lens calibration tool.  A critical bug affecting a significant number
> of
> Mac users has been fixed and many general improvements have been made.
>
> _Lens Calibration Tool_
>
> Lenses are designed to follow a perfect geometric model.  For
> rectilinear
> lenses, a straight line in the depicted scene should be straight in
> the
> picture.  This is not always the case:  most lenses have an inherent
> deviation from the perfect model, resulting in imperfections such as
> pincushion or barrel distortion in rectilinear lenses.
>
> Adherence to the perfect geometric model is desirable for aesthetic
> purposes
> and indespensible to achieve proper alignment when stitching images.
> Hugin can calculate lens distortion parameters on the fly when
> optimizing
> a project, however this requires more control points and more
> computational
> effort than a project starting with a calibrated lens, and is prone to
> more
> errors.
>
> The new lens calibration tool calculates the distortion parameters of
> a
> lens based on an input image.  The input image must contain straight
> lines, ideally many of them at different distances from the center of
> the
> lens, covering at least one quadrant of the image.  The calculated
> parameters are valid for a given combination of focal distance,
> aperture (F-stop), and sensor.
>
> The values, saved into a lens profile, can be used in Hugin to achieve
> a better stitch, or on single images taken with this lens / settings
> combination to achieve a more aesthetically pleasing outcome.
>
> _Python Scripting Interface_
>
> Hugin now exposes some of its data structure and functionalities
> through
> a Python module.  To get started with scripting, start your Python
> interpreter and type:
>
>    >>> import hsi
>    >>> help (hsi)
>
> Standalone Python programs can access a panorama object with Hugin's
> functionality.  It is possible to develop complete command line and
> even GUI tools based on this module.
>
> The Python Scripting Interface does not work on Mac OSX yet.
>
> _Python Plugin Interface_
>
> Hugin can now run Python s

[hugin-ptx] Re: New primary seam generator in Enblend

2011-09-02 Thread Matthew Petroff
I just uploaded a test build of the Enblend/Enfuse trunk for 32-bit
Windows:
http://db.tt/o65MZB6

Matthew

On Sep 1, 7:17 am, Rosomack  wrote:
> Hello all,
>
> I'm happy to announce a new primary seam generator that was recently
> integrated into the Enblend mainline. It was developed as part of the
> Google Summer of Code 2011 program.
>
> The algorithm is based on the idea of Graph-Cuts 
> :http://en.wikipedia.org/wiki/Graph_cuts_in_computer_vision
> The implementation does not utilize max-flow algorithms, which are
> relatively slow and memory-heavy.
>
> The new seam generator takes into account feature frequency as well as
> image dissimilarity, and therefore is less likely to cross elements
> which would make the seam line more apparent, such as beams, fences,
> railings etc.. This should produce better results than the old seam
> generator in many cases.
>
> The Graph Cut seam generator works best with a fine mask (--fine-mask
> command line option). It requires more memory and time than the old
> Nearest Feature Transform algorithm, so it is best to use NFT where
> efficiency is essential. Graph-cut on the other hand should produce an
> overall better seam in most cases.
>
> For more information on usage and current limitations please refer to
> the Enblend manual.
>
> Special thanks to Thomas Modes and Christoph Spiel for great help and
> guidance. Also a big thank you for everyone who sent me photos for
> testing.
>
> Regards,
> Mikolaj

-- 
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: Hugin-2011.2.0_rc4 released

2011-08-28 Thread Matthew Petroff
32-bit Windows builds of Hugin 2011.2.0-rc4 using the new SDK are now
available on SourceForge. I believe I have fixed the issue with
Enblend from rc2, but testing and feedback are appreciated.

Installer:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2011.2_beta/HuginSetup_2011.2.0-rc4_32bit_Windows.exe/download

7z Archive:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2011.2_beta/Hugin_2011.2.0-rc4_32bit_Windows.7z/download

Matthew

On Aug 16, 9:45 pm, Yuval Levy  wrote:
> Hugin-2011.2.0_rc4 RELEASE NOTES
>
> ABOUT
>
> Hugin is more than just a panorama stitcher.  A new version is available.
> This is a release candidate and may be declared a final release in a few days.
> This release candidate is the same as rc3 with two exception:  a new Danish
> translation has been added and the Dutch translation has been updated.
>
> Hugin can be found at
> * SourceForge:  http://hugin.sourceforge.net/
> * Launchpad:    https://launchpad.net/hugin
>
> DOWNLOAD
>
> The 2011.2.0_rc4 source tarball can be downloaded
>
> * from SourceForge 
> athttp://sourceforge.net/projects/hugin/files/hugin/hugin-2011.2_beta/h...
>
> * from Launchpad 
> athttp://launchpad.net/hugin/2011.2/2011.2rc4/+download/hugin-2011.2.0_...
>
> This is a source code release.  For executables see below.
>
> This tarball is equivalent to rev/changeset 5504:38785809a4b2 in our Mercurial
> repository, where it is also tagged 2011.2.0_rc4
>
> Verify its SHA1SUM
> 4da599f69ff4f0a53cdf8275048c87221cf6edb1  hugin-2011.2.0_rc4.tar.bz2
>
> EXECUTABLES
>
> Users communities produce executables for their respective platforms.
>
> These executables are then added to the download section on SourceForge 
> athttp://sourceforge.net/projects/hugin/files/hugin/
>
> A number of users have built recent snapshots and executables are likely to be
> announced within a few days of this tarball release.
>
> Watchhttp://groups.google.com/group/hugin-ptxfor the announcements of binary
> releases.  If you don't see a binary for your platform it has most likely not
> been produced yet.  Consider stepping up to the task.  Instructions at
>
> http://wiki.panotools.org/Development_of_Open_Source_tools#Supported_...
>
> Announce your build onhttp://groups.google.com/group/hugin-ptx
>
> SPLASH SCREEN
>
> To promote artists using Hugin the project has adopted a user-contributed
> artwork to enrich the splash screen of this release.
>
> Read more about the Fafleralp panorama and author/contributor David Haberthür
> athttp://hugin.sourceforge.net/releases/2011.2.0/
>
> CHANGES SINCE 2011.0.0
>
> Little time has passed since our last release and yet there is new major
> functionality.  Hugin has received a Python scripting interface and new
> lens calibration tool.  A critical bug affecting a significant number of
> Mac users has been fixed and many general improvements have been made.
>
> _Lens Calibration Tool_
>
> Lenses are designed to follow a perfect geometric model.  For rectilinear
> lenses, a straight line in the depicted scene should be straight in the
> picture.  This is not always the case:  most lenses have an inherent
> deviation from the perfect model, resulting in imperfections such as
> pincushion or barrel distortion in rectilinear lenses.
>
> Adherence to the perfect geometric model is desirable for aesthetic purposes
> and indespensible to achieve proper alignment when stitching images.
> Hugin can calculate lens distortion parameters on the fly when optimizing
> a project, however this requires more control points and more computational
> effort than a project starting with a calibrated lens, and is prone to more
> errors.
>
> The new lens calibration tool calculates the distortion parameters of a
> lens based on an input image.  The input image must contain straight
> lines, ideally many of them at different distances from the center of the
> lens, covering at least one quadrant of the image.  The calculated
> parameters are valid for a given combination of focal distance,
> aperture (F-stop), and sensor.
>
> The values, saved into a lens profile, can be used in Hugin to achieve
> a better stitch, or on single images taken with this lens / settings
> combination to achieve a more aesthetically pleasing outcome.
>
> _Python Scripting Interface_
>
> Hugin now exposes some of its data structure and functionalities through
> a Python module.  To get started with scripting, start your Python
> interpreter and type:
>
>    >>> import hsi
>    >>> help (hsi)
>
> Standalone Python programs can access a panorama object with Hugin's
> functionality.  It is possible to develop complete command line and
> even GUI tools based on this module.
>
> The Python Scripting Interface does not work on Mac OSX yet.
>
> _Python Plugin Interface_
>
> Hugin can now run Python scripts inside the application.  In an enabled
> Hugin binary, a new "Actions" menu gives access to system-wide plugins
> distributed with Hugin.  Moreover, plugins can be written, modified,
>

Re: Python Windows (was Re: [hugin-ptx] Re: Hugin-2011.2.0_rc3 released)

2011-08-18 Thread Matthew Petroff
> > The builds are not Python enabled as I have yet to devise a method of
> > distribution that reliably works without a local Python install.
>
> Do I understand correctly that this is a purely packaging issue and that the
> code builds with Python?  If this is the case, does it make sense to wait in
> RC status until you figure out how to distribute Python with Hugin?

Correct: it is a packaging issue. I currently don't have time to work
on the issue, so the release process should more along. I can,
however, build and upload a separate binary with python support to
drop into the installation that should work if a compatible version of
python is installed on the target machine.

Matthew

-- 
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: Hugin-2011.2.0_rc3 released

2011-08-16 Thread Matthew Petroff
Hugin 2011.2.0-rc3 binaries for Windows are now available.
See sourceforge.net downloads page:
https://sourceforge.net/projects/hugin/files/hugin/hugin-2011.2_beta/

The builds are not Python enabled as I have yet to devise a method of
distribution that reliably works without a local Python install.

These builds are built my old SDK and should therefore be more stable
than the rc2 builds. I will also publish builds with my new SDK soon
for further testing.

Matthew

On Aug 14, 1:40 pm, Yuval Levy  wrote:
> Hugin-2011.2.0_rc3 RELEASE NOTES
>
> ABOUT
>
> Hugin is more than just a panorama stitcher.  A new version is available.  
> This is a release candidate and may be declared a final release in a few days.
>
> Hugin can be found at
> * SourceForge:  http://hugin.sourceforge.net/
> * Launchpad:    https://launchpad.net/hugin
>
> DOWNLOAD
>
> The 2011.2.0_rc3 source tarball can be downloaded
>
> * from SourceForge 
> athttp://sourceforge.net/projects/hugin/files/hugin/hugin-2011.2_beta/h...
>
> * from Launchpad 
> athttp://launchpad.net/hugin/2011.2/2011.2rc3/+download/hugin-2011.2.0_...
>
> This is a source code release.  For executables see below.
>
> This tarball is equivalent to rev/changeset 5491:228a678d3af6 in our Mercurial
> repository, where it is also tagged 2011.2.0_rc2
>
> Verify its SHA1SUM
> 08fa0809bcafbd2dfc5fc73b57286d9052838628  hugin-2011.2.0_rc3.tar.bz2
>
> EXECUTABLES
>
> Users communities produce executables for their respective platforms.
>
> These executables are then added to the download section on SourceForge 
> athttp://sourceforge.net/projects/hugin/files/hugin/
>
> A number of users have built recent snapshots and executables are likely to be
> announced within a few days of this tarball release.
>
> Watchhttp://groups.google.com/group/hugin-ptxfor the announcements of binary
> releases.  If you don't see a binary for your platform it has most likely not
> been produced yet.  Consider stepping up to the task.  Instructions at
>
> http://wiki.panotools.org/Development_of_Open_Source_tools#Supported_...
>
> Announce your build onhttp://groups.google.com/group/hugin-ptx
>
> SPLASH SCREEN
>
> To promote artists using Hugin the project has adopted a user-contributed
> artwork to enrich the splash screen of this release.
>
> Read more about the Fafleralp panorama and author/contributor David Haberthür
> athttp://hugin.sourceforge.net/releases/2011.2.0/
>
> CHANGES SINCE 2011.0.0
>
> Little time has passed since our last release and yet there is new major
> functionality.  Hugin has received a Python scripting interface and new
> lens calibration tool.  A critical bug affecting a significant number of
> Mac users has been fixed and many general improvements have been made.
>
> _Lens Calibration Tool_
>
> Lenses are designed to follow a perfect geometric model.  For rectilinear
> lenses, a straight line in the depicted scene should be straight in the
> picture.  This is not always the case:  most lenses have an inherent
> deviation from the perfect model, resulting in imperfections such as
> pincushion or barrel distortion in rectilinear lenses.
>
> Adherence to the perfect geometric model is desirable for aesthetic purposes
> and indespensible to achieve proper alignment when stitching images.
> Hugin can calculate lens distortion parameters on the fly when optimizing
> a project, however this requires more control points and more computational
> effort than a project starting with a calibrated lens, and is prone to more
> errors.
>
> The new lens calibration tool calculates the distortion parameters of a
> lens based on an input image.  The input image must contain straight
> lines, ideally many of them at different distances from the center of the
> lens, covering at least one quadrant of the image.  The calculated
> parameters are valid for a given combination of focal distance,
> aperture (F-stop), and sensor.
>
> The values, saved into a lens profile, can be used in Hugin to achieve
> a better stitch, or on single images taken with this lens / settings
> combination to achieve a more aesthetically pleasing outcome.
>
> _Python Scripting Interface_
>
> Hugin now exposes some of its data structure and functionalities through
> a Python module.  To get started with scripting, start your Python
> interpreter and type:
>
>    >>> import hsi
>    >>> help (hsi)
>
> Standalone Python programs can access a panorama object with Hugin's
> functionality.  It is possible to develop complete command line and
> even GUI tools based on this module.
>
> The Python Scripting Interface does not work on Mac OSX yet.
>
> _Python Plugin Interface_
>
> Hugin can now run Python scripts inside the application.  In an enabled
> Hugin binary, a new "Actions" menu gives access to system-wide plugins
> distributed with Hugin.  Moreover, plugins can be written, modified,
> customized in the user's own directory.
>
> Currently there are only a few plugins available, but we expect the
> body of available plugi

[hugin-ptx] Re: semi-automatic windows SDK build

2011-08-10 Thread Matthew Petroff
On Aug 6, 9:20 pm, Yuval Levy  wrote:
> Has anybody picked up on this?

I've tested it and can confirm that it works. When I have time, I'll
see about extending it to build the entire Windows SDK. Ideally the
version numbers should be placed into a separate file, so an "update
SDK" option can be added that fetches a list of up-to-date packages
and then updates those packages that are out of date (crude package
management).

Matthew

-- 
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: Hugin 2011.2.0_rc2 released

2011-07-23 Thread Matthew Petroff
Hugin 2011.2.0-rc2 binaries for Windows are now available.
See sourceforge.net downloads page:
https://sourceforge.net/projects/hugin/files/hugin/hugin-2011.2_beta/

The builds are not Python enabled as I have yet to devise a method of
distribution that reliably works without a local Python install.

Matthew

On Jul 20, 12:30 am, Yuval Levy  wrote:
> Hugin-2011.2.0_rc2 RELEASE NOTES
>
> ABOUT
>
> Hugin is more than just a panorama stitcher.  A new version is available.  
> This is a
> release candidate and may be declared a final release in a few days.
>
> Hugin can be found at
> * SourceForge:  http://hugin.sourceforge.net/
> * Launchpad:    https://launchpad.net/hugin
>
> DOWNLOAD
>
> The 2011.2.0_rc2 source tarball can be downloaded
>
> * from SourceForge 
> athttp://sourceforge.net/projects/hugin/files/hugin/hugin-2011.2_beta/h...
>
> * from Launchpad 
> athttp://launchpad.net/hugin/2011.2/2011.2rc2/+download/hugin-2011.2.0_...
>
> This is a source code release.  For executables see below.
>
> This tarball is equivalent to rev/changeset 5432:68a9839c47a6 in our Mercurial
> repository, where it is also tagged 2011.2.0_rc2
>
> Verify its SHA1SUM
> 10be081a00160f5a2725789c0a407d85fe53b164  hugin-2011.2.0_rc2.tar.bz2
>
> EXECUTABLES
>
> Users communities produce executables for their respective platforms.
>
> These executables are then added to the download section on SourceForge 
> athttp://sourceforge.net/projects/hugin/files/hugin/
>
> A number of users have built recent snapshots and executables are likely to be
> announced within a few days of this tarball release.
>
> Watchhttp://groups.google.com/group/hugin-ptxfor the announcements of binary
> releases.  If you don't see a binary for your platform it has most likely not
> been produced yet.  Consider stepping up to the task.  Instructions at
>
> http://wiki.panotools.org/Development_of_Open_Source_tools#Supported_...
>
> Announce your build onhttp://groups.google.com/group/hugin-ptx
>
> SPLASH SCREEN
>
> To promote artists using Hugin the project has adopted a user-contributed
> artwork to enrich the splash screen of this release.
>
> Read more about the Fafleralp panorama and author/contributor David Haberthür
> athttp://hugin.sourceforge.net/releases/2011.2.0/
>
> CHANGES SINCE 2011.0.0
>
> Little time has passed since our last release and yet there is new major
> functionality.  Hugin has received a Python scripting interface and new
> lens calibration tool.  A critical bug affecting a significant number of
> Mac users has been fixed and many general improvements have been made.
>
> _Lens Calibration Tool_
>
> Lenses are designed to follow a perfect geometric model.  For rectilinear
> lenses, a straight line in the depicted scene should be straight in the
> picture.  This is not always the case:  most lenses have an inherent
> deviation from the perfect model, resulting in imperfections such as
> pincushion or barrel distortion in rectilinear lenses.
>
> Adherence to the perfect geometric model is desirable for aesthetic purposes
> and indespensible to achieve proper alignment when stitching images.
> Hugin can calculate lens distortion parameters on the fly when optimizing
> a project, however this requires more control points and more computational
> effort than a project starting with a calibrated lens, and is prone to more
> errors.
>
> The new lens calibration tool calculates the distortion parameters of a
> lens based on an input image.  The input image must contain straight
> lines, ideally many of them at different distances from the center of the
> lens, covering at least 1/4 of the image.  The calculated parameters are
> valid for a given combination of focal distance, aperture (F-stop), and
> sensor.
>
> The values, saved into a lens profile, can be used in Hugin to achieve
> a better stitch, or on single images taken with this lens / settings
> combination to achieve a more aesthetically pleasing outcome.
>
> _Python Scripting Interface_
>
> Hugin now exposes some of its data structure and functionalities through
> a Python module.  To get started with scripting, start your Python
> interpreter and type:
>
>    >>> import hsi
>    >>> help (hsi)
>
> Standalone Python programs can access a panorama object with Hugin's
> functionality.  It is possible to develop complete command line and
> even GUI tools based on this module.
>
> _Python Plugin Interface_
>
> Hugin can now run Python scripts inside the application.  In an enabled
> Hugin binary, a new "Actions" menu gives access to system-wide plugins
> distributed with Hugin.  Moreover, plugins can be written, modified,
> customized in the user's own directory.
>
> Currently there are only a few plugins available, but we expect the
> body of available plugins and functionality to grow organically as
> the interface is being made available to the general public.
>
> _Other Improvements_
>
> * PTBatcherGUI has matured to become the default processor for
>   stitching projects.
> * ICC p

[hugin-ptx] Re: Hugin 2011.0.0 released

2011-05-31 Thread Matthew Petroff
On May 29, 3:54 pm, Yuval Levy  wrote:
> EXECUTABLES
>
> Users communities produce executables for their respective platforms.
>
> These executables are then added to the download section on SourceForge at 
> http://sourceforge.net/projects/hugin/files/hugin/

Windows binaries are now on SourceForge.

Matthew

-- 
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: Hugin-2011.0.0_rc1 released

2011-05-16 Thread Matthew Petroff
ments_
>
> * Man pages are now compressed and the generation is integrated in the CMake
>   process (Linux).
> * New Thoby projection modeling 10.5mm Nikkor fisheye lens.
> * Improved support for some keyboard shortcuts.
> * New Preferences: output file format (LDR only).
> * This release has the usual bugfixes and adds minor features.
>
> _Libraries and Build_
>
> * CMake 2.8 or newer is now required
> * Support has been added for gcc-4.6 compiler
> * Libpano13 needs to be at least 2.9.18
>
> CONTROL POINTS GENERATORS
>
> Since 2010.4 Hugin ships with its own 'Patent Free' control point generator.
> Third-party generators are still supported through the plug-in architecture.
> CPFind is the recommended control point generator and the only one endorsed
> by the Hugin project team.
>
> UPGRADING
>
> Upgrading from previous versions of Hugin should be seamless. If you do have
> problems with old settings, these can be reset in the Preferences by clicking
> 'Load defaults'.
>
> It is strongly recommended to set the default control point detector to
> Hugin's CPFind.
>
> COMPILING
>
> Users compiling from source refer to the dependencies listed 
> athttp://wiki.panotools.org/Development_of_Open_Source_tools#Dependencies
>
> and the build processes listed 
> athttp://wiki.panotools.org/Development_of_Open_Source_tools#Build_your...
>
> More information in the README and INSTALL_cmake files in the tarball.
>
> KNOWN ISSUES AND WORKAROUNDS
>
> On some versions of OSX, Hugin can't stitch the project.  Workaround:
> 1. Save the project file in Hugin
> 2. Open the project file in PTBatcherGUI (File / Add Project / select .pto
> file)
> 3. Click the run button to stitch.
> details athttps://bugs.launchpad.net/hugin/+bug/697039
>
> Plane overview is wrong if opening fast preview window the first 
> timehttps://bugs.launchpad.net/hugin/+bug/726183
>
> Panosphere Overview window seperated from the 
> contenthttps://bugs.launchpad.net/hugin/+bug/726997
>
> An updated list of issues deemed to be critical, including discussions
> and workarounds is in the issue 
> tracker.https://bugs.launchpad.net/hugin/+bugs?search=Search&field.importance...
>
> THANKS
>
> Thanks to all the contributors to this release and members of the hugin-ptx
> mailing list, too many to mention here.
>
> Hugin can be found athttp://hugin.sourceforge.net/and 
> athttps://launchpad.net/hugin
>
> CHANGELOG SINCE 2011.0beta3
>
> 2011-05-15 17:25 -0400  Yuval Levy    
> (8d1a92e73c9d
> [tip])
>
>   * src/hugin1/hugin/xrc/data/intro.htm:
>   updated intro screen
>
> 2011-05-09 22:32 -0400  Matthew Petroff    (53cd178bfb55)
>
>   * src/hugin1/hugin/PreferencesDialog.cpp:
>   Fixes display of image cache memory on Windows (bug# 761231).
>
> 2011-05-01 22:00 -0400  Yuval Levy    
> (02e1dd6fbef6)
>
>   * src/hugin1/hugin/xrc/data/CMakeLists.txt:
>   clean CMake build from last commit
>
> 2011-05-01 21:31 -0400  Yuval Levy    
> (1eb634cc4bf3)
>
>   * artwork-src/2011.0-splash/2011.0.splash.svg, artwork-
>   src/2011.0-splash/SeattleSunset.png, artwork-
>   src/2011.0-splash/readme.txt, src/hugin1/hugin/xrc/data/intro.htm:
>   new file.
>   * src/hugin1/hugin/xrc/data/about.txt: deleted file.
>   * artwork-src/2011.0-splash/2011.0.splash.svg, artwork-
>   src/2011.0-splash/SeattleSunset.png, artwork-
>   src/2011.0-splash/readme.txt, src/hugin1/hugin/AboutDialog.cpp,
>   src/hugin1/hugin/xrc/about.xrc, src/hugin1/hugin/xrc/data/about.txt,
>   src/hugin1/hugin/xrc/data/intro.htm,
>   src/hugin1/hugin/xrc/data/splash.png:
>   Added 2011.0 splash screen by Jeff Boyd
>
> 2011-05-01 14:27 -0400  Yuval Levy    
> (c6e4953cb02a)
>
>   * artwork-src/2010/splash/splash_with_artwork.svg:
>   added layers to splash screen SVG to enable separate rendering of
>   bitmaps and compensate for Inkscape softness in rendering scaled
>   bitmaps
>
> 2011-03-25 18:22 +0100  tmodes    (54dea14f9966)
>
>   * src/hugin1/base_wx/platform.cpp:
>   Reject more characters
>
> 2011-03-23 18:04 +0100  tmodes    (7574625fcfe3)
>
>   * src/hugin1/base_wx/platform.cpp:
>   Reject also double quote
>
> 2011-03-23 17:49 +0100  tmodes    (7446aafa8dbb)
>
>   * src/hugin1/base_wx/platform.cpp, src/hugin_base/algorithms/assistant
>   _makefile/AssistantMakefilelibExport.cpp, src/hugin_base/algorithms/
>   panorama_makefile/PanoramaMakefilelibExport.cpp:
>   Fixes quoting of some more characters
>
> 2011-03-23 08:02 +0100  Vaclav Cerny    (b740a5518806)
>
>   * src/translations/cs_CZ.po:
>   Updated czech translation
>
> 2011-03-23 00:29 +  Bruno Postle   

[hugin-ptx] Re: Hugin-2011.0 beta3 released

2011-03-16 Thread Matthew Petroff
Windows binaries for Hugin 2011.0.0-beta3 are now available:

32-bit (no installer):
http://sourceforge.net/projects/hugin/files/hugin/hugin-2011.0_beta/Hugin_2011.0.0-beta3_32bit_Windows.7z/download

32-bit installer:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2011.0_beta/HuginSetup_2011.0.0-beta3_32bit_Windows.exe/download

64-bit (no installer):
http://sourceforge.net/projects/hugin/files/hugin/hugin-2011.0_beta/Hugin_2011.0.0-beta3_64bit_Windows.7z/download

64-bit installer:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2011.0_beta/HuginSetup_2011.0.0-beta3_64bit_Windows.exe/download

Matthew

On Mar 13, 6:50 pm, Yuval Levy  wrote:
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
>
> Hugin-2011.0.0_beta3 RELEASE NOTES
>
> ABOUT
>
> Hugin is more than just a panorama stitcher.  A new version is available.
>
> Hugin can be found at
> * SourceForge:  http://hugin.sourceforge.net/
> * Launchpad:    https://launchpad.net/hugin
>
> SCHEDULE
>
> https://launchpad.net/hugin/2011.0
>
> The purpose of the schedule is to make the process as predictable as possible
> so that contributors can plan for their own contributions (e.g. translations
> and bug fixes) and distributors can plan for the binary builds.
>
> The schedule is just an indication.  The release will happen when it is ready.
>
> DOWNLOAD
>
> The 2010.4beta3 source tarball can be downloaded
> * from sourceforge 
> athttp://sourceforge.net/projects/hugin/files/hugin/hugin-2011.0_beta/h...
>
> * from launchpad 
> athttp://launchpad.net/hugin/2011.0/2011.0beta3/+download/hugin-2011.0
>
> This is a source code release.  For executables see below.
>
> This tarball is equivalent to rev/changeset 5114:dc55ab270363 in our Mercurial
> repository, where it is also tagged 2011.0beta3
>
> Verify its SHA1SUM
> 60f65a73c98986004ddacf5d4fee64dbab3e8166  hugin-2011.0.0_beta3.tar.bz2
>
> EXECUTABLES
>
> Users communities produce executables for their respective platforms.
>
> A number of users have built recent snapshots and executables are likely to be
> announced within a few days of this tarball release.
>
> Watchhttp://groups.google.com/group/hugin-ptxfor the announcements of binary
> releases.  If you don't see a binary for your platform it has most likely not
> been produced yet.  Consider stepping up to the task.  Instructions at
>
> http://wiki.panotools.org/Development_of_Open_Source_tools#Supported_...
>
> Announce your build onhttp://groups.google.com/group/hugin-ptx
>
> TRANSLATIONS
>
> Updated since the last beta tarball:
> * British English (Garreth Jones)
> * Dutch (Harry van der Wolf)
> * German (Carl von Einem)
> * Hungarian (Lajos Höss)
> * Italian (Cristian Marchi)
>
> New strings have been added.  Now is a good time to help update your language.
> Instructions athttp://wiki.panotools.org/Hugin_translation_guide
>
> VISUAL APPEARANCE
>
> To promote artists using Hugin the project will adopt a user-contributed
> artwork to enrich the splash screen of this release.  Selection of the
> artwork is by popular vote.
>
> Vote athttp://www.photopla.net/hugin/2011.0.artwork.html
>
> Details 
> athttp://groups.google.com/group/hugin-ptx/t/44f1834f0d18c2d8http://groups.google.com/group/hugin-ptx/t/2c24c7938309a241
>
> Voting goes on until a few days before the first release candidate.
>
> If you miss this cycle you may get an opportunity to enter your
> artwork for the next release cycle.
>
> CHANGES SINCE 2010.4.0
>
> Only two months have passed since our last release and yet there have been
> major changes.  Hugin's own control point generator CPFind has been
> significantly improved; the last project from the 2010 Google Summer of Code
> has been integrated; many general improvements have been made.
>
> _Improved Built-in Control Points Generator_
>
> CPFind's detection ability has been significantly improved, especially for
> wide angle (> FOV 65°) images, fisheye images, and rotated images.  Anecdotal
> evidence shows it to be more accurate than any other CP detector ever used
> with Hugin.  A thorough, scientific comparison against other CP detectors
> is welcome.  If you have well formed comparison results, please publish a link
> on the Hugin mailing list athttp://groups.google.com/group/hugin-ptx/
>
> _Improved Fast Preview_
>
> An Overview pane has been added to the Fast Preview window.  Users can now
> interact with the panosphere like in a virtual reality viewer in real time
> and visualize all areas of the panorama with little distortion, including
> the zenith and nadir that are typically excessively distorted in the flat
> preview.
>
> It is now possible to drag individual images or arbitrary groups of images
> on the panosphere in the fast preview.
>
> A new gray point picker has been added for visual white balance correction.
>
> _Registration of Stereo Images_
>
> align_image_stack is commonly used for the alignment of slightly misaligned
> images, e.g. for creating a High Dynamic Range image  from multiple exposu

[hugin-ptx] Re: Hugin-2011.0_beta2 released

2011-03-02 Thread Matthew Petroff
Windows binaries for Hugin 2010.1.0-beta2 are now available:
(ignore the previous links as they were incorrectly named beta1
instead of beta2)

32-bit (no installer):
http://sourceforge.net/projects/hugin/files/hugin/hugin-2011.0_beta/Hugin_2011.0.0-beta2_32bit_Windows_2.7z/download

32-bit installer:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2011.0_beta/HuginSetup_2011.0.0-beta2_32bit_Windows.exe/download

64-bit (no installer):
http://sourceforge.net/projects/hugin/files/hugin/hugin-2011.0_beta/Hugin_2011.0.0-beta2_64bit_Windows.7z/download

64-bit installer:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2011.0_beta/HuginSetup_2011.0.0-beta2_64bit_Windows.exe/download

Matthew

On Feb 27, 7:27 pm, Yuval Levy  wrote:
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
>
> Hugin-2011.0.0_beta2 RELEASE NOTES
>
> Hugin is a panorama stitcher and more.  A new version is available.
>
> A small error passed through the beta1.  Please use this tarball instead.
>
> SCHEDULE
>
> https://launchpad.net/hugin/2011.0
>
> The purpose of the schedule is to make the process as predictable as possible
> so that contributors can plan for their own contributions (e.g. translations
> and bug fixes) and distributors can plan for the binary builds.
>
> The schedule is just an indication.  The release will happen when it is ready.
>
> DOWNLOAD
>
> The 2010.4beta2 source tarball can be downloaded
> * from sourceforge 
> athttp://sourceforge.net/projects/hugin/files/hugin/hugin-2011.0_beta/h...
>
> * from launchpad 
> athttp://launchpad.net/hugin/2011.0/2011.0beta2/+download/hugin-2011.0
>
> This is a source code release.  For executables see below.
>
> This tarball is equivalent to rev/changeset 5047:f7ea2426b8de in our Mercurial
> repository, where it is also tagged 2011.0beta2
>
> Verify its SHA1SUM
> d625af818cec0e9f9dbe4d1bfed8453c56dd2d85  hugin-2011.0.0_beta2.tar.bz2
>
> EXECUTABLES
>
> Users communities produce executables for their respective platforms.
>
> A number of users have built recent snapshots and executables are likely to be
> announced within a few days of this tarball release.
>
> Watchhttp://groups.google.com/group/hugin-ptxfor the announcements of binary
> releases.  If you don't see a binary for your platform it has most likely not
> been produced yet.  Consider stepping up to the task.  Instructions at
>
> http://wiki.panotools.org/Development_of_Open_Source_tools#Supported_...
>
> Announce your build onhttp://groups.google.com/group/hugin-ptx
>
> TRANSLATIONS
>
> New strings have been added.  Now is a good time to help update your language.
> Instructions athttp://wiki.panotools.org/Hugin_translation_guide
>
> VISUAL APPEARANCE
>
> To promote artists using Hugin the project will adopt a user-contributed
> artwork to enrich the splash screen of this release.  Selection of the
> artwork is by popular vote.
>
> Vote athttp://www.photopla.net/hugin/2011.0.artwork.html
>
> Details 
> athttp://groups.google.com/group/hugin-ptx/t/44f1834f0d18c2d8http://groups.google.com/group/hugin-ptx/t/2c24c7938309a241
>
> Entries are still accepted and voting goes on until a few days before the
> first release candidate.
>
> If you miss this cycle you will get an opportunity to enter your
> artwork for the next release cycle.
>
> DEDICATION
>
> This release of Hugin is dedicated to Claudius Ptolemaeus and Marinus of Tyre.
> Details in the About menu.
>
> CHANGES SINCE 2010.4.0
>
> Only two months have passed since our last release and yet there have been
> major changes.  Hugin's own control point generator cpfind has been
> significantly improved; the last project from the 2010 Google Summer of Code
> has been integrated; many general improvements have been made.
>
> _Improved Built-in Control Points Generator_
>
> Cpfind's detection ability has been significantly improved, especially for
> wide angle (> FOV 65°) images, fisheye images, and rotated images.  Annecdotal
> evidence shows it to be more accurate than any other CP detector ever used
> with Hugin.  A thorough, scientifical comparision against other CP detectors
> is welcome.  If you have well formed comparison results, please publish a link
> on the Hugin mailing list athttp://groups.google.com/group/hugin-ptx/
>
> _Improved Fast Preview_
>
> An Overview pane has been added to the Fast Preview window.  Users can now
> interact with the panosphere like in a virtual reality viewer in real time
> and visualize all areas of the panorama with little distortion, including
> the zenith and nadir that are typically excessively distorted in the flat
> preview.
>
> It is now possible to drag individual images or arbitrary groups of images
> on the panosphere in the fast preview.
>
> A new gray point picker has been added for visual white balance correction.
>
> _Registration of Stereo Images_
>
> align_image_stack is commonly used for the alignment of slightly misaligned
> images, e.g. for creating a High Dynamic Range image  from multiple exposure

[hugin-ptx] Re: Hugin 2011.0.beta 2 from windows installer and zipfile gives a crash in Nona

2011-03-02 Thread Matthew Petroff
On Mar 1, 10:16 am, Henk Tijdink  wrote:
> Nona gives an error. Glut32.dll is missing and stitching is not
> possible.

When switching from using freeglut to glut, there was a link error. I
uploaded new binaries that should be correct.

Matthew

-- 
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: Hugin-2011.0_beta2 released

2011-02-28 Thread Matthew Petroff
Windows binaries for Hugin 2010.1.0-beta1 are now available:

32-bit (no installer):
http://sourceforge.net/projects/hugin/files/hugin/hugin-2011.0_beta/Hugin_2011.0.0-beta1_32bit_Windows.7z/download

32-bit installer:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2011.0_beta/HuginSetup_2011.0.0-beta1_32bit_Windows.exe/download

I will try to build and upload 64-bit versions sometime later this
week.

Matthew

On Feb 27, 7:27 pm, Yuval Levy  wrote:
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
>
> Hugin-2011.0.0_beta2 RELEASE NOTES
>
> Hugin is a panorama stitcher and more.  A new version is available.
>
> A small error passed through the beta1.  Please use this tarball instead.
>
> SCHEDULE
>
> https://launchpad.net/hugin/2011.0
>
> The purpose of the schedule is to make the process as predictable as possible
> so that contributors can plan for their own contributions (e.g. translations
> and bug fixes) and distributors can plan for the binary builds.
>
> The schedule is just an indication.  The release will happen when it is ready.
>
> DOWNLOAD
>
> The 2010.4beta2 source tarball can be downloaded
> * from sourceforge 
> athttp://sourceforge.net/projects/hugin/files/hugin/hugin-2011.0_beta/h...
>
> * from launchpad 
> athttp://launchpad.net/hugin/2011.0/2011.0beta2/+download/hugin-2011.0
>
> This is a source code release.  For executables see below.
>
> This tarball is equivalent to rev/changeset 5047:f7ea2426b8de in our Mercurial
> repository, where it is also tagged 2011.0beta2
>
> Verify its SHA1SUM
> d625af818cec0e9f9dbe4d1bfed8453c56dd2d85  hugin-2011.0.0_beta2.tar.bz2
>
> EXECUTABLES
>
> Users communities produce executables for their respective platforms.
>
> A number of users have built recent snapshots and executables are likely to be
> announced within a few days of this tarball release.
>
> Watchhttp://groups.google.com/group/hugin-ptxfor the announcements of binary
> releases.  If you don't see a binary for your platform it has most likely not
> been produced yet.  Consider stepping up to the task.  Instructions at
>
> http://wiki.panotools.org/Development_of_Open_Source_tools#Supported_...
>
> Announce your build onhttp://groups.google.com/group/hugin-ptx
>
> TRANSLATIONS
>
> New strings have been added.  Now is a good time to help update your language.
> Instructions athttp://wiki.panotools.org/Hugin_translation_guide
>
> VISUAL APPEARANCE
>
> To promote artists using Hugin the project will adopt a user-contributed
> artwork to enrich the splash screen of this release.  Selection of the
> artwork is by popular vote.
>
> Vote athttp://www.photopla.net/hugin/2011.0.artwork.html
>
> Details 
> athttp://groups.google.com/group/hugin-ptx/t/44f1834f0d18c2d8http://groups.google.com/group/hugin-ptx/t/2c24c7938309a241
>
> Entries are still accepted and voting goes on until a few days before the
> first release candidate.
>
> If you miss this cycle you will get an opportunity to enter your
> artwork for the next release cycle.
>
> DEDICATION
>
> This release of Hugin is dedicated to Claudius Ptolemaeus and Marinus of Tyre.
> Details in the About menu.
>
> CHANGES SINCE 2010.4.0
>
> Only two months have passed since our last release and yet there have been
> major changes.  Hugin's own control point generator cpfind has been
> significantly improved; the last project from the 2010 Google Summer of Code
> has been integrated; many general improvements have been made.
>
> _Improved Built-in Control Points Generator_
>
> Cpfind's detection ability has been significantly improved, especially for
> wide angle (> FOV 65°) images, fisheye images, and rotated images.  Annecdotal
> evidence shows it to be more accurate than any other CP detector ever used
> with Hugin.  A thorough, scientifical comparision against other CP detectors
> is welcome.  If you have well formed comparison results, please publish a link
> on the Hugin mailing list athttp://groups.google.com/group/hugin-ptx/
>
> _Improved Fast Preview_
>
> An Overview pane has been added to the Fast Preview window.  Users can now
> interact with the panosphere like in a virtual reality viewer in real time
> and visualize all areas of the panorama with little distortion, including
> the zenith and nadir that are typically excessively distorted in the flat
> preview.
>
> It is now possible to drag individual images or arbitrary groups of images
> on the panosphere in the fast preview.
>
> A new gray point picker has been added for visual white balance correction.
>
> _Registration of Stereo Images_
>
> align_image_stack is commonly used for the alignment of slightly misaligned
> images, e.g. for creating a High Dynamic Range image  from multiple exposures
> when the camera was hand held.
>
> It has been extended with additional functionality for the registration of
> stereo images.
>
> _Other Improvements_
>
> * Man pages are now compressed and the generation is integrated in the CMake
>   process (Linux).
> * New Thoby projection modeli

[hugin-ptx] Re: ANN: Hugin 2010.4.0_rc3 available

2010-12-28 Thread Matthew Petroff
Windows binaries for Hugin 2010.4.0-rc3 are now available:

32-bit (no installer):
http://sourceforge.net/projects/hugin/files/hugin/hugin-2010.4_beta/Hugin_2010.4.0-rc3_32bit_Windows.7z/download

64-bit (no installer):
http://sourceforge.net/projects/hugin/files/hugin/hugin-2010.4_beta/Hugin_2010.4.0-rc3_64bit_Windows.7z/download

32-bit Installer:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2010.4_beta/HuginSetup_2010.4.0-rc3_32bit_Windows.exe/download

64-bit Installer:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2010.4_beta/HuginSetup_2010.4.0-rc3_64bit_Windows.exe/download

Matthew

On Dec 28, 8:27 am, Yuval Levy  wrote:
> Hugin-2010.4.0_rc3 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 athttps://bugs.launchpad.net/hugin
>
> TRANSLATIONS
>
> New strings have been added.  Please help us translating the new strings into
> your language.  Instructions 
> athttp://wiki.panotools.org/Hugin_translation_guide
>
> DOWNLOAD
>
> The 2010.4.0_rc3 source tarball can be downloaded from sourceforge 
> athttp://sourceforge.net/projects/hugin/files/hugin/hugin-2010.4_beta/
>
> This is a source code release.  The project has limited resources and relies
> on
> third parties to produce binaries for the different platforms.  Instructions
> athttp://wiki.panotools.org/Development_of_Open_Source_tools.  If you have a
> build to contribute for your platform, contact the Hugin developers team 
> onhttp://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 
> onhttp://groups.google.com/group/hugin-ptx
>
> This tarball is equivalent to 4779:072e972a07ab in our Mercurial
> repository, where it is also tagged 2010.4.0_rc3
>
> Verify its SHA1SUM
>
> 47f25c0a8b97c27108e567bcd22203c87f268d07  hugin-2010.4.0_rc3.tar.bz2
>
> CHANGES SINCE 2010.4.0_rc3
>
> Bugfixes
>   * Reverted changes to Images Tab xrc. (Matthew Petroff)
>
> Translations
>   * updated French translation (Jean-Luc Coulon)
>
> 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 features improve unattended (batch) operation including:
> * The Batch Processor has been improved and can now automatically detect
> projects.
> * The Assistant is now batchable as well, so more operations can be automated
> and run unattended.
> * More robust Makefiles to drive the stitching process (see Refactored
> Makefile Library below
>
> _Improved Interaction and Functionality_
>
> Many features improve user interaction (

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

2010-12-27 Thread Matthew Petroff
On Dec 27, 11:28 pm, Yuval Levy  wrote:
> Bugfixes
>   * Added wxPanel to main window to resolve long-standing redraw issue
>     that stemmed from Windows version selectively ignoring the 
>     property. (Matthew Petroff)

It appears that I accidentally committed the wrong file. The commit
added some non-functional buttons instead of fixing the redraw issue.
I just backed out the change and committed the correct file, but the
release candidate needs to be fixed.

Matthew

-- 
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: Declaring 2010.4.0 final and moving on

2010-12-27 Thread Matthew Petroff
On Dec 27, 7:38 am, Yuval Levy  wrote:
> @Matthew (or any of the Windows builders):  can you please check if the
> removal of autopano-mockup in [0] affects the Windows installer?

The installer still works fine.

Matthew

-- 
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-23 Thread Matthew Petroff
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

Matthew

On Dec 23, 3:51 pm, 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.
>
> 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 athttps://bugs.launchpad.net/hugin
>
> TRANSLATIONS
>
> New strings have been added.  Please help us translating the new strings into
> your language.  Instructions 
> athttp://wiki.panotools.org/Hugin_translation_guide
>
> DOWNLOAD
>
> The 2010.4.0_rc1 source tarball can be downloaded from sourceforge 
> athttp://sourceforge.net/projects/hugin/files/hugin/hugin-2010.4_beta/h...
>
> This is a sourcecode release.  The project has limited resources and relies on
> third parties to produce binaries for the different platforms.  Instructions
> athttp://wiki.panotools.org/Development_of_Open_Source_tools.  If you have a
> build to contribute for your platform, contact the Hugin developers team 
> onhttp://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 
> onhttp://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 th

[hugin-ptx] Re: Nona stitcher and LZW compression

2010-12-09 Thread Matthew Petroff
On Dec 9, 6:18 pm, Yuval Levy  wrote:
> the fix is to rebuild the tiff library with LZW support.  I suspect it is a
> problem of the tiff library in the Hugin SDK.

The versions of libtiff, zlib, libpng, and libjpeg distributed with
the stable version of wxWidgets are all outdated. I've been meaning to
upgrade my build environment to use the latest stable versions of the
libraries, but I haven't had the time. I should be able to update
before the release candidate is due.

Matthew

-- 
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.0beta2 released

2010-12-06 Thread Matthew Petroff
On Dec 6, 2:00 pm, Aron H  wrote:
> > > I've downloaded and run the 64-bit installer on Win 7. If I click the
> > > 'clean registry settings' box during installation, the only control-
> > > point detector listed in the preferences tab is 'align-image-stack'.

I just fixed this in Mercurial.

> Matthew, I was also surprised you turned off the option to download
> additional CP detectors in the installer. People outside the U.S. may
> still benefit from having autopano-sift-c as an option.

It never worked properly. The only version that the installer was able
to download was the unstable version, autopano-sift-c 2.5.2. The only
copies of the stable version, autopano-sift-c 2.5.1, that are
available for download are behind landing pages and thus will not work
with the installer. If I was turning autopano-sift-c off due to the
instability, I figured I would turn the rest of the external control
point generators off as well since it simplifies the install process.

Matthew

-- 
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.0beta2 released

2010-12-04 Thread Matthew Petroff
Windows binaries for Hugin 2010.4.0-beta2 are now available:

32-bit (no installer):
http://sourceforge.net/projects/hugin/files/hugin/hugin-2010.4_beta/Hugin_2010.4.0-beta2_32bit_Windows.7z/download

64-bit (no installer):
http://sourceforge.net/projects/hugin/files/hugin/hugin-2010.4_beta/Hugin_2010.4.0-beta2_64bit_Windows.7z/download

32-bit Installer:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2010.4_beta/HuginSetup_2010.4.0-beta2_32bit_Windows.exe/download

64-bit Installer:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2010.4_beta/HuginSetup_2010.4.0-beta2_64bit_Windows.exe/download

Matthew

On Dec 3, 9:49 pm, Yuval Levy  wrote:
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
>
> Hugin-2010.4.0beta2 RELEASE NOTES
>
> Hugin is a panorama stitcher and more.  A new version is available.  This is
> probably the last beta in the current release cycle and we plan a first
> release candidate for December 17.
>
> MIGRATION TO LAUNCHPAD
>
> Tracking of bugs, patches, and features requests for Hugin 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 athttps://bugs.launchpad.net/hugin
>
> TRANSLATIONS
>
> New strings have been added.  Please help us translating the new strings into
> your language.  Instructions 
> athttp://wiki.panotools.org/Hugin_translation_guide
>
> DOWNLOAD
>
> The 2010.4beta2 source tarball can be downloaded from sourceforge 
> athttp://sourceforge.net/projects/hugin/files/hugin/hugin-2010.4_beta/h...
>
> This is a sourcecode release.  The project has limited resources and relies on
> third parties to produce binaries for the different platforms.  Instructions
> athttp://wiki.panotools.org/Development_of_Open_Source_tools.  If you have a
> build to contribute for your platform, contact the Hugin developers team 
> onhttp://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 
> onhttp://groups.google.com/group/hugin-ptx
>
> This tarball is equivalent to rev/changeset 4676:6f536b4ba7fb in our Mercurial
> repository, where it is also tagged 2010.4beta2
>
> Verify its SHA1SUM e36ca4a91c5fa662891bbfd735c648e6fd70dde0
>
> CHANGES SINCE 2010.4.0beta1
>
> Updated Translations
> * Czech (Vaclav Cerny)
> * Venezoelan Spanish (Ernesto Enrique Alvarado Viloria)
> * Spanish (Uwe Koch Kronberg)
> * Italian (Cristian Marchi)
> * German (Joachim Schneider, Thomas Modes)
> * Dutch (Harry van der Wolf)
> * French (Jean-Luc Coulon)
>
> Bugfixes
> * Fixes some compiler warnings (Thomas Modes)
> * Show message box after celeste only once (Davide Fabbri)
> * Fix build on kFreeBSD (Andreas Metzler)
> * Fix syntax error in es_VE.po (Cristian Marchi)
> * Removed extra reset to TIFF_m (Gerry Patterson)
> * Fix for outputMode errror (Gerry Patterson)
> * Fix some errors in spanish translation (Thomas Modes)
> * Italian Desktop Entries (Cristian Marchi)
> * Fix for crash when loading bogus pto file (Gerry Patterson)
> * Removed unnecessary extra call for clear EXIF display on Images Tab
>   (Gerry Patterson)
> * Added cpfind+align_image_stack setting (Thomas Modes)
> * Fix for images disappear from control points tab (Gerry Patterson)
> * Updated toc and index of compiled help file (Thomas Modes)
> * Updated help files (Thomas Modes)
> * External links inside wxHtmlWindow open in system's web browser
>   (Yuval Levy)
> * Correctly populate cp detectors with default settings if no stored
>   config found (Thomas Modes)
> * Added minimize button to preview windows (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 too

[hugin-ptx] Re: ANN: Hugin-2010.4.0beta1 source tarball released

2010-11-26 Thread Matthew Petroff
Windows binaries for Hugin 2010.4.0-beta1 are now available:

32-bit (no installer):
http://sourceforge.net/projects/hugin/files/hugin/hugin-2010.4_beta/Hugin_2010.4.0-beta1_32bit_Windows.7z/download

64-bit (no installer):
http://sourceforge.net/projects/hugin/files/hugin/hugin-2010.4_beta/Hugin_2010.4.0-beta1_64bit_Windows.7z/download

32-bit Installer:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2010.4_beta/HuginSetup_2010.4.0-beta1_32bit_Windows.exe/download

64-bit Installer:
http://sourceforge.net/projects/hugin/files/hugin/hugin-2010.4_beta/HuginSetup_2010.4.0-beta1_64bit_Windows.exe/download

Matthew

On Nov 26, 3:46 pm, Yuval Levy  wrote:
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
>
> Hugin-2010.4.0beta1 RELEASE NOTES
>
> Hugin is a panorama stitcher and more.  A new version is available.
>
> MIGRATION TO LAUNCHPAD
>
> Tracking of bugs, patches, and features requests for Hugin 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 athttps://bugs.launchpad.net/hugin
>
> TRANSLATIONS
>
> New strings have been added.  Please help us translating the new strings into
> your language.  Instructions 
> athttp://wiki.panotools.org/Hugin_translation_guide
>
> DOWNLOAD
>
> The 2010.4beta1 source tarball can be downloaded from sourceforge 
> athttp://sourceforge.net/projects/hugin/files/hugin/hugin-2010.4_beta/h...
>
> This is a sourcecode release.  The project has limited resources and relies on
> third parties to produce binaries for the different platforms.  Instructions 
> athttp://wiki.panotools.org/Development_of_Open_Source_tools.  If you have a
> build to contribute for your platform, contact the Hugin developers team 
> onhttp://groups.google.com/group/hugin-ptx.
>
> A number of users have pledged to provide binaries within a few days after
> this tarball release.  Announcements of these binaries are expected in the
> coming days onhttp://groups.google.com/group/hugin-ptx.  If you don't see a
> binary for your platform announced, it is most likely that nobody produced one
> yet.  Consider contributing one yourself.
>
> This tarball is equivalent to rev/changeset 4611:95c7c055a9d9 in our Mercurial
> repository, where it is also tagged 2010.4beta1
>
> Verify its SHA1SUM 82eab19c8d9401d7a5b9d9d835e1c8ade4b87f1a
>
> 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 features improve unattended (batch) operation including:
> * The Batch Processor has been improved and can now automatically detect
> projects.
> * The Assistant is now batchable as well, so more operations can be automated
> and run unattended.
> * More robust Makefiles to drive the stitching process (see Refactored 
> Makefile
> Library below
>
> _Improved Interaction and Functionality_
>
> Many features improve user interaction (real-time) including:
> * Masks have been extended with two new types to support stacks in the Masks
> tab.
> * Numeric Transform now supports translation (mosaic mode).
> * Photos are now loaded in a background thread.  This means that Hugin
> projects can be used immediately without waiting for all the photos to be
> read.
> * The Stitcher tab is now rearranged and with less jargon to cl

[hugin-ptx] Re: 2010.4

2010-11-25 Thread Matthew Petroff
On Nov 25, 3:18 pm, Yuval Levy  wrote:
> Who is up to produce a Windows installer? Matthew?

I'll build it.

Matthew

-- 
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: Hugin Artwork License

2010-11-25 Thread Matthew Petroff
On Nov 25, 2:43 am, Yuval Levy  wrote:
> The Hugin artwork folder now contains original work from Cristian Marchi,
> Bruno Postle, and Matthew Petroff.  Am I missing anybody?
>
> I'd like to formalize the license for the artwork.  Cristian graciously
> accepted to make it available under creative commons attribution sharealike
> (CC-BY-SA) [0] which is the equivalent of the GPL (Hugin's license) for
> artwork.
>
> Can all authors agree to this license?  If yes, I'll add the licensing text to
> the folder.  It is important to fix this prior to release.

CC-BY-SA is fine by me.

Matthew

-- 
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: Further Artwork Cleanup

2010-11-25 Thread Matthew Petroff
On Nov 24, 11:49 pm, Yuval Levy  wrote:
> I'd say:  go ahead with the prompt for save options.  A graphic designer can
> be expected to know how to save in Gimp.  And worse case, we'll tweak things
> manually.

Done.

> Committing to trunk is perfect.  DId you push?  I just pulled but nothing
> arrived here.
>
> If you can, commit/push also the resulting icons (the ones with the good
> compression settings).

Well, I forgot to push, but I did push the changes now.

Matthew

-- 
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: Further Artwork Cleanup

2010-11-24 Thread Matthew Petroff
On Nov 23, 10:33 pm, Yuval Levy  wrote:
> I would really, really, really like to have the icon creation process scripted
> / streamlined, but if it does not work, we'll have to go the manual tweaking
> way, or maybe even with Gimp like you did with the old icons.
>
> I think that Gimp can be scripted, but I have no experience with scripting
> Gimp and don't know if the specific functionality we need can be scripted.

After some frustration with png2ico/ImageMagick, I gave up and
scripted GIMP to generate the icons. Apparently, png2ico does not work
with 24-bit color or partial transparency/translucency. My new
solution is not perfect though, but the icons look much better. Since
GIMP does not allow one to set save options through script-fu, I
removed the 4-bit icons since they were actually saving as 8-bit. I'm
not sure why Microsoft recommended them in the first place as Windows
has had support for 8-bit icons since Windows 3.0 (released 1990). The
other issue is the lack of PNG (deflate) compression that leads to
almost three times the file size compared to the compressed icon. I
tried adding the larger PNG icon in with ImageMagick, but the software
doesn't appear to allow one to use deflate compression for anything
other than PNG. I could manually save new copies of the icons with PNG
compression or cause the script to prompt for save options, but I
think that would defeat the purpose of scripting the process in the
first place and is not worth it.

I wasn't sure where to commit the changes with the new 2010.4 branch
so I committed the changes to the trunk.

Matthew

-- 
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: Further Artwork Cleanup

2010-11-23 Thread Matthew Petroff
Hugin builds fine with the new artwork on Windows. However, the icons
are not quite correct. The first of two issues is the fact that
Windows XP uses the low bit-depth icons instead instead of the higher
bit-depth ones; I don't have Vista or 7, so someone else needs to test
if the PNG part of the icon works. The second issue is the lack of
multiple levels of transparency. I'll boot into Linux and try to
generate working properly functioning icons by tweaking the encoding
before testing them in Windows XP.

Matthew

On Nov 22, 2:31 pm, Yuval Levy  wrote:
> Thomas made me aware that only one druid.* image is actually used is
> druid.images.128.png on the Images Tab.
>
> Unless somebody comes up with a really compelling reason to keep it there, I
> will remove the decorative image from the Images tab to bring it in line with
> the visual aspect of all other tabs; and I will relegate the druid.* images to
> ancient history.
>
> With that complete there is almost no source image in my source tree.  Things
> are much neater and cleaner.  The Artwork is collected and well documented so
> that if a visual artist wants to contribute a new design down the road a
> degree in archeology and forensic sciences is no longer a requirement.
>
> I wish I would not have to commit *target* images into the source tree, but
> the scripted generation of target images from the SVG artwork is not multi-
> platform (in fact, I am not even sure that it runs on anything else than
> Kubuntu) and has dependencies (Inkscape, ImageMagick, icnsutils) some of which
> are better avoided on a builder machine.
>
> I am still missing feedback about where the OSX people want to have their
> icons stored (there are two places at the moment), but this can be easily
> fixed (a one liner).
>
> Also everything will need testing - I don't have access to Windows and can't
> see if the icons are all right and in the right place; and even on Linux, I
> currently don't have a completely blank system to try, so maybe the icons I
> see are from a previous install.
>
> The change should not break functionality (last famous words) but it may break
> the visual feeling of the app (and will definitely change it).
>
> Yuv
>
>  signature.asc
> < 1KViewDownload

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


  1   2   >