Main > Free Download Search >

Free interaction software for linux

interaction

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 301
Medical Imaging Interaction Toolkit 0.6

Medical Imaging Interaction Toolkit 0.6


Medical Imaging Interaction Toolkit aims at supporting the development of leading-edge medical imaging software. more>>
Medical Imaging Interaction Toolkit (MITK) is currently under active development, and aims at supporting the development of leading-edge medical imaging software with a high degree of interaction. It combines vtk, itk and the pic-based-libraries of the Div.
Main features:
- multiple, consistent views on the same data. For example, when you have three orthogonal 2D-views and a 3D view and data consisting of a green surface, the surface will be visible and green in all views (as contour lines in 2D, as a surface in 3D), and when you move the surface, it will move in all views. When you try to realize this with basic vtk, you will need to coordinate the position/orientation/color/... of all the views somewhere in your program - exactly this can mitk do for you.
- interactions that create and/or modify data (not only actors as in basic vtk)
- complex interactions with multiple states, e.g., for interaction with active contours
- undo/redo of interactions
- organization of data objects in a tree at run-time, e.g., to represent logical dependencies (e.g., a heart cavity is a part of the heart) or to control the rendering process
- additional properties of arbitrary type can be assigned to data objects contained in the data tree
- visualization and interaction with 3D+t data (basic vtk can handle only 3D data and itk is not for visualization and interaction)
- although mitk is mainly a toolkit and not an application, it offers some support on the application-level, e.g, for structured combination of modules (so-called functionalities), e.g., for combining and switching between one functionality for segmentation and another for registration.
Enhancements:
- New functionalities: IsoSurface, ViewInitialization and Measurement.
- Support for ITK 2.4-2.8, VTK 4.4 and 5.0.
- Lots of bugfixes and improvements, e.g. interaction for rotatable slices.
<<less
Download (MB)
Added: 2007-03-19 License: GPL (GNU General Public License) Price:
952 downloads
Ratpoison 1.4.1

Ratpoison 1.4.1


Ratpoison is a simple Window Manager with no fat library dependencies, no fancy graphics, no window decorations. more>>
Ratpoison is a simple Window Manager with no fat library dependencies, no fancy graphics, no window decorations, and no rodent dependence. Ratpoison is largely modelled after GNU Screen which has done wonders in the virtual terminal market.
The screen can be split into non-overlapping frames. All windows are kept maximized inside their frames to take full advantage of your precious screen real estate.
All interaction with the window manager is done through keystrokes. ratpoison has a prefix map to minimize the key clobbering that cripples Emacs and other quality pieces of software.
Enhancements:
- Ten new commands were added.
- Bugs were fixed.
- I18n fonts were added.
<<less
Download (0.36MB)
Added: 2006-12-20 License: GPL (GNU General Public License) Price:
1038 downloads
PrefGenerate 0.2

PrefGenerate 0.2


PrefGenerate is a script used to configure user accounts without the need for user interaction. more>>
PrefGenerate is a script used to configure user accounts without the need for user interaction.

PrefGenerate sets up a complete Mozilla Firefox and Mozilla Thunderbird profile, as well as the window manager Icewm. Its currently used in an enviroment with over 8000 users.

<<less
Download (0.007MB)
Added: 2006-04-13 License: GPL (GNU General Public License) Price:
1289 downloads
Mind AI 0.1

Mind AI 0.1


Mind AI is an artificial mind based on some advanced concepts. more>>
Mind AI project is an artificial mind based on some advanced concepts:
- machine learning
- representation
- meta representation of concepts
- concept reflection
- reification
- denotation
Interaction with the AI is done via IRC.
Enhancements:
- geo: start some geo-location development ; play with AddressInfo class and think about LocationProvider implementation
- irc: add support for PING / PONG mechanism
- add support for *help command
<<less
Download (MB)
Added: 2006-10-11 License: GPL (GNU General Public License) Price:
1115 downloads
Qemulator 0.5

Qemulator 0.5


Qemulator is a full featured emulation suite for the qemu virtual engine, with on demand job control written in python GTK/Glade more>>
Qemulator provides an easy and fast to use image and device management, a "My machines" list and interactive job control.

It comes with a list of all running jobs from where you can open the contol panel for each job and performing on demand action. Full interaction for mounted volumes, usb devices, keyboard and mouse interaction, screenshots, wave capture and save/restore machine state and open vnc viewer is provided.

The project is still under development. Current version should run stable on most Linux machines providing allmost all functions of qemu, but there are still some works to do.

<<less
Download (0.62MB)
Added: 2007-06-18 License: GPL (GNU General Public License) Price:
862 downloads
Brcontrol 0.02

Brcontrol 0.02


Brcontrol is a set of patches to allow some interaction between a IDS and a firewall. more>>
Brcontrol is a set of patches to allow some interaction between a IDS and a firewall (currently snort and linux netfilter). It will help in the creation of aggresive honeypots or other advanced firewall and ids configurations. In can also work as bridge.
<<less
Download (0.015MB)
Added: 2006-07-01 License: GPL (GNU General Public License) Price:
1210 downloads
Object::Mediator 0.02

Object::Mediator 0.02


Object::Mediator is a generic object persistence framework. more>>
Object::Mediator is a generic object persistence framework.

SYNOPSIS

package Persistent;

use base qw( Object::Mediator );

__PACKAGE__->mk_attr ( qw(foo bar) );

sub _set_id {
my $self = shift;

my $id = generate_identity();

$self->identity( $id );
}

sub _insert {
my $self = shift;

$db_handle->insert ( $self->id, $self->foo, $self->bar );
}

sub _update {
my $self = shift;

$db_handle->update ( $self );
}

sub _delete {
my $self = shift;

$db_handle->delete ( $self->id );
}

sub _select {
my $self = shift;

my ( $foo, $bar ) = $db_handle->select ( $self->id );

$self->foo ( $foo );
$self->bar ( $bar );
}

Object::Mediator attempts to be simple and fairly minimalistic object mapping framework. Main aims of development were: usage simplicity, end user transparency, database independency and minimization of database interaction with some kind of in-memory object state control system.

<<less
Download (0.006MB)
Added: 2007-05-18 License: Perl Artistic License Price:
890 downloads
Imager::TimelineDiagram 0.15

Imager::TimelineDiagram 0.15


Imager::TimelineDiagram is a Perl extension for creating Timeline Diagrams (designed to show system interaction over time). more>>
Imager::TimelineDiagram is a Perl extension for creating Timeline Diagrams (designed to show system interaction over time).

SYNOPSIS

use Imager::TimelineDiagram;
use Imager::Font;

my $tg = Imager::TimelineDiagram->new(
#maxTime => 10,
#dataLabelSide => left,
labelFont => Imager::Font->new(file => t/ImUgly.ttf),
);

$tg->set_milestones(qw(A B C D E));

my @points = (
# From, To, AtTime
[A,B,1.0],
[B,C,2.0],
[C,D,3.3],
[D,C,4.3],
[C,A,5.0],
);

$tg->add_points(@points);

$tg->write(foo.png);

<<less
Download (0.084MB)
Added: 2007-04-24 License: Perl Artistic License Price:
913 downloads
Authenticated User Community 0.7.4

Authenticated User Community 0.7.4


Authenticated User Community project is a CGI-based intranet system for K-12 settings. more>>
Authenticated User Community project is a CGI-based intranet system for K-12 settings.

AUC (Authenticated User Community) is an intranet system designed for use in an educational organization but is also useful in many other settings.

It offers the ability for users to have a uniform web-based interface to discussion forums, e-mail (similar to hotmail, etc.), file management, and a searchable user database.

Also, "Interactive Classrooms" provide a means for students and teachers to have a web-based extension to their in-class interaction.

The system runs from a C-based monolithic CGI script. MySQL is used for database storage. Also, the web-based mail client supports MIME parts/attachments, IMAP, mbox, and multiple mail folders.

<<less
Download (3.3MB)
Added: 2006-11-01 License: GPL (GNU General Public License) Price:
1089 downloads
Buster 1.0

Buster 1.0


Buster is a Model-view-controller Engine for PHP5-based systems. more>>
Buster is a Model-view-controller Engine for PHP5-based systems.
Main features:
- full object oriented,
- config management,
- session management,
- logging support,
- dispatcher and controller,
- dao fundamental objects,
- db based SecurityManager,
- Smarty based ViewController,
- Smarty extension for multilanguage support.
When Buster is usefull?
When you need secured by login and password pages.
When you need user and users group permissins to access to content.
When you need interaction with database.
When you building multi-layouted web.
When you building multilanguage web.
When you need store user informations in session.
When you not need Buster?
When you have unsecured static pages.
When you have not interaction with database.
When you have to 5 different php pages without session needs.
<<less
Download (0.018MB)
Added: 2006-06-06 License: LGPL (GNU Lesser General Public License) Price:
1235 downloads
Zinc 3.3.2

Zinc 3.3.2


Zinc is a Tk widget developed with Perl/Tk, Tcl/Tk and Python/Tk bindings. more>>
Zinc is a Tk widget developed with Perl/Tk, Tcl/Tk and Python/Tk bindings. Zinc widgets are very similar to Tk canvases in that they support structured graphics.

Graphical items can be manipulated, and bindings can be associated with them to implement interaction behaviors. But unlike the canvas, zinc can structure the items in a hierarchy, and has support for affine 2D transforms.

Clipping can be set for sub-trees of the item hierarchy and the item set is quite more powerful, including field-specific items for Air Traffic systems.

Zinc is fast enough to allow the implementation of 2k2k radar displays with smooth animations. It is structured enough to allow the implementation of direct manipulation desktop GUIs.
<<less
Download (1.2MB)
Added: 2005-06-24 License: GPL (GNU General Public License) Price:
1593 downloads
Test::CPANpm 0.010

Test::CPANpm 0.010


Test::CPANpm is a Perl module to test a distributions interaction with CPAN before uploading. more>>
Test::CPANpm is a Perl module to test a distributions interaction with CPAN before uploading.

SYNOPSIS

use Test::CPANpm;
use Test::More qw(no_plan);

cpan_depends_ok(
[CGI, Module::Build, Acme::Wabbit],
got the right dependancies
);

cpan_depends_ok_force_missing(
[Some::Module::Build::Subclass, CGI, Module::Build, Acme::Wabbit],
[Some::Module::Build::Subclass],
got dependancies even though our Module::Build subclass is missing
);

Test::CPANpm fools CPAN.pm into thinking it has downloaded and unpacked your package, then has it attempt to generate a Makefile or Build script. After this process completes, it asks your CPAN module what dependancies it thinks exist.

If you just want to make sure your distribution is packaged in a way that is good for CPAN, consider using Test::Distribution instead. The main time that Test::CPANpm is useful is when you depend on modules inside your Makefile.PL or Build.PL script and you want to make sure that you degrade gracefully if those modules are not available.

<<less
Download (0.008MB)
Added: 2007-05-03 License: Perl Artistic License Price:
904 downloads
ETH Lecture Communicator 1.0

ETH Lecture Communicator 1.0


ETH Lecture Communicator is a tool to improve classroom interaction between an instructor and their students. more>>
ETH Lecture Communicator is a tool to improve classroom interaction between an instructor and their students.
ETH Lecture Communicator enables the instructor to create and carry out in-class online assessments, and facilitates organized instant communication for large classes.
It is intended to improve the overall quality of a lecture by providing the instructor with continuous feedback on the students understanding of the material.
Enhancements:
- The remaining known bugs were fixed.
- The most annoying of these was the seemingly random resending of no longer existing questions.
- Some GUI ugliness was cleaned up as well, especially for Linux systems.
<<less
Download (3.4MB)
Added: 2006-10-05 License: GPL (GNU General Public License) Price:
1116 downloads
Decibel 0.5.0

Decibel 0.5.0


Decibel is a realtime communication framework based on Telepathy more>>
Decibel is a realtime communication framework based on Telepathy. It is meant to integrate VoIP, text chat, CTI (computer telephone integration), and similar applications into the users desktop.

The project consists of a desktop neutral policy daemon called Houston and desktop specific components for user interaction.

Houston is a plain, non-graphical Qt application which is supposed to get started when a user logs in. It is a policy daemon, which opens communication channels for the user and starts components in response to events triggered.

<<less
Download (0.13MB)
Added: 2007-08-01 License: LGPL (GNU Lesser General Public License) Price:
819 downloads
DeadFTP 0.1.3

DeadFTP 0.1.3


DeadFTP is a graphical FTP client for GNOME featuring transfers resuming, a transfers queue, drap-n-drop, and proxy support. more>>
DeadFTP is a graphical FTP client for GNOME featuring transfers resuming, a transfers queue, drap-n-drop, and proxy support.
Enhancements:
- Fixed bug with saving of firewall settings
- Added support for limiting port range of sockets
- Fixed problem with loading certain values in settings dialog
- Improved format of console log file
- Re-added display of login message dialog
- Re-added color changing to settings dialog
- Fixed issue with queue reordering
- Improved how preferences are saved/loaded and used
- Added support for changing file modes
- Improved proxy interface and socket code
- New preferences dialog
- Added new status bars to display information on queue transfer time
- Added queue clear function
- Added (untested) SOCKS4 support
- New resume code & new resume dialog
- Improved interaction with server and status message is now displayed
- Added directory transfer support
- Many other bug fixes
<<less
Download (0.255MB)
Added: 2006-06-13 License: GPL (GNU General Public License) Price:
1228 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5