[hugin-ptx] PTBatcherGUI single instance

2009-03-26 Thread Thomas Modes
I changed the debug version again. 
Please test it compiled as debug. (It's using wxLogDebug to output some 
messages. I hope to identify to lines which cause the problems.)

Thomas
-- 
Pt! Schon vom neuen GMX MultiMessenger gehört? Der kann`s mit allen: 
http://www.gmx.net/de/go/multimessenger01

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

Index: src/hugin1/ptbatcher/BatchFrame.cpp
===
--- src/hugin1/ptbatcher/BatchFrame.cpp (Revision 3757)
+++ src/hugin1/ptbatcher/BatchFrame.cpp (Arbeitskopie)
@@ -184,10 +184,33 @@
 
bool change = false;
bool loaded = false;
+#ifndef PTBATCHER_USE_WXCONNECTION
+   wxString 
fileCommand(workingDir->GetName()+wxFileName::GetPathSeparator()+_T(".ptbatcher.command"));
+   bool startRemoteBatch=false;
+#endif
int projectCount = m_batch->GetProjectCount();
//we constantly poll the working dir for new files and wait a bit on 
each loop
while(!m_closeThread)
{
+#ifndef PTBATCHER_USE_WXCONNECTION
+   //check if other instance is requesting update
+   if(wxFileName::FileExists(fileCommand))
+   {
+   wxFFile aFile(fileCommand,wxT("r"));
+   wxString command;
+   aFile.ReadAll(&command);
+   aFile.Close();
+   startRemoteBatch=(command==wxT("RunBatch"));
+   m_batch->ClearBatch();
+   m_batch->LoadTemp();
+   loaded = true;
+   SetCheckboxes();
+   wxRemoveFile(fileCommand);
+   if(!startRemoteBatch)
+   RequestUserAttention();
+   SetStatusText(wxT(""));
+   };
+#endif
//check, if ptbt file was changed
wxFileName aFile(m_batch->GetLastFile());
if(!aFile.FileExists())
@@ -296,6 +319,15 @@
m_batch->SaveTemp();
}

+#ifndef PTBATCHER_USE_WXCONNECTION
+   if(startRemoteBatch)
+   {
+   startRemoteBatch = false;
+   wxCommandEvent MyEvent(wxEVT_COMMAND_TOOL_CLICKED 
,XRCID("tool_start"));
+   AddPendingEvent(MyEvent);
+   };
+#endif
+
GetThread()->Sleep(1000);
//wxFile file;

//file.Create(workingDir->GetName()+wxFileName::GetPathSeparator()+_T("krneki.txt"));
@@ -756,21 +788,48 @@
}*/
 }
 
+void BatchFrame::SetCheckboxes()
+{
+   wxConfigBase *config=wxConfigBase::Get();
+   int i;
+   i=config->Read(wxT("/BatchFrame/DeleteCheck"), 0l);
+   if(i==0)
+   XRCCTRL(*this,"cb_delete",wxCheckBox)->SetValue(false);
+   else
+   XRCCTRL(*this,"cb_delete",wxCheckBox)->SetValue(true);
+   i=config->Read(wxT("/BatchFrame/ParallelCheck"), 0l);
+   if(i==0)
+   XRCCTRL(*this,"cb_parallel",wxCheckBox)->SetValue(false);
+   else
+   XRCCTRL(*this,"cb_parallel",wxCheckBox)->SetValue(true);
+   i=config->Read(wxT("/BatchFrame/ShutdownCheck"), 0l);
+   if(i==0)
+   XRCCTRL(*this,"cb_shutdown",wxCheckBox)->SetValue(false);
+   else
+   XRCCTRL(*this,"cb_shutdown",wxCheckBox)->SetValue(true);
+   i=config->Read(wxT("/BatchFrame/OverwriteCheck"), 0l);
+   if(i==0)
+   XRCCTRL(*this,"cb_overwrite",wxCheckBox)->SetValue(false);
+   else
+   XRCCTRL(*this,"cb_overwrite",wxCheckBox)->SetValue(true);
+   i=config->Read(wxT("/BatchFrame/VerboseCheck"), 0l);
+   if(i==0)
+   XRCCTRL(*this,"cb_verbose",wxCheckBox)->SetValue(false);
+   else
+   XRCCTRL(*this,"cb_verbose",wxCheckBox)->SetValue(true);
+};
 
-
-
-
 void BatchFrame::OnCheckDelete(wxCommandEvent &event)
 {
if(event.IsChecked())
{
m_batch->deleteFiles = true;
-   wxConfigBase::Get()->Write(wxT("/BatchFrame/DeleteCheck"), 1);
+   wxConfigBase::Get()->Write(wxT("/BatchFrame/DeleteCheck"), 1l);
}
else
{
m_batch->deleteFiles = false;
-   wxConfigBase::Get()->Write(wxT("/BatchFrame/DeleteCheck"), 0);
+   wxConfigBase::Get()->Write(wxT("/BatchFrame/DeleteCheck"), 0l);

[hugin-ptx] OpenGL slow because of reloading [was: hugin-0.8.0_beta3 released]

2009-03-26 Thread Seb Perez-D

On Fri, Mar 27, 2009 at 00:50, allard  wrote:
>
> Did anybody else notice the OpenGL preview slows down sometimes
> because it reloads the images with every change you make? I've been
> seeing that off and on since the beta2 mark but it does not happen all
> the time. I'm not sure what's going on. At least in this build I was
> seeing it in the only test I did so far.

I have also noticed this (Linux x64). It has happened since the OpenGL
preview was added. It renders the OpenGL preview useless; the only
solution is to close and restart hugin. However this bug is hard to
repeat: it just "happens" after you start optimizing, adding control
points, changing the lens settings, etc.

Cheers,

Seb

--~--~-~--~~~---~--~~
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-0.8.0_beta3 released

2009-03-26 Thread allard

I built it too, and added the installer. Same URL (which is not
responding at the moment)

Did anybody else notice the OpenGL preview slows down sometimes
because it reloads the images with every change you make? I've been
seeing that off and on since the beta2 mark but it does not happen all
the time. I'm not sure what's going on. At least in this build I was
seeing it in the only test I did so far.

Allard

On Mar 26, 11:42 pm, Guido Kohlmeyer  wrote:
> A test built for windows platform is available on panotools.org:
>
>    http://hugin.panotools.org/testing/hugin/
>
> As usual I prepared only a self-extracting archive without any installer.
>
> Guido
--~--~-~--~~~---~--~~
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-0.8.0_beta3 released

2009-03-26 Thread Guido Kohlmeyer

A test built for windows platform is available on panotools.org:

   http://hugin.panotools.org/testing/hugin/

As usual I prepared only a self-extracting archive without any installer.

Guido

--~--~-~--~~~---~--~~
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: Request for help: please test

2009-03-26 Thread David J. Wallace

On Thursday 26 Mar 2009, Yuval Levy wrote:

> Thank you for uploading your artwork.
> Yuv
>
> [1] 
> [2] 
> [3] 
> [4] 
> [5] 
>

No problems registering or uploading a 90MB image. 

One thing I did notice:

Success! Thank you for uploading. Your will be notified after processing.

should be

Success! Thank you for uploading. You will be notified after processing.

Hope you get some nice submissions.

Regards,

David


--~--~-~--~~~---~--~~
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: GSoC2009

2009-03-26 Thread Irena Damsky
OH,

just saw that you replied on this in the other thread, and just wanted to
say sorry that I've doubled posted...

(hmmm.. now I'm just spamming again ha? BUT I really wanted to say I'm
sorry, please ignore me and I'll go sit alone in the dark and cry)

Irena

On Fri, Mar 27, 2009 at 12:02 AM, Irena Damsky wrote:

> Hi Yuval, Oscar et. al. :)
>
> I saw something on the mailing lists that is kinda interesting to me...
>
> in the thread "adding missing sky" it is asked if you can give a simple
> solution to completing missing data to the regions which are not actually
> there from the input pictures.
> As I've said on that thread, there are some scientific articles that deal
> with that problem i.e. there are some articles that offer to do that by
> using huge amount of graphical DB to complete the missing data from other
> images. OR there is the article that uses Poisson image editing to
> manipulate the data in such manner that almost no information can create
> huge amounts of info that will make the image look good.
>
> I actually know that implementing the Poisson completion can be fun and it
> would be great to see it as part of something that people actually use...
>
> I wonder, does something like that - image "completion" could work for a
> GSoC project with you guys?
>
> Thanks,
> Irena
>
>
>
>
> On Tue, Mar 24, 2009 at 7:59 AM, Yuval Levy  wrote:
>
>>
>> Shalom Irena,
>>
>> Irena wrote:
>> > unfortunately I cannot see the wiki of the project since it has been
>> > down for almost all day long, and cannot see what are the suggested
>> > projects Ideas.
>>
>> it is currently quite slow here too, but it loads
>> 
>>
>>
>> > are the projects that you are looking for are mainly environment (like
>> > phyton bindings etc,) and gui, or are you interested in students to
>> > implement all kinds of advanced computational algorithms?
>>
>> both. it depends on your interests and skill.
>>
>> For a starter, may I suggest that you go about building and hacking
>> hugin and related tools?
>>
>>
>> <
>> http://panospace.wordpress.com/2009/02/21/a-todo-list-for-google-summer-of-code-2009-student-applicants/
>> >
>>
>> 
>>
>> Yuv
>>
>> >>
>>
>
>
> --
> Irena Damsky
> irena.dam...@gmail.com
> you can also find me on MSN: ira_dam...@hotmail.com
>
> Smile! and the world will smile with you!
> Cry! and you'll cry alone...
>

--~--~-~--~~~---~--~~
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: GSoC2009

2009-03-26 Thread Irena Damsky
Hi Yuval, Oscar et. al. :)

I saw something on the mailing lists that is kinda interesting to me...

in the thread "adding missing sky" it is asked if you can give a simple
solution to completing missing data to the regions which are not actually
there from the input pictures.
As I've said on that thread, there are some scientific articles that deal
with that problem i.e. there are some articles that offer to do that by
using huge amount of graphical DB to complete the missing data from other
images. OR there is the article that uses Poisson image editing to
manipulate the data in such manner that almost no information can create
huge amounts of info that will make the image look good.

I actually know that implementing the Poisson completion can be fun and it
would be great to see it as part of something that people actually use...

I wonder, does something like that - image "completion" could work for a
GSoC project with you guys?

Thanks,
Irena



On Tue, Mar 24, 2009 at 7:59 AM, Yuval Levy  wrote:

>
> Shalom Irena,
>
> Irena wrote:
> > unfortunately I cannot see the wiki of the project since it has been
> > down for almost all day long, and cannot see what are the suggested
> > projects Ideas.
>
> it is currently quite slow here too, but it loads
> 
>
>
> > are the projects that you are looking for are mainly environment (like
> > phyton bindings etc,) and gui, or are you interested in students to
> > implement all kinds of advanced computational algorithms?
>
> both. it depends on your interests and skill.
>
> For a starter, may I suggest that you go about building and hacking
> hugin and related tools?
>
>
> <
> http://panospace.wordpress.com/2009/02/21/a-todo-list-for-google-summer-of-code-2009-student-applicants/
> >
>
> 
>
> Yuv
>
> >
>


-- 
Irena Damsky
irena.dam...@gmail.com
057-8165528
052-3294417
you can also find me on MSN: ira_dam...@hotmail.com

Smile! and the world will smile with you!
Cry! and you'll cry alone...

--~--~-~--~~~---~--~~
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: Request for help: please test

2009-03-26 Thread Yuval Levy

Thanks for the report, Klaus.

k...@ph.**.**.uk wrote:
> When asked for username, gave my email address (there
> was no username so far). Ok.

yes a user name is redundant if there is an email address. At the moment 
the login is handled by a standard browser window, so it asks for 
username, but I intend to put a customized improved one there.


> Tried to upload a second file: System Overload Error X9402. Please
> contact webmaster with this. INSERT INTO en_entry SET en_event=1,
> en_user=7, en_userfname="Arthurs_Seat_viewpoint_360_2006-04-17.jpg",
> en_status=1

it's one file per user and this is the ugly quick and dirty way to 
implement it (a database key). A finer mechanism with more user friendly 
feedback is planned when I have time.

Right now the pressing issue is the processing queue. Thanks to 
everybody who contributed so far, I have a varied sample of images to 
test the next steps in the process. Stay tuned.

Also thanks everybody who has given feedback. A few bugs have already 
been fixed and the application is behaving better than expected.


> Hope that helps. Sorry in case I was supposed to upload one file only.

yes, it helps a lot and no need to be sorry - tests are supposed to 
bring out unlikely situations that the analyst has not thought of.

Yuv

--~--~-~--~~~---~--~~
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: adding missing sky

2009-03-26 Thread Yuval Levy

Irena Damsky wrote:
> I cannot yet compile the code on my computer (linux
> problems, and I don't want to even try compiling on vista - I can imagine
> how much tears will be shed if I will...)

 is reported 
to work on Vista too.

and if you have problems with Linux, try using a user-friendly 
distribution such as ubuntu, very easy too:


if you want to write a complete proposal by April 3, you don't have the 
luxury to spend time on collaterals.


> is it possible to complete areas using the hugin tools?

not really, and I think this kind of functionality is better done in 
dedicated image editors like Gimp and Photoshop. Hugin is about warping 
stacking and blending existing images. If there is a hole in a mosaic, 
the best thing we can do is provide a transparency mask to make it easy 
for the dedicated application to identify the area it has to complete.

Yuv



--~--~-~--~~~---~--~~
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: adding missing sky

2009-03-26 Thread Bruno Postle

On Thu 26-Mar-2009 at 22:07 +0100, David Brodsky wrote:
>Harry van der Wolf wrote:
>
>> The best gimp plugin to generate "clouds and sky" is probably the
>> resynthesizer plugin
>> 
>
>I've tried this one with scaled picture and it gives somewhat funny
>results - parts of the tower were placed on the missing sky.

What I do is to make a rectangular selection that just includes the 
'hole' and some usable sky texture, I copy and paste this to a new 
image, run the resynthesizer on the hole, then copy and paste all 
this back into the original rectangular selection.

This is easier than it sounds.  I think there is a longstanding 
resynthesizer bug where it is supposed to get textures from a 100px 
radius around the hole, but in fact uses the entire source image.

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



[hugin-ptx] Re: adding missing sky

2009-03-26 Thread RizThon
>
> > The best gimp plugin to generate "clouds and sky" is probably the
> > resynthesizer plugin
> > 
>
> I've tried this one with scaled picture and it gives somewhat funny
> results - parts of the tower were placed on the missing sky.

Well with Liquid Rescale you can select parts that must not be modified and
parts that should be resized first...
Have a look here if you haven't heard of it
http://www.youtube.com/watch?v=b3MDVKPly50 Here it's only to make the image
smaller, but you can also make it bigger. Here's the "original" presentation
http://www.youtube.com/watch?v=6NcIJXTlugc
I tried using the Gimp plugin with one of my panorama, but Gimp just crashed
because the pano was just too big for it (all my RAM was used). So I'm quite
interested into having other solutions!

--~--~-~--~~~---~--~~
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: adding missing sky

2009-03-26 Thread David Brodsky

Hi,

Harry van der Wolf wrote:
> Your eiffel tour has a very dark sky, but if you want to add "blue sky" you
> can use gimp with the "blue sky" plugin
> 
> 
> If you want sky and clouds you can use gimp with the "blue sky and clouds"
> plugin
> 

these two won't work for me, because they work with existing sky.

> The best gimp plugin to generate "clouds and sky" is probably the
> resynthesizer plugin
> 

I've tried this one with scaled picture and it gives somewhat funny
results - parts of the tower were placed on the missing sky. But I've
got an idea - generate "missing shots" with this tool and let the
enblend do the rest.

But maybe someone will come up with easier and quicker solution.

Regards,

David Brodsky

> Hoi,
> Harry
> 
> 2009/3/26 Irena Damsky 
> 
>>
>> On Thu, Mar 26, 2009 at 7:16 PM, David Brodsky  wrote:
>>
>>> So far I've been able to complete the missing parts with
>>> simple math,
>>
>> What do you mean by simple math?
>>
>> I'm familiar with some scientific articles that use poisson editing [1] to
>> do the completion, and usually it gives great results,
>>
>> I wonder,
>> as I';ve said already, I cannot yet compile the code on my computer (linux
>> problems, and I don't want to even try compiling on vista - I can imagine
>> how much tears will be shed if I will...) is it possible to complete areas
>> using the hugin tools?
>> if not, maybe adding the Poisson alg' to the code may be a great GSoC
>> project... no?
>>
>>
>> links:
>> [1] - 
>> http://www.cs.tau.ac.il/~tommer/extra/adv-graphics/pie2003.pdf
>>
>>
>> --
>> Irena Damsky
>> irena.dam...@gmail.com
>> you can also find me on MSN: ira_dam...@hotmail.com
>>
>> Smile! and the world will smile with you!
>> Cry! and you'll cry alone...
>>
> 
> > 
> 


--~--~-~--~~~---~--~~
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: Mellow Yellow, Orange and Brown

2009-03-26 Thread Dedalus

Dale wrote:
> However, my problem is not stitching it together, as I can do this by hand.  
> My problem with Hugin and this batch of images is that it turns the images 
> every which way upon loading into Hugin.  I have several groups of photos of 
> various subjects where the same issue arises.  It only happens on photographs 
> that have a predominate yellow, orange or brown color.  

The problem isn't the color. After loading the batch of images and
automatically generating control points and aligning these pictures -
there are an awful lot of bad and plain false control points. I reran
the batch of images again tonight - not using your projectfile.
Careful inspection shows a row of images of a carpet with a recurring
pattern on the floor. The autopano-sift software does generate a lot
of control points connecting pairs of points between two images with
the same recurring pattern of the carpet, some of them ok, but most of
them plain false. There is no option but manually removing generated
control points between non overlapping images - this is by visual
inspection.

How come all these images end up turned upside down in the control
point tab? Having so many false control points, the optimizer
generated a false alignment, believing that turning some pictures
upside down correctly minimizes average distance between control
points. After manually removing all bad and false control points and
reoptimizing all images will automagically be turned the correct way
up in the control points tab.

The table of control points is a handy device in the process, allowing
to sort control points on distance, selecting say all points with
distance greater than 1000 and removing them all at once.

So, it has nothing to do with colors but all to do with recurring
patterns between images that can generate false pairs of control
points because the local environment of those points do look so very
much similar.

An improvement in the autopano software would be to restrict search
for control point pairs between predetermined pairs of images. That
would however replace a post generation manual step with a pre
generation manual step.

Dedalus
--~--~-~--~~~---~--~~
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: adding missing sky

2009-03-26 Thread David Brodsky

Hi,

Irena Damsky wrote:
> On Thu, Mar 26, 2009 at 7:16 PM, David Brodsky  wrote:
> 
>> So far I've been able to complete the missing parts with
>> simple math,
> 
> 
> What do you mean by simple math?

weighted average of 2 pixels :-)

> I'm familiar with some scientific articles that use poisson editing [1] to
> do the completion, and usually it gives great results,

Yeah, it looks great, but I need to do it automagically on very large image.

> I wonder,
> as I';ve said already, I cannot yet compile the code on my computer (linux
> problems, and I don't want to even try compiling on vista - I can imagine
> how much tears will be shed if I will...) is it possible to complete areas
> using the hugin tools?
> if not, maybe adding the Poisson alg' to the code may be a great GSoC
> project... no?
> 
> 
> links:
> [1] - http://www.cs.tau.ac.il/~tommer/extra/adv-graphics/pie2003.pdf
> 
> 


--~--~-~--~~~---~--~~
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: adding missing sky

2009-03-26 Thread Harry van der Wolf
Your eiffel tour has a very dark sky, but if you want to add "blue sky" you
can use gimp with the "blue sky" plugin


If you want sky and clouds you can use gimp with the "blue sky and clouds"
plugin


The best gimp plugin to generate "clouds and sky" is probably the
resynthesizer plugin


Hoi,
Harry

2009/3/26 Irena Damsky 

>
>
> On Thu, Mar 26, 2009 at 7:16 PM, David Brodsky  wrote:
>
>> So far I've been able to complete the missing parts with
>> simple math,
>
>
> What do you mean by simple math?
>
> I'm familiar with some scientific articles that use poisson editing [1] to
> do the completion, and usually it gives great results,
>
> I wonder,
> as I';ve said already, I cannot yet compile the code on my computer (linux
> problems, and I don't want to even try compiling on vista - I can imagine
> how much tears will be shed if I will...) is it possible to complete areas
> using the hugin tools?
> if not, maybe adding the Poisson alg' to the code may be a great GSoC
> project... no?
>
>
> links:
> [1] - 
> http://www.cs.tau.ac.il/~tommer/extra/adv-graphics/pie2003.pdf
>
>
> --
> Irena Damsky
> irena.dam...@gmail.com
> you can also find me on MSN: ira_dam...@hotmail.com
>
> Smile! and the world will smile with you!
> Cry! and you'll cry alone...
>
> >
>

--~--~-~--~~~---~--~~
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: adding missing sky

2009-03-26 Thread David Brodsky

Hi,

RizThon wrote:
> How did you proceed to complete the missing parts?
> I tried to use Liquid Rescale once http://liblqr.wikidot.com/ using the Gimp
> plugin http://liquidrescale.wikidot.com/

missing pixels were computed by weighted average from neighbour pixels
with non-zero alpha. It is quite fast for image 10250 px wide and 22850
px high.

> On Thu, Mar 26, 2009 at 18:16, David Brodsky  wrote:
> 
>> Hi all,
>>
>> I've taken some photos of the Eiffel tower and created one big image from
>> them [1]. As you can see I don't have all the images I need to make it one
>> nice big picture. So far I've been able to complete the missing parts with
>> simple math, but I don't find the result [2] very satisfactory.
>>
>> Do you have any ideas how to make it better?
>>
>> Regards,
>>
>> David Brodsky
>>
>> [1] http://trekie.sinister.cz/fotky/eiffel3.jpg
>> [2] http://trekie.sinister.cz/fotky/eiffel4.jpg

--~--~-~--~~~---~--~~
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: Request for help: please test

2009-03-26 Thread Peter Gawthrop

Hi Yuv,

  image uploaded and details completed -- no probs.

  Peter.

From: Yuval Levy 
Subject: [hugin-ptx] Request for help: please test
Date: Thu, 26 Mar 2009 05:46:52 -0400

> 
> Hi all,
> 
> as readers of this mailing list know, we're organizing an exhibit of 
> "Hugin pictures" May 6 to 9 in Montréal during Libre Graphics Meeting [1].
> 
> The website is now up and running [2]. I would appreciate if *you* could 
> create an account [3] and upload [4] a large (currently the limit is 
> 300M) image. tiff/jpg/png accepted. Please be patient and tolerant. 
> Chances are that you will find some bugs. To report them, just click on 
> the Contact link in the main navigation and fill the form, thank you.
> 
> The plans for the exhibition are shaping up. It will have three parts:
> - the printed artwork at LGM
> - the gallery on the web
> - a special section for immersive cylinders: we're working out the 
> details of where to put the Cyclorama [5]. All parties involved are 
> eager to make it happen. On the Cyclo we're going to show a slideshow of 
> your images (360° HFOV, images of 7200x600px, further details will 
> follow) as well as an immersive movie experience and 3D immersive anaglyphs.
> 
> Thank you for uploading your artwork.
> Yuv
> 
> [1] 
> [2] 
> [3] 
> [4] 
> [5] 
> 
> 
> 
> > 
> 
> __
> This email has been scanned by Netintelligence
> http://www.netintelligence.com/email

--~--~-~--~~~---~--~~
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: adding missing sky

2009-03-26 Thread Irena Damsky
On Thu, Mar 26, 2009 at 7:16 PM, David Brodsky  wrote:

> So far I've been able to complete the missing parts with
> simple math,


What do you mean by simple math?

I'm familiar with some scientific articles that use poisson editing [1] to
do the completion, and usually it gives great results,

I wonder,
as I';ve said already, I cannot yet compile the code on my computer (linux
problems, and I don't want to even try compiling on vista - I can imagine
how much tears will be shed if I will...) is it possible to complete areas
using the hugin tools?
if not, maybe adding the Poisson alg' to the code may be a great GSoC
project... no?


links:
[1] - http://www.cs.tau.ac.il/~tommer/extra/adv-graphics/pie2003.pdf


-- 
Irena Damsky
irena.dam...@gmail.com
you can also find me on MSN: ira_dam...@hotmail.com

Smile! and the world will smile with you!
Cry! and you'll cry alone...

--~--~-~--~~~---~--~~
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: adding missing sky

2009-03-26 Thread RizThon
How did you proceed to complete the missing parts?
I tried to use Liquid Rescale once http://liblqr.wikidot.com/ using the Gimp
plugin http://liquidrescale.wikidot.com/

On Thu, Mar 26, 2009 at 18:16, David Brodsky  wrote:

>
> Hi all,
>
> I've taken some photos of the Eiffel tower and created one big image from
> them [1]. As you can see I don't have all the images I need to make it one
> nice big picture. So far I've been able to complete the missing parts with
> simple math, but I don't find the result [2] very satisfactory.
>
> Do you have any ideas how to make it better?
>
> Regards,
>
> David Brodsky
>
> [1] http://trekie.sinister.cz/fotky/eiffel3.jpg
> [2] http://trekie.sinister.cz/fotky/eiffel4.jpg
>
> >
>

--~--~-~--~~~---~--~~
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] adding missing sky

2009-03-26 Thread David Brodsky

Hi all,

I've taken some photos of the Eiffel tower and created one big image from 
them [1]. As you can see I don't have all the images I need to make it one 
nice big picture. So far I've been able to complete the missing parts with 
simple math, but I don't find the result [2] very satisfactory.

Do you have any ideas how to make it better?

Regards,

David Brodsky

[1] http://trekie.sinister.cz/fotky/eiffel3.jpg
[2] http://trekie.sinister.cz/fotky/eiffel4.jpg

--~--~-~--~~~---~--~~
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: PTBatcherGUI single instance

2009-03-26 Thread Lukáš Jirkovský

Crashes with the simple patch. It seems that there are two different crashes:

First one:
The program 'PTBatcherGUI' received an X Window System error.
This probably reflects a bug in the program.
The error was 'BadIDChoice (invalid resource ID chosen for this connection)'.
  (Details: serial 10126 error_code 14 request_code 1 minor_code 0)
  (Note to programmers: normally, X errors are reported asynchronously;
   that is, you will receive the error a while after causing it.
   To debug your program, run it with the --sync command line
   option to change this behavior. You can then get a meaningful
   backtrace from your debugger if you break on the gdk_x_error() function.)

after using --sync:

PTBatcherGUI: xcb_io.c:176: process_responses: Assertion `!(req &&
current_request && !(((long) (req->sequence) - (long)
(current_request)) <= 0))' failed.
Aborted

The other one:
PTBatcherGUI: Fatal IO error 11 (Resource temporarily unavailable) on
X server :0.0.

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



[hugin-ptx] Re: Request for help: please test

2009-03-26 Thread kf

Hi Yuv,

Hope it is ok to give you feedback on my testing here. Files are
cylindrical 360degrees JPEGs.
Registering ok. When asked for username, gave my email address (there
was no username so far). Ok.

Uploaded one file. For whatever reason, saw the file selection window
twice, but could have been finger trouble from my side.

Tried to upload a second file: System Overload Error X9402. Please
contact webmaster with this. INSERT INTO en_entry SET en_event=1,
en_user=7, en_userfname="Arthurs_Seat_viewpoint_360_2006-04-17.jpg",
en_status=1

Retry of 2nd image. Error message again.System Overload Error X9402.
Please contact webmaster with this. INSERT INTO en_entry SET
en_event=1, en_user=7,
en_userfname="Arthurs_Seat_viewpoint_360_2006-04-17.jpg", en_status=1.

Hope that helps. Sorry in case I was supposed to upload one file only.

Cheers

Klaus

--~--~-~--~~~---~--~~
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] Request for help: please test

2009-03-26 Thread Yuval Levy

Hi all,

as readers of this mailing list know, we're organizing an exhibit of 
"Hugin pictures" May 6 to 9 in Montréal during Libre Graphics Meeting [1].

The website is now up and running [2]. I would appreciate if *you* could 
create an account [3] and upload [4] a large (currently the limit is 
300M) image. tiff/jpg/png accepted. Please be patient and tolerant. 
Chances are that you will find some bugs. To report them, just click on 
the Contact link in the main navigation and fill the form, thank you.

The plans for the exhibition are shaping up. It will have three parts:
- the printed artwork at LGM
- the gallery on the web
- a special section for immersive cylinders: we're working out the 
details of where to put the Cyclorama [5]. All parties involved are 
eager to make it happen. On the Cyclo we're going to show a slideshow of 
your images (360° HFOV, images of 7200x600px, further details will 
follow) as well as an immersive movie experience and 3D immersive anaglyphs.

Thank you for uploading your artwork.
Yuv

[1] 
[2] 
[3] 
[4] 
[5] 



--~--~-~--~~~---~--~~
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-svn on sourceforge not accessible

2009-03-26 Thread Kornel Benko
Am 2009-03-26 schrieb smb@googlemail.com:
> 
> Using TortoiseSVN on Windows, this works okay for me:
> https://hugin.svn.sourceforge.net/svnroot/hugin/hugin/trunk
> 
> Have just been able to synch to latest version, 3759.

Thanks, I see now what happend.

I compiled a new version of svn, but some parts may be still missing.

Kornel

-- 
Kornel Benko
kornel.be...@berlin.de


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


[hugin-ptx] Re: hugin-0.8.0_beta2 released

2009-03-26 Thread Oskar Sander

I'd just want to say that I much appreciate your publishing of the
Windows installer. It works a charm on XP SP3(default settings
ticked,   what is missing in the implementation?)


Cheers
/O

2009/3/25 Dedalus :
>
> An installer for Windows Vista (XP not tested) based on SVN 3757 has
> been build and is available for download from:
> https://adhuikeshoven.pbwiki.com/Hugin-installer-for-Windows-Vista
>
> Dedalus
> >
>



-- 
/O

--~--~-~--~~~---~--~~
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-svn on sourceforge not accessible

2009-03-26 Thread smb . nyx

Using TortoiseSVN on Windows, this works okay for me:
https://hugin.svn.sourceforge.net/svnroot/hugin/hugin/trunk

Have just been able to synch to latest version, 3759.

Regards
Stephen


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



[hugin-ptx] hugin-svn on sourceforge not accessible

2009-03-26 Thread Kornel Benko
Hi,
has something changed with svn? Latelly I get

#svn up
svn: Unrecognized URL scheme for 
'https://hugin.svn.sourceforge.net/svnroot/hugin/hugin/trunk'
Exit 1


Even if I try a clean checkout (as stated  in 
http://sourceforge.net/scm/?type=svn&group_id=77506)
#  svn co https://hugin.svn.sourceforge.net/svnroot/hugin hugin1
svn: Unrecognized URL scheme for 
'https://hugin.svn.sourceforge.net/svnroot/hugin'
Exit 1

Kornel
-- 
Kornel Benko
kornel.be...@berlin.de


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