equalize
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 6
Equalize 1.00
Equalize plug-in does a histogram equalization of the image. more>>
Equalize plug-in does a histogram equalization of the image.
That is, it modifies the images histogram so that it is approximately horizontal, so that all intensity values cover about the same number of pixels in the image (i.e. the histogram is well-balanced).
<<lessThat is, it modifies the images histogram so that it is approximately horizontal, so that all intensity values cover about the same number of pixels in the image (i.e. the histogram is well-balanced).
Download (0.006MB)
Added: 2006-09-21 License: GPL (GNU General Public License) Price:
1130 downloads
EQU 0.7
EQU is a realtime graphical equalizer. more>>
EQU is a realtime graphical equalizer that will equalize the audio of almost everything you play through XMMS (OGG, MP3, WAV, etc.).
You can choose four different band configurations (10, 15, 25 and 31), all of them with ISO central frequencies, independent gain settings for left and right channels, and more than +-14dB of gain per band.
EQU project features a skinnable GUI and shadowed mode.
<<lessYou can choose four different band configurations (10, 15, 25 and 31), all of them with ISO central frequencies, independent gain settings for left and right channels, and more than +-14dB of gain per band.
EQU project features a skinnable GUI and shadowed mode.
Download (0.61MB)
Added: 2006-01-16 License: GPL (GNU General Public License) Price:
1382 downloads
netsane 1.0
Netsane is a script to easily configure multipath routing under Linux. more>>
Netsane is a script to easily configure multipath routing under Linux, allowing the use of multiple gateway links, and affording some measure of equalization (not true load balancing) across these links.
Multipath routing under Linux is not without caveats -- see Julian Anastasovs excellent site and patches for additional information and enhancements, as well as Christoph Simons notes on how to use more than one independent Internet connection.
Netsane is free software, released under the BSD License. You can download the latest release from the website.
Main features:
- easily configured multipath routing, including equalized route cycling
- options to add blackhole/null routes
- options to bind specific destinations to specific routes
- options to mark specific traffic to use specific routes (via iptables)
<<lessMultipath routing under Linux is not without caveats -- see Julian Anastasovs excellent site and patches for additional information and enhancements, as well as Christoph Simons notes on how to use more than one independent Internet connection.
Netsane is free software, released under the BSD License. You can download the latest release from the website.
Main features:
- easily configured multipath routing, including equalized route cycling
- options to add blackhole/null routes
- options to bind specific destinations to specific routes
- options to mark specific traffic to use specific routes (via iptables)
Download (0.006MB)
Added: 2006-07-04 License: BSD License Price:
1212 downloads
pgmhisteq
pgmhisteq is a project that can equalize the contrast in a portable graymap. more>>
pgmhisteq is a project that can equalize the contrast in a portable graymap.
This program implements the "HistEq" function from the xv color editor for pgm files. For most pictures, it enhances the contrast noticeably. The effect is that after processing, for each x between 0 and 100, x percent of the image will have a brightness of at most x percent.
The program needs the pbmplus libraries.
<<lessThis program implements the "HistEq" function from the xv color editor for pgm files. For most pictures, it enhances the contrast noticeably. The effect is that after processing, for each x between 0 and 100, x percent of the image will have a brightness of at most x percent.
The program needs the pbmplus libraries.
Download (0.008MB)
Added: 2007-01-25 License: Public Domain Price:
1003 downloads
Sort::Radix 0.04
Sort::Radix is a Perl module with multiple passes distribution sort algorithm. more>>
Sort::Radix is a Perl module with multiple passes distribution sort algorithm.
SYNOPSIS
use Sort::Radix;
@array = qw(flow loop pool Wolf root sort tour);
radix_sort(@array);
print "@arrayn";
This is an implementation based on Jarkkos Wolf book (Mastering Algorithms with Perl, pp. 145-147).
By definition: radix sort is a multiple pass distribution sort algorithm that distributes each item to a bucket according to part of the items key beginning with the least significant part of the key. After each pass, items are collected from the buckets, keeping the items in order, then redistribute according to the next most significant part of the key.
Radix sort is nice as it take N * M passes, where N is the length of the keys. It is very useful for sorting large volumes of keys of the same length, such as postal codes.
The algorithm will only works when the strings to be sorted are of the same length. Variable length strings therefore have to be padded with zeroes (x00) to equalize the length.
<<lessSYNOPSIS
use Sort::Radix;
@array = qw(flow loop pool Wolf root sort tour);
radix_sort(@array);
print "@arrayn";
This is an implementation based on Jarkkos Wolf book (Mastering Algorithms with Perl, pp. 145-147).
By definition: radix sort is a multiple pass distribution sort algorithm that distributes each item to a bucket according to part of the items key beginning with the least significant part of the key. After each pass, items are collected from the buckets, keeping the items in order, then redistribute according to the next most significant part of the key.
Radix sort is nice as it take N * M passes, where N is the length of the keys. It is very useful for sorting large volumes of keys of the same length, such as postal codes.
The algorithm will only works when the strings to be sorted are of the same length. Variable length strings therefore have to be padded with zeroes (x00) to equalize the length.
Download (0.003MB)
Added: 2007-05-22 License: Perl Artistic License Price:
885 downloads
POE::Component::Player::Mpg123 1.2
POE::Component::Player::Mpg123 is a Perl wrapper for the mpg123 player. more>>
SYNOPSIS
use POE qw(Component::Player::Mpg123);
$mp = POE::Component::Player::Mpg123->new();
$mp->play("/tmp/test.mp3");
POE::Kernel->run();
This component is used to manipulate the mpg123 player from within a POE application. The less common but open-source mpg321 has also been tested.
METHODS
An object oriented interface is provided as follows:
new [hash[-ref]]
Used to initialise the system and create a module instance. The optional hash (or hash reference) may contain any of the following keys:
alias
Indicates the name of a session to which events will be posted. Default: main.
dev
Specifies device to play to. Default: /dev/dsp.
xargs
Allows for passing extra arguments to the underlying application.
< event-name >
Any event fired by this module can be mapped to a name of choice. This is useful for differentiating this components events from some other components e.g. done = "mpg123_done"> will cause the component to fire an mpg123_done event at the main session, instead of the usual done. For a comprehensive listing of events fired, please refer to the EVENTS section below.
start
This method starts the player. While it should not be necessary to ever call this method directly since the new() method calls it automatically, this method allows for restarting the player in such instances as when it dies.
play < path >
This method requires a single parameter specifying the full path name of an mp3 file to play.
stop pause resume
None of these methods take any parameters and will do exactly as thier name implies. Please note that pause/resume are semaphored i.e. issuing a pause whilst the system is already paused will do exactly diddley.
vol < integer >
This method requires a valid integer between 0 and 100 to indicate the volume level. Please note that volume support is not available on all versions of the mpg123 player. Consult your versions documentation to verify whether this will work.
seek < to >
This method fast-forwards or rewinds or jumps the metaphoric playhead to a specified location. The to argument passed should adhere to the regex [+-]d+[%]. If the number provided is preceeded by a + or a - then the number is treated as a relative offset where positive indicates forwards and negative backwards. If no sign is passed, the number is treated as an absolute offset. Additionally, if the number is followed by a percent sign, it is treated as a percentage and should be between 0 and 100, else it is treated as a frame number.
Please note that passing out-of-bounds values will not generate an error but will be silently adjusted as necessary.
stat
This method has been kept from sungos original package... though I dont know what its supposed to do. In my version of mpg123 it generates an error @E Unknown command STAT.
xcmd < string >
This method allows for the sending of arbitrary commands to the player e.g. equalize such that as the underlying player offers new features, these can be utilised without having to modify the component.
quit
This method causes the mp3 player to shut down.
Download (0.007MB)
Added: 2006-12-26 License: Perl Artistic License Price:
1032 downloads
Secleted [ 0 ] software to compare
- Page: 1 of 1
- 1
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above equalize 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