Kai-Uwe Behrmann | 1 Apr 2003 17:47
Picon

Re: ptopengui-0.7 bundle for wine

Hi Bruno,
can You give me a link to initially start ptopengui as .exe ?
I have not found any hint for SuSE, which runns for me, to enable exe's
calling directly.

Kai-Uwe

PS: I was reading in the wine-docus about compiling windows-source linked
directly against winelib on linux.

Am 23.12.02, 19:18 -0000 schrieb Bruno Postle:

> Juha has released a new version of ptopengui with a new interface
> for selecting parameters to optimise, plus other stuff, I don't know.
>
>     http://www.nic.fi/~juhe/ptbcbgui/
>
> I've put together another bundle of files that Works For Me™ةwith
> Wine/Linux:
>
>     http://bugbear.blackfish.org.uk/~bruno/ptopengui/
>
> --
> Bruno
>

Bruno Postle | 1 Apr 2003 18:16
X-Face

Re: ptopengui-0.7 bundle for wine

On Tue 01-Apr-2003 at 05:47:04PM +0200, Kai-Uwe Behrmann wrote:
> 
> can You give me a link to initially start ptopengui as .exe ?  I
> have not found any hint for SuSE, which runns for me, to enable
> exe's calling directly.

Basically (and I'm not a Wine expert at all), the Linux kernel needs
to know that windows executable files can be run using Wine.

On my redhat systems this is done by an init script that 'registers'
it:

    /etc/init.d/wine start

All it does is this:

    /sbin/modprobe binfmt_misc &>/dev/null
    echo ':windows:M::MZ::/usr/bin/wine:' >/proc/sys/fs/binfmt_misc/register || :
    echo ':windowsPE:M::PE::/usr/bin/wine:' >/proc/sys/fs/binfmt_misc/register || :

On a Debian system, you have to install an extra 'libwine-print'
package to get this stuff working.

So, I would look to see if there is a wine init-script you can run,
or any extra wine packages that you are missing.

Also, make sure that the .exe file is actually executable:

   chmod 755 PTOpenGui.exe

(Continue reading)

HaJo Schatz | 1 Apr 2003 18:18
Gravatar

Re: ptopengui-0.7 bundle for wine

Alternatively, I believe, you may start the WIN-exe from a shell with:

wine prog.exe

assuming your prog.exe is in the current dir.

HaJo

On Wed, 2003-04-02 at 00:16, Bruno Postle wrote:
> On Tue 01-Apr-2003 at 05:47:04PM +0200, Kai-Uwe Behrmann wrote:
> > 
> > can You give me a link to initially start ptopengui as .exe ?  I
> > have not found any hint for SuSE, which runns for me, to enable
> > exe's calling directly.
> 
> Basically (and I'm not a Wine expert at all), the Linux kernel needs
> to know that windows executable files can be run using Wine.
> 
> On my redhat systems this is done by an init script that 'registers'
> it:
> 
>     /etc/init.d/wine start
> 
> All it does is this:
> 
>     /sbin/modprobe binfmt_misc &>/dev/null
>     echo ':windows:M::MZ::/usr/bin/wine:' >/proc/sys/fs/binfmt_misc/register || :
>     echo ':windowsPE:M::PE::/usr/bin/wine:' >/proc/sys/fs/binfmt_misc/register || :
> 
> On a Debian system, you have to install an extra 'libwine-print'
(Continue reading)

Bruno Postle | 1 Apr 2003 18:47
X-Face

Re: ptopengui-0.7 bundle for wine

On Wed 02-Apr-2003 at 12:18:54AM +0800, HaJo Schatz wrote:
> 
> Alternatively, I believe, you may start the WIN-exe from a shell with:
> 
> wine prog.exe
> 
> assuming your prog.exe is in the current dir.

This doesn't work with PTOpenGUI, since it depends on two of the
PTools .exe files and it tries to run them directly (without the
wine prefix).

I tried writing wrapper scripts to fake them, but the main program
thought they finished as soon as they were run, so it never collected
the output.

--

-- 
Bruno

Kai-Uwe Behrmann | 2 Apr 2003 09:56
Picon

Re: ptopengui-0.7 bundle for wine

Hi Bruno,
many thanks for Your hint. It worked very well. I will try out ptopengui
today.
I have problems to send to You, hopfully this mail reaches You.

Kai-Uwe

Am 01.04.03, 17:16 +0100 schrieb Bruno Postle:

> On Tue 01-Apr-2003 at 05:47:04PM +0200, Kai-Uwe Behrmann wrote:
> >
> > can You give me a link to initially start ptopengui as .exe ?  I
> > have not found any hint for SuSE, which runns for me, to enable
> > exe's calling directly.
>
> Basically (and I'm not a Wine expert at all), the Linux kernel needs
> to know that windows executable files can be run using Wine.
>
> On my redhat systems this is done by an init script that 'registers'
> it:
>
>     /etc/init.d/wine start
>
> All it does is this:
>
>     /sbin/modprobe binfmt_misc &>/dev/null
>     echo ':windows:M::MZ::/usr/bin/wine:' >/proc/sys/fs/binfmt_misc/register || :
>     echo ':windowsPE:M::PE::/usr/bin/wine:' >/proc/sys/fs/binfmt_misc/register || :
>
> On a Debian system, you have to install an extra 'libwine-print'
(Continue reading)

Juha Helminen | 2 Apr 2003 13:29
Picon
Picon
Favicon

Re: ptopengui-0.7 bundle for wine

Hi,

Are there features that will work better if I change style of calling 
PTOptimizer or PTStitcher? Now GUI checks if process is not anymore 
running and then supposes that needed things are done.

Has anyone compared Qt and wxWindows. I've started to read tutorial for 
wxWindows and it seems to be usable at least I can compile and debug 
projects made with wxWindows. In MS Windows enviroment Qt can be 
compiled with specific versions of MSVC or BCC and there are no free 
compilers & debugers that can be used. Bcc 5.5 can be downloaded free 
but there is no debugger. Qt evaluation version seems to demand this bcc 
5.5 compiler to be installed (I didn't install compiler so setup didn't 
work and I haven't tested it).

I think that Qt contains much more features than wxWindows has. Also I 
think that both of them have enough features to make working GUI for 
panorama tools. Do you know what weak points wxWindows has in 
Linux/Unix? Other than there is no nice and free IDE (designer).

Juha

Kai-Uwe Behrmann wrote:

>Hi Bruno,
>many thanks for Your hint. It worked very well. I will try out ptopengui
>today.
>I have problems to send to You, hopfully this mail reaches You.
>
>Kai-Uwe
(Continue reading)

Kai-Uwe Behrmann | 2 Apr 2003 21:01
Picon

PTOpenGui

Hi Juha
I would like to help with an realtime preview to PTOpenGui. As I saw there
is many switching necessary to evaluate changed options (yaw pitch ..) .
For linux I could load only 8bit images like jpg. Do You support 16bit?
The control points work very well, very usefull preview. Just I could not
reload an project - is this wine specific?.

Kai-Uwe

------------------------------------------------------------------------
- Good informations depends on our courage to bear them.               -
- Desinformation may become very inconvenient sometimes.               -
- <http://www.indymedia.org>                                           -
------------------------------------------------------------------------

Bruno Postle | 3 Apr 2003 12:08
X-Face

Re: PTOpenGui

On Wed 02-Apr-2003 at 09:01:23PM +0200, Kai-Uwe Behrmann wrote:
> 
> For linux I could load only 8bit images like jpg. Do You support
> 16bit?

The latest Windows version uses ImageMagick for opening images, so
you should be able to open 16bit per channel tiff/png files with
that.

> The control points work very well, very usefull preview. Just I
> could not reload an project - is this wine specific?.

I don't know, I'd recommend always using a freshly started
application whenever possible anyway, or do you mean that you can't
open any saved project?

--

-- 
Bruno

Kai-Uwe Behrmann | 3 Apr 2003 15:57
Picon

Re: PTOpenGui

Sorry if I repeat this mail - the email trouble for my computer remained.
Am 03.04.03, 11:08 +0100 schrieb Bruno Postle:

> On Wed 02-Apr-2003 at 09:01:23PM +0200, Kai-Uwe Behrmann wrote:
> >
> > For linux I could load only 8bit images like jpg. Do You support
> > 16bit?
>
> The latest Windows version uses ImageMagick for opening images, so
> you should be able to open 16bit per channel tiff/png files with
> that.

This dont work for me. Must I create an link to display(/convert).exe?

>
> > The control points work very well, very usefull preview. Just I
> > could not reload an project - is this wine specific?.
>
> I don't know, I'd recommend always using a freshly started
> application whenever possible anyway, or do you mean that you can't
> open any saved project?

The later. After a new start I could not load the old project saved as
xxx.pto .

> --
> Bruno
>

Kai-Uwe
(Continue reading)

Bruno Postle | 3 Apr 2003 16:17
X-Face

Re: PTOpenGui

On Thu 03-Apr-2003 at 03:57:42PM +0200, Kai-Uwe Behrmann wrote:
> Am 03.04.03, 11:08 +0100 schrieb Bruno Postle:
> 
> > The latest Windows version uses ImageMagick for opening images,
> > so you should be able to open 16bit per channel tiff/png files
> > with that.
> 
> This dont work for me. Must I create an link to
> display(/convert).exe?

No, I think that it's trying to use the ImageMagick library.  I
haven't played with this, but you probably need some kind of
magick.dll and libtiff.dll files in your wine "windows" path.

The tarball on my server dates from before this functionality was
added, so you should also be using the latest ptopengui.exe from the
ptopengui site.

> > ..or do you mean that you can't open any saved project?
> 
> The later. After a new start I could not load the old project
> saved as xxx.pto .

That works for me, is the .pto file in the same directory as the
image files?

--

-- 
Bruno

(Continue reading)


Gmane