Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 50.443.383 Times

Gamma Correction Algorithm software
Filter: All | Freeware | Demo
 

Gamma Correction Algorithm

< 1 2 3 4 5 > 
Released: February 26, 2008  |  Added: January 06, 2009 | Visits: 1.499

Images Conveyer Hassle-free program for group processing of graphic files (BMP, EMF, GIF, JPG, ICO, PNG, WMF) for 4 steps. There are more 50 the built-in effects: 3D grid, Antialias, Auto color enhance, Blur radial, Color tone, Contrast, Convert to BMP, or GIF, or JPG, or PNG format, Cylinder, Detect edge,...



Platforms: Windows

License: Shareware Cost: $19.95 USD Size: 1.06 MB Download (117): Images Conveyer Download

Added: February 03, 2010 | Visits: 850

Algorithm::SkipList Algorithm::SkipList is a Perl implementation of skip lists. SYNOPSIS my $list = new Algorithm::SkipList(); $list->insert( key1, value ); $list->insert( key2, another value ); $value = $list->find(key2); $list->delete(key1); This is an implementation of skip lists in Perl. Skip...





Platforms: *nix

License: Freeware Size: 30.72 KB Download (117): Algorithm::SkipList Download

Added: May 02, 2010 | Visits: 1.065

Algorithm::AhoCorasick::SearchMachine Algorithm::AhoCorasick::SearchMachine provides an implementation and low-level interface of Algorithm::AhoCorasick. Feeds input to the state machine. First (after the instance) argument of this method is the input text (which can be empty, in which case the method doesnt do anything), second...


Platforms: *nix

License: Freeware Size: 5.12 KB Download (114): Algorithm::AhoCorasick::SearchMachine Download

Added: July 09, 2010 | Visits: 912

Algorithm::Huffman Algorithm::Huffman is a Perl extension that implements the Huffman algorithm. SYNOPSIS use Algorithm::Huffman; my %char_counting = map {$_ => int rand(100)} (a .. z, A .. Z); # or better the real counting for your characters # as the huffman algorithm doesnt work good with random data...


Platforms: *nix

License: Freeware Size: 8.19 KB Download (110): Algorithm::Huffman Download

Added: August 02, 2008 | Visits: 1.096

Gamma Brothers You play as one of the Gamma Brothers who must destroy an endless stream of UFOs that invade from every direction. Use the arrow keys to move your craft around and the WASD keys to fire in four cardinal directions. When your energy gets depleted, running into your brother will swap your ships,...


Platforms: Windows

License: Freeware Size: 19.5 MB Download (109): Gamma Brothers Download

Added: January 25, 2010 | Visits: 647

Episode Pro Episode Pro provides powerful desktop encoding plus professional broadcast format support and unlimited batch encoding. In addition, Episode Pro acts as a gateway to our workgroup server solutions.FeaturesEncode MPEG 1/2/4, Windows Media 9, VC-1, DV, 3GPP/2, ATSC A/52, M4A, MOV and other...


Platforms: Mac

License: Demo Cost: $0.00 USD Download (108): Episode Pro Download

Added: April 09, 2010 | Visits: 1.030

Algorithm::Loops Algorithm::Loops is a Perl module with looping constructs: NestedLoops, MapCar*, Filter, and NextPermute*. SYNOPSYS use Algorithm::Loops qw( Filter MapCar MapCarU MapCarE MapCarMin NextPermute NextPermuteNum NestedLoops ); my @copy= Filter {tr/A-Z.,"()/a-z/d} @list; my $string= Filter...


Platforms: *nix

License: Freeware Size: 22.53 KB Download (108): Algorithm::Loops Download

Added: April 25, 2010 | Visits: 942

Algorithm::Permute Algorithm::Permute is a Perl module with handy and fast permutation with object oriented interface. SYNOPSIS use Algorithm::Permute; my $p = new Algorithm::Permute([a..d]); while (@res = $p->next) { print join(", ", @res), "n"; } my @array = (1..9); Algorithm::Permute::permute { print...


Platforms: *nix

License: Freeware Size: 10.24 KB Download (108): Algorithm::Permute Download

Added: January 17, 2010 | Visits: 1.043

Algorithm::BinPack Algorithm::BinPack is a Perl module that can efficiently pack items into bins. SYNOPSIS Algorithm::BinPack efficiently packs items into bins. The bins are given a maximum size, and items are packed in with as little empty space as possible. An example use would be backing up files to CD,...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (107): Algorithm::BinPack Download

Added: April 26, 2010 | Visits: 1.020

Gamma Low Gamma Low is an open-source, multiplayer strategy game where players in two teams fight for the dominance of a cellular system in a real-time, match-based environment. In each team, one player is elected to be The Mind, the commander. A few other players are chosen to be his tactical helpers,...


Platforms: *nix

License: Shareware Cost: $0.00 USD Size: 72.7 KB Download (105): Gamma Low Download

Added: February 01, 2010 | Visits: 1.227

Algorithm::NeedlemanWunsch Algorithm::NeedlemanWunsch is a sequence alignment with configurable scoring. SYNOPSIS use Algorithm::NeedlemanWunsch; sub score_sub { if (!@_) { return -2; # gap penalty } return ($_[0] eq $_[1]) ? 1 : -1; } my $matcher = Algorithm::NeedlemanWunsch->new(&score_sub); my $score =...


Platforms: *nix

License: Freeware Size: 10.24 KB Download (105): Algorithm::NeedlemanWunsch Download

Added: January 25, 2010 | Visits: 1.341

Too Much Too Soon Plugins Too Much Too Soon Plugins is a set of free plugins for Apple Final Cut Pro and ExpressSlow Motion (New July 2007)Change the speed of interlaced video to 50% then apply this. It will alternate betweenthe fields creating the smoothest slow motion possible.Regrain (New July 2007)When working with...


Platforms: Mac

License: Freeware Size: 73 KB Download (104): Too Much Too Soon Plugins Download

Added: July 09, 2010 | Visits: 972

Algorithm::SocialNetwork Algorithm::SocialNetwork is a social network analysis. SYNOPSIS use Graph::Undirected; use Algorithm::SocialNetwork; my $G = Graph::Undirected->new(); $G->add_edges([qw(a b)], [qw(b c)]); my $algo = Algorithm::SocialNetwork->new(graph => $G3); my $BC = $algo->BetweenessCentrality(); #...


Platforms: *nix

License: Freeware Size: 9.22 KB Download (104): Algorithm::SocialNetwork Download

Added: February 19, 2010 | Visits: 884

Algorithm::SISort Algorithm::SISort is a Perl module that contains select and insert sorting algorithm. SYNOPSIS use Algorithm::SISort qw(Sort Sort_inplace); @sorted_list = Sort {$_[0] <=> $_[1]} @unsorted_list; # ... or ... $number_of_comparisons = Sort_inplace {$_[0] <=> $_[1]} @unsorted_list; This...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (100): Algorithm::SISort Download

Added: November 04, 2010 | Visits: 947

Algorithm::Munkres Algorithm::Munkres is a Perl extension for Munkres solution to classical Assignment problem for square and rectangular matrices. This module extends the solution of Assignment problem for square matrices to rectangular matrices by padding zeros. Thus a rectangular matrix is converted to square...


Platforms: *nix

License: Freeware Size: 9.22 KB Download (100): Algorithm::Munkres Download

Added: March 20, 2010 | Visits: 768

Fyre Fyre project is a tool for producing computational artwork based on histograms of iterated chaotic functions. At the moment, it implements the Peter de Jong map in a fixed-function pipeline with an interactive GTK+ frontend and a command line interface for easy and efficient rendering of...


Platforms: *nix

License: Freeware Size: 296.96 KB Download (99): Fyre Download

Added: August 01, 2008 | Visits: 1.261

Photo-Lux Image Viewer 3.5c Photo-Lux is an easy-to-use but powerful and fast image viewer and more.The following graphics formats are supported: BMP, CEL/PIC, CUR,CUT, DIB, EMF, FAX, G3N/G3F, GIF, ICB, ICO, J2C/J2K/JP2/JPC(JPEG2000),JPC, JPG/JPEG (RGB, GrayScale, YCbCr, CMYK, YCbCrK), JFIF/JIF, PBM,PCD, PCX/DCX, PSD/PDD,...


Platforms: Windows

License: Shareware Cost: $29.99 USD Size: 1.74 KB Download (96): Photo-Lux Image Viewer 3.5c Download

Released: January 11, 2016  |  Added: January 28, 2016 | Visits: 692

CodedColor PhotoStudio Pro CodedColor PhotoStudio by 1STEIN is a powerful and versatile photo organizer and image editing software for digital camera users. Features include photo editing & printing, web album galleries, slide shows, photo management & cataloging, custom sorting, IPTC & EXIF editor, thumbnail generation,...


Platforms: Windows, Windows 8, Windows 7, Windows Server

License: Shareware Cost: $49.00 USD Size: 55.31 MB Download (96): CodedColor PhotoStudio Pro Download

Added: March 22, 2010 | Visits: 901

Algorithm::DiffOld Algorithm::DiffOld is a Perl module to compute `intelligent differences between two files / lists but use the old (<=0.59) interface. NOTE This has been provided as part of the Algorithm::Diff package by Ned Konz. This particular module is ONLY for people who HAVE to have the old interface,...


Platforms: *nix

License: Freeware Size: 23.55 KB Download (95): Algorithm::DiffOld Download

Added: October 05, 2010 | Visits: 807

Algorithm::SixDegrees Algorithm::SixDegrees is a Perl module that can find a path through linked elements in a set. SYNOPSIS use Algorithm::SixDegrees; my $sd1 = Algorithm::SixDegrees->new(); $sd1->data_source( actors => &starred_in ); $sd1->data_source( movies => &stars_of ); @elems = $sd1->make_link(actors,...


Platforms: *nix

License: Freeware Size: 11.26 KB Download (94): Algorithm::SixDegrees Download

< 1 2 3 4 5 >