right button
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2261
Image::Button 0.53
Image::Button is a base class for building PNG buttons using GD. more>>
Image::Button is a base class for building PNG buttons using GD.
SYNOPSIS
use Image::Button::Rect;
my $b1 = new Image::Button::Rect(text => text b1,
font => newsgotn.ttf,
fontsize => 20,
file => b1.png);
# $b2 is like $b1, but with different text and going to another file
my $b2 = $b1->copy(text => text b2,
file => b2.png);
$b1->print;
$b2->print;
Image::Button builds simple PNG buttons of the type you would use in an on-line application. It provides facilities to build several of them, possibly related (same width and/or height). Modules to create different types of buttons can be easily integrated. The buttons it can create so far would not cause a graphic designer to jump from his chair, drooling with excitement. But he wouldnt fall from his chair in disgust either (I hope).
<<lessSYNOPSIS
use Image::Button::Rect;
my $b1 = new Image::Button::Rect(text => text b1,
font => newsgotn.ttf,
fontsize => 20,
file => b1.png);
# $b2 is like $b1, but with different text and going to another file
my $b2 = $b1->copy(text => text b2,
file => b2.png);
$b1->print;
$b2->print;
Image::Button builds simple PNG buttons of the type you would use in an on-line application. It provides facilities to build several of them, possibly related (same width and/or height). Modules to create different types of buttons can be easily integrated. The buttons it can create so far would not cause a graphic designer to jump from his chair, drooling with excitement. But he wouldnt fall from his chair in disgust either (I hope).
Download (0.008MB)
Added: 2006-08-01 License: Perl Artistic License Price:
1181 downloads
Prima::Buttons 1.20
Prima::Buttons is a button widgets and grouping widgets. more>>
Prima::Buttons is a button widgets and grouping widgets.
SYNOPSIS
use Prima qw(Application Buttons StdBitmap);
my $window = Prima::MainWindow-> create;
Prima::Button-> new(
owner => $window,
text => Simple button,
pack => {},
);
$window-> insert( Prima::SpeedButton ,
pack => {},
image => Prima::StdBitmap::icon(0),
);
run Prima;
Prima::Buttons provides two separate sets of classes: the button widgets and the grouping widgets. The button widgets include push buttons, check-boxes and radio buttons. The grouping widgets are designed for usage as containers for the check-boxes and radio buttons, however, any widget can be inserted in a grouping widget.
The module provides the following classes:
*Prima::AbstractButton ( derived from Prima::Widget and Prima::MouseScroller )
Prima::Button
Prima::SpeedButton
*Prima::Cluster
Prima::CheckBox
Prima::Radio
Prima::GroupBox ( derived from Prima::Widget )
Prima::RadioGroup ( obsolete )
Prima::CheckBoxGroup ( obsolete )
Note: * - marked classes are abstract.
<<lessSYNOPSIS
use Prima qw(Application Buttons StdBitmap);
my $window = Prima::MainWindow-> create;
Prima::Button-> new(
owner => $window,
text => Simple button,
pack => {},
);
$window-> insert( Prima::SpeedButton ,
pack => {},
image => Prima::StdBitmap::icon(0),
);
run Prima;
Prima::Buttons provides two separate sets of classes: the button widgets and the grouping widgets. The button widgets include push buttons, check-boxes and radio buttons. The grouping widgets are designed for usage as containers for the check-boxes and radio buttons, however, any widget can be inserted in a grouping widget.
The module provides the following classes:
*Prima::AbstractButton ( derived from Prima::Widget and Prima::MouseScroller )
Prima::Button
Prima::SpeedButton
*Prima::Cluster
Prima::CheckBox
Prima::Radio
Prima::GroupBox ( derived from Prima::Widget )
Prima::RadioGroup ( obsolete )
Prima::CheckBoxGroup ( obsolete )
Note: * - marked classes are abstract.
Download (1.4MB)
Added: 2006-07-31 License: Perl Artistic License Price:
1184 downloads
wmbutton 0.5
Wmbutton is a 64x64 pixel application that displays nine buttons. more>>
Wmbuttons is simple little application that I wrote (and am in the process of updating). wmbutton is specifically designed to be docked in Windowmaker, or Swallowed by wharf in Afterstep. If youre not familiar with these windowmanagers, check them out in the links section. Of course, it should work in just about any window manager.
Wmbutton is a 64x64 pixel application that displays nine buttons. Each of these buttons can be configured via a configuration file to run just about any application youd like to. Basically, if you can type it in a shell command, wmbutton can run it. The graphics of in each button may, of course, be changed as well.
USAGE:
wmbutton [-g geom] [-d dpy] [-f cfgfile] [-b btnfile] [-F < font >]
[-v] [-s] [-n]
wmbutton Ver 0 Rel 5
-g < geometry > Window Geometry - ie: 64x64+10+10
-d < display > Display - ie: 127.0.0.1:0.0
-f < filename > Full path to configuration file.
-b < filename > Full path to button xpm.
-F < font > Custom tooltip font (e.g. -b&h-lucidatypewriter-medium-*-*-*-12-*)
-v Verbose Mode.
-h Help. This message.
-m Disable Middle Mouse functionality.
-s Swap tooltip colors.
-n Turn off tooltips.
Left mouse button:
Selects the application to launch, numbered 1 through 9
Middle mouse button: (unless disabled (-m))
Selects the application to launch, numbered 11 through 19
Right mouse button:
Selects the application to launch, numbered 21 through 29
Enhancements:
- Added Modifications submitted by Ralf Horstmann.
- Load different pixmaps at start-up time, rather than having to compile them in. This also makes it much easier to run multiple copies.
- Added Modifications submitted by Michael Cohrs.
- Added Tool-Tips
- Updated default buttons.xpm graphics
- General Code clean-up, including export must functions to seperate C file, to reduce clutter.
<<lessWmbutton is a 64x64 pixel application that displays nine buttons. Each of these buttons can be configured via a configuration file to run just about any application youd like to. Basically, if you can type it in a shell command, wmbutton can run it. The graphics of in each button may, of course, be changed as well.
USAGE:
wmbutton [-g geom] [-d dpy] [-f cfgfile] [-b btnfile] [-F < font >]
[-v] [-s] [-n]
wmbutton Ver 0 Rel 5
-g < geometry > Window Geometry - ie: 64x64+10+10
-d < display > Display - ie: 127.0.0.1:0.0
-f < filename > Full path to configuration file.
-b < filename > Full path to button xpm.
-F < font > Custom tooltip font (e.g. -b&h-lucidatypewriter-medium-*-*-*-12-*)
-v Verbose Mode.
-h Help. This message.
-m Disable Middle Mouse functionality.
-s Swap tooltip colors.
-n Turn off tooltips.
Left mouse button:
Selects the application to launch, numbered 1 through 9
Middle mouse button: (unless disabled (-m))
Selects the application to launch, numbered 11 through 19
Right mouse button:
Selects the application to launch, numbered 21 through 29
Enhancements:
- Added Modifications submitted by Ralf Horstmann.
- Load different pixmaps at start-up time, rather than having to compile them in. This also makes it much easier to run multiple copies.
- Added Modifications submitted by Michael Cohrs.
- Added Tool-Tips
- Updated default buttons.xpm graphics
- General Code clean-up, including export must functions to seperate C file, to reduce clutter.
Download (0.051MB)
Added: 2006-10-25 License: GPL (GNU General Public License) Price:
1094 downloads
Close Button 0.3.5
Close Button is an extension which adds a Close Tab (or Window, or Browser) button to the toolbar. more>>
Close Button is an extension which adds a Close Tab (or Window, or Browser) button to the toolbar.
This is especially handy if you put your tab bar at the bottom but want a Close Tab button in the top right, where youd find it in most well behaved Windows programs with child windows.
Once installed, just right click on the toolbar, select "Customize...", and drag the button wherever you like. The buttons appearance is determined by the installed theme, and its behavior can be configured to close the current tab, window, or Firefox session.
<<lessThis is especially handy if you put your tab bar at the bottom but want a Close Tab button in the top right, where youd find it in most well behaved Windows programs with child windows.
Once installed, just right click on the toolbar, select "Customize...", and drag the button wherever you like. The buttons appearance is determined by the installed theme, and its behavior can be configured to close the current tab, window, or Firefox session.
Download (0.004MB)
Added: 2007-04-12 License: MPL (Mozilla Public License) Price:
926 downloads
Personal Toolbar Button 1.01
Personal Toolbar Button is an extension which adds a button to toggle on/off the Personal Toolbar toolbar in Firefox. more>>
Personal Toolbar Button is an extension which adds a button to toggle on/off the Personal Toolbar toolbar in Firefox.
Adds a button to toggle on/off the Personal Toolbar toolbar in Firefox. This way you can toggle off your bookmarks for more screen real estate when browsing, and easily toggle it back on when you want to go browse another site. Dedicated to public domain, since it is such a simple extension.
Updated version should resolve most icon/theme problems. It introduces a new bug: the icon is ugly! ;-) If anyone can help, Id appreciate that!
If you have any problems, post a comment or message me on aim J C 2 A S T R O (no spaces) and Ill try to help.
Well, the button worked fine. Made the bookmarks toolbar appear and disappear. Unfortunately, the toolbar was blank the entire time. Uninstalling the extension has not helped. Nothing on the toolbar and it will not accept drag and drop. Very annoying.
Im really sorry you had that problem. It works for me almost perfectly. Data loss is a very serious issue. I dont know how my little extension could cause that. It uses a simple three-line function to toggle a toolbar, and it modifies only one property on the DOM.
I cant replicate your browsers behavior at all. What is your browers configuration? Your problem could be unrelated to my little extension. Which extensions and which version of Firefox do you run?
Found the button :) Its blank with no icon, but works fine.
<<lessAdds a button to toggle on/off the Personal Toolbar toolbar in Firefox. This way you can toggle off your bookmarks for more screen real estate when browsing, and easily toggle it back on when you want to go browse another site. Dedicated to public domain, since it is such a simple extension.
Updated version should resolve most icon/theme problems. It introduces a new bug: the icon is ugly! ;-) If anyone can help, Id appreciate that!
If you have any problems, post a comment or message me on aim J C 2 A S T R O (no spaces) and Ill try to help.
Well, the button worked fine. Made the bookmarks toolbar appear and disappear. Unfortunately, the toolbar was blank the entire time. Uninstalling the extension has not helped. Nothing on the toolbar and it will not accept drag and drop. Very annoying.
Im really sorry you had that problem. It works for me almost perfectly. Data loss is a very serious issue. I dont know how my little extension could cause that. It uses a simple three-line function to toggle a toolbar, and it modifies only one property on the DOM.
I cant replicate your browsers behavior at all. What is your browers configuration? Your problem could be unrelated to my little extension. Which extensions and which version of Firefox do you run?
Found the button :) Its blank with no icon, but works fine.
Download (0.003MB)
Added: 2007-04-07 License: MPL (Mozilla Public License) Price:
934 downloads
No Tab Close Button 0.2.1
No Tab Close Button is an extension which removes the close buttons on the tabs. more>>
No Tab Close Button is an extension which removes the close buttons on the tabs.
Removes the close buttons on the tabs (Firefox 2)
Removes the button on the right (Firefox 1.x).
For people that like to close their tabs with a middle click.
<<lessRemoves the close buttons on the tabs (Firefox 2)
Removes the button on the right (Firefox 1.x).
For people that like to close their tabs with a middle click.
Download (0.001MB)
Added: 2007-04-12 License: MPL (Mozilla Public License) Price:
928 downloads
Amazon.co.uk Button 0.1
Amazon.co.uk Button provides a button which allows you to access Amazon services. more>>
Amazon.co.uk Button provides a button which allows you to access Amazon services.
This extension creates a button which allows you to access
-all amazon.co.uk-stores
-your wishlist
-your account
-amazon.co.uk loginpage
-Shopping Basket
straight from the amazon.co.uk button.
<<lessThis extension creates a button which allows you to access
-all amazon.co.uk-stores
-your wishlist
-your account
-amazon.co.uk loginpage
-Shopping Basket
straight from the amazon.co.uk button.
Download (0.013MB)
Added: 2007-04-05 License: MPL (Mozilla Public License) Price:
933 downloads
New Tab Button on Tab Bar 2.0
New Tab Button on Tab Bar is an extension which adds a new tab button to the tab bar. more>>
New Tab Button on Tab Bar is an extension which adds a new tab button to the tab bar.
This extension adds a new tab button to the tab bar. You do not need an extension to add a new tab button to the *toolbar*, but if you want a new tab button on the *tab bar* youll need this extension.
This is a simple, single-feature extension, -- there are no options to configure!
Theme authors:
Please see this extensions homepage for information on how to make your theme support the new tab button.
<<lessThis extension adds a new tab button to the tab bar. You do not need an extension to add a new tab button to the *toolbar*, but if you want a new tab button on the *tab bar* youll need this extension.
This is a simple, single-feature extension, -- there are no options to configure!
Theme authors:
Please see this extensions homepage for information on how to make your theme support the new tab button.
Download (0.009MB)
Added: 2007-04-26 License: MPL (Mozilla Public License) Price:
916 downloads
Sidebar on Right 0.3
Sidebar on Right is an extension which moves the sidebar to the right side of the browser. more>>
Sidebar on Right is an extension which moves the sidebar to the right side of the browser.
<<less Download (0.003MB)
Added: 2007-04-18 License: MPL (Mozilla Public License) Price:
923 downloads
Cookie Button in the status bar0.8.9
Cookie Button in the status bar is a Firefox button for easy access to cookie permissions in the status bar. more>>
Cookie Button in the status bar is a Firefox button for easy access to cookie permissions in the status bar. For those who have been asking for cookie button in the status bar.
Some features are optional. See Tools -> Extensions/Addons, select Cookie button in the status bar, press Options/Preference Button.
Please post more info about the context menu bug to http://bugzilla.mozdev.org/show_bug.cgi?id=15011
<<lessSome features are optional. See Tools -> Extensions/Addons, select Cookie button in the status bar, press Options/Preference Button.
Please post more info about the context menu bug to http://bugzilla.mozdev.org/show_bug.cgi?id=15011
Download (0.025MB)
Added: 2007-07-28 License: MPL (Mozilla Public License) Price:
820 downloads
Gish It! 1.2
Gish It! is a Firefox extension to create a GishPuppy Disposable Email Address via right-click or Tools menu. more>>
Gish It! is a Firefox extension to create a GishPuppy Disposable Email Address via right-click or Tools menu.
<<less Download (0.005MB)
Added: 2007-07-20 License: MPL (Mozilla Public License) Price:
840 downloads
Options Toolbar Button 0.4 for Firefox
Options Toolbar Button provides a button which opens the options menu. more>>
Options Toolbar Button provides a button which opens the options menu.
This is a small devision of Toolbar Buttons and one of the most popular on my web site.
This one adds a toolbar button to open Options.
You must add the button to your toolbar by right clicking the toolbar selecting "customize" and dragging this new button to the toolbar.
<<lessThis is a small devision of Toolbar Buttons and one of the most popular on my web site.
This one adds a toolbar button to open Options.
You must add the button to your toolbar by right clicking the toolbar selecting "customize" and dragging this new button to the toolbar.
Download (0.007MB)
Added: 2007-07-11 License: MPL (Mozilla Public License) Price:
839 downloads
Right Encoding 0.2.2 for Firefox
Right Encoding allows you to select the Character Encoding from the context menu. more>>
Right Encoding allows you to select the Character Encoding from the context menu.
Adds the Character Encoding menu to the context menu.
Main features:
- Allows you to set the character encoding of a whole page.
- Allows you to set the character encoding of a certain frame.
Supports:
- Firefox 0.9 - 2.0.0.*
- Thunderbird 1.0 - 1.5.0.*
Enhancements:
- Supports Firefox 2.0.0.*
<<lessAdds the Character Encoding menu to the context menu.
Main features:
- Allows you to set the character encoding of a whole page.
- Allows you to set the character encoding of a certain frame.
Supports:
- Firefox 0.9 - 2.0.0.*
- Thunderbird 1.0 - 1.5.0.*
Enhancements:
- Supports Firefox 2.0.0.*
Download (0.003MB)
Added: 2007-04-17 License: MPL (Mozilla Public License) Price:
926 downloads
GBookmarks via Right Click 1.0
GBookmarks via Right Click is an extension used to add 2 more options to your Right Click Menu. more>>
GBookmarks via Right Click is an extension used to add 2 more options to your Right Click Menu.
Add to Google Bookmarks.
View Google Bookmarks (In new TAB).
When you want to bookmark a webpage, simply Right Click and choose the +++++ option.
The page will be added to your Google bookmarks.
It doesnt get any easier than this.
Tested on:
OS X, with Firefox 1.5.x
Windows XP Firefox 1.5.x, 2.0.x
Linux Firefox 1.5.x,2.0.x
Works fine.
<<lessAdd to Google Bookmarks.
View Google Bookmarks (In new TAB).
When you want to bookmark a webpage, simply Right Click and choose the +++++ option.
The page will be added to your Google bookmarks.
It doesnt get any easier than this.
Tested on:
OS X, with Firefox 1.5.x
Windows XP Firefox 1.5.x, 2.0.x
Linux Firefox 1.5.x,2.0.x
Works fine.
Download (0.001MB)
Added: 2007-04-04 License: MPL (Mozilla Public License) Price:
933 downloads
Hugin 0.7 Beta 4
Hugin is a toolkit for stitching photographs and assembling panoramas, together with an easy to use graphical front end. more>>
Hugin is a panorama tools GUI.
Goal: an easy to use cross-platform GUI for Panorama Tools.
With hugin you can assemble a mosiac of photographs into a complete immersive panorama, stitch any series of overlapping pictures and much more.
Main Window
This window consists of a toolbar that provides quick access to important functions. It also contains the Images, Lens, Control Point, Optimizer and Panorama Tab, which will be explained below.
Images Tab
Images can either be added with the Add button, or via drag and drop. To change the orientation of one or more images, select them in the list on the left. The image will be show in the preview area, and its orientation (yaw, pitch and roll values) can be edited on the left.
It is possible to select multiple images at the same time. Changes in orientation will be applied to all selected images
Lens Tab
The lens tab looks a lot like the Images tab, except that the lens settings can be edited here. As in the Images Tab, multiselection can be used to change the parameters for multiple images.
Currently only one lens is supported. The idea is that the Lens describes the process that was used to create the image. The most important parameters are the Lens type and the HFOV (Horizontal Field of View). Hugin will read the EXIF information in jpg files created by digital cameras, so usually it is filled out correctly.
Photographers do not use a HFOV in degrees, but the focal length. The focal length can be entered and it will be converted to HFOV in degrees, like the panorama tool require it. The focal length entered is taken to be for 35 mm film cameras.
Usually images are more or less distorted. This can be seen especially if there are long straight lines close to the image border, which are usually not completely straight but bent a little. The a b and c parameters are used to remove that distortion. They are applied radially from the image center, which can be moved by changing the d and e parameters.
During image capture, it is possible that the parameters vary, that is are not the same for each image. This can have many reasons, one of the could be a scanner that cuts a way a few pixel more at one side than the other. Other parameters stay the same, like usually the a,b and c parameters (if the zoom and focus for the images is the same).
The inherit checkmark means that this parameter doesnt vary between the images that were captures with that lens setting. If a parameter is inheritied it is forced to be the same for all images. When inherited parameters are optimized they are kept the same for all images, whereas parameters that are not inherited can get values specific for a single picture.
Control Point Tab
Control Points are probably the most important thing when using panorama tools. The Tab consists of two image displays and tab bars to switch images to be editied. The bottom contains a list view where Points can be selected and some fields to edit a selected point. Points can also be selected by clicking or dragging on them in the images. It is possible to zoom out to show the full image.
Adding a control point works by clicking into one image to select a point and then into the other image. If auto add is not set, the points can be moved by clicking at some other place in the images. They are added to the list of control points by pressing the right mouse button. If you press the right mouse button when only one point is slected, the point selection will be aborted. auto add adds the control point as soon as both points have been specified.
Control point creation is influenced by the following checkboxes:
auto fine tune hugin helps you to find the second point by looking for it in a search region (shown by a rectange around the cursor). This might not always work, but usually is reliable, if the image distortions are not too big. Try and play with it.
auto add A control point is automatically added when both points are know. You wont have time to refine the selection before adding the point.
auto estimate Tries to estimate the position of the second point by estimating the translation between the two images. This is very crude and probably only works for single row panoramas created from rectilinear images.
All these flags can be combined. I typically use auto fine tune and auto estimate at the same time. Then hugin usually automatically selects the second point correctly. Well for single row panos that is...
The images are zoomed out, the first click zooms to a temporary 100% view to give you the chance to refine your selection. Note that only the second click will trigger the auto estimate.
The Fine Tune button can be used to find a better position for the point in the right image for already selected point. Contrary to auto fine tune it only looks in a very small area around the point. This function is especially useful if you moved both points by hand, but want to have fine tuned control points.
Press the middle mouse button to pan the image. If you press shift key while paning, both images will move.
This window supports some keyboard shortcuts:
a add a new point that has been selected in both images, and the auto add is switched off.
cursor keys scroll image under the mouse cursor
shift + cursor keys scroll both images at the same time
f fine tune currently selected control point pair. Same as the Fine Tune button
Del Remove currently selected control point.
0 Zoom out to full view.
1 100% view.
Mouse function
Function
control key + mouse movement Scroll image under cursor
shift key + mouse movement Scroll both images
left button Use left mouse button to select new points or drag existing points.
right mouse button Add control point, if auto add is switched off
middle mouse button Scroll image under cursor
shift + middle mouse button Scroll both images
Optimizer Tab
The optimizer moves the images into the right position, so that they can be assembled into a hopefully seamless panorama.
To select what the optimiser should try to estimate, use the Optimize combo box, then click the Optimize Button. If you select the "custom" setting, you can change
Pano Panel
Options concerning the output panorama can be set here.
<<lessGoal: an easy to use cross-platform GUI for Panorama Tools.
With hugin you can assemble a mosiac of photographs into a complete immersive panorama, stitch any series of overlapping pictures and much more.
Main Window
This window consists of a toolbar that provides quick access to important functions. It also contains the Images, Lens, Control Point, Optimizer and Panorama Tab, which will be explained below.
Images Tab
Images can either be added with the Add button, or via drag and drop. To change the orientation of one or more images, select them in the list on the left. The image will be show in the preview area, and its orientation (yaw, pitch and roll values) can be edited on the left.
It is possible to select multiple images at the same time. Changes in orientation will be applied to all selected images
Lens Tab
The lens tab looks a lot like the Images tab, except that the lens settings can be edited here. As in the Images Tab, multiselection can be used to change the parameters for multiple images.
Currently only one lens is supported. The idea is that the Lens describes the process that was used to create the image. The most important parameters are the Lens type and the HFOV (Horizontal Field of View). Hugin will read the EXIF information in jpg files created by digital cameras, so usually it is filled out correctly.
Photographers do not use a HFOV in degrees, but the focal length. The focal length can be entered and it will be converted to HFOV in degrees, like the panorama tool require it. The focal length entered is taken to be for 35 mm film cameras.
Usually images are more or less distorted. This can be seen especially if there are long straight lines close to the image border, which are usually not completely straight but bent a little. The a b and c parameters are used to remove that distortion. They are applied radially from the image center, which can be moved by changing the d and e parameters.
During image capture, it is possible that the parameters vary, that is are not the same for each image. This can have many reasons, one of the could be a scanner that cuts a way a few pixel more at one side than the other. Other parameters stay the same, like usually the a,b and c parameters (if the zoom and focus for the images is the same).
The inherit checkmark means that this parameter doesnt vary between the images that were captures with that lens setting. If a parameter is inheritied it is forced to be the same for all images. When inherited parameters are optimized they are kept the same for all images, whereas parameters that are not inherited can get values specific for a single picture.
Control Point Tab
Control Points are probably the most important thing when using panorama tools. The Tab consists of two image displays and tab bars to switch images to be editied. The bottom contains a list view where Points can be selected and some fields to edit a selected point. Points can also be selected by clicking or dragging on them in the images. It is possible to zoom out to show the full image.
Adding a control point works by clicking into one image to select a point and then into the other image. If auto add is not set, the points can be moved by clicking at some other place in the images. They are added to the list of control points by pressing the right mouse button. If you press the right mouse button when only one point is slected, the point selection will be aborted. auto add adds the control point as soon as both points have been specified.
Control point creation is influenced by the following checkboxes:
auto fine tune hugin helps you to find the second point by looking for it in a search region (shown by a rectange around the cursor). This might not always work, but usually is reliable, if the image distortions are not too big. Try and play with it.
auto add A control point is automatically added when both points are know. You wont have time to refine the selection before adding the point.
auto estimate Tries to estimate the position of the second point by estimating the translation between the two images. This is very crude and probably only works for single row panoramas created from rectilinear images.
All these flags can be combined. I typically use auto fine tune and auto estimate at the same time. Then hugin usually automatically selects the second point correctly. Well for single row panos that is...
The images are zoomed out, the first click zooms to a temporary 100% view to give you the chance to refine your selection. Note that only the second click will trigger the auto estimate.
The Fine Tune button can be used to find a better position for the point in the right image for already selected point. Contrary to auto fine tune it only looks in a very small area around the point. This function is especially useful if you moved both points by hand, but want to have fine tuned control points.
Press the middle mouse button to pan the image. If you press shift key while paning, both images will move.
This window supports some keyboard shortcuts:
a add a new point that has been selected in both images, and the auto add is switched off.
cursor keys scroll image under the mouse cursor
shift + cursor keys scroll both images at the same time
f fine tune currently selected control point pair. Same as the Fine Tune button
Del Remove currently selected control point.
0 Zoom out to full view.
1 100% view.
Mouse function
Function
control key + mouse movement Scroll image under cursor
shift key + mouse movement Scroll both images
left button Use left mouse button to select new points or drag existing points.
right mouse button Add control point, if auto add is switched off
middle mouse button Scroll image under cursor
shift + middle mouse button Scroll both images
Optimizer Tab
The optimizer moves the images into the right position, so that they can be assembled into a hopefully seamless panorama.
To select what the optimiser should try to estimate, use the Optimize combo box, then click the Optimize Button. If you select the "custom" setting, you can change
Pano Panel
Options concerning the output panorama can be set here.
Download (2.2MB)
Added: 2007-02-05 License: GPL (GNU General Public License) Price:
1008 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above right button search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed