Showing 22 open source projects for "huffman c#"

View related business solutions
  • Contract Automation Made Easy Icon
    Contract Automation Made Easy

    Use Docubee to easily gather data, generate contracts, share them your way, and collect secure eSignatures

    Docubee is an intelligent contract automation platform that allows you to quickly and painlessly generate, manage, share, and sign contracts. Featuring powerful conditional logic-based workflows, generative AI technology, and an easily adaptable interface, Docubee makes it easy to automate your most complex contracts and agreements.
  • AI-based, Comprehensive Service Management for Businesses and IT Providers Icon
    AI-based, Comprehensive Service Management for Businesses and IT Providers

    Modular solutions for change management, asset management and more

    ChangeGear provides IT staff with the functions required to manage everything from ticketing to incident, change and asset management and more. ChangeGear includes a virtual agent, self-service portals and AI-based features to support analyst and end user productivity.
  • 1
    Brotli

    Brotli

    Brotli compression format

    ..., Huffman coding and 2nd order context modeling, with a compression ratio comparable to the best currently available general-purpose compression methods. It is similar in speed with deflate but offers more dense compression. The specification of the Brotli Compressed Data Format is defined in RFC 7932. Brotli is open-sourced under the MIT License. You can download and install brotli using the vcpkg dependency manager.
    Downloads: 13 This Week
    Last Update:
    See Project
  • 2
    libjpeg-turbo

    libjpeg-turbo

    SIMD-accelerated libjpeg-compatible JPEG codec library

    libjpeg-turbo is a JPEG image codec that uses SIMD instructions (MMX, SSE2, NEON, AltiVec) to accelerate baseline JPEG compression and decompression on x86, x86-64, ARM, and PowerPC systems. On such systems, libjpeg-turbo is generally 2-6x as fast as libjpeg, all else being equal. On other types of systems, libjpeg-turbo can still outperform libjpeg by a significant amount, by virtue of its highly-optimized Huffman coding routines. In many cases, the performance of libjpeg-turbo rivals...
    Leader badge
    Downloads: 85,025 This Week
    Last Update:
    See Project
  • 3

    ZAPH

    Tools and Z80 engine for creating adventure games.

    This is an exercise in some advance programming topics using a text adventure as the central result. This originally began as a project to recreate an old BASIC text adventure, on the ZX Spectrum, using Z80. After developing a very simple byte code VM to handle the game interactions, I realised that there was an opportunity to use some more advance techniques, which in turn can lead to some PC based tools.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 4
    Major looseless compression algorithms library and documentation. First project: Arithmetic, Huffman, LZ77, LZ78, LZW, RLE. Second project reimplements Deflate. Documentation explains major Entropy Compression Methods.
    Downloads: 0 This Week
    Last Update:
    See Project
  • ContractSafe: Contract Management Software Icon
    ContractSafe: Contract Management Software

    Take Control Of Your Contracts Without Wrecking The Budget

    Ditch those spreadsheets, shared drives & crazy-expensive solutions with too many bells & whistles. ContractSafe offers the simplest way to manage your contracts efficiently without breaking the bank.
  • 5
    Partial Image Encryption encrypts the huffman encoded high frequency coefficients in a jpg image file. The encryption is done in-place so the project can eventually be ported to a Windows kernel filter driver. Just encrypting the high level frequency coefficients serves to blur the image, but almost in an artistic way. The image contents are fully recognizable, but the details are pixelated or blurred. The general purpose of this program would be for securing images on the disk or in the cloud...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 6
    Static Huffman algorithm implementation using C++/Qt. Can compress files less than 50 Mb. Execute static_build.exe and try it.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 7

    Huffman Stuff

    I want to test some ways to store the data for the Huffman Tree

    Lectures on Huffman Code mostly focus on creating the Huffman Tree and converting the given data into the new bitmap. But what about the informations needed to create the Huffman Tree? They must be stored as well. With this project I want to test some possibilities to store these data. gmp,h is needed to compile. See: http://gmplib.org/
    Downloads: 0 This Week
    Last Update:
    See Project
  • 8
    THIS PROJECT HAS BEEN MOVED TO GITHUB: http://github.com/drichardson/huffman
    Downloads: 0 This Week
    Last Update:
    See Project
  • 9

    Text Zip

    This software zips and unzips a text file

    This software zips and unzips a .txt file, using the Huffman encoding algorithm and the list and tree data structures. The result files are named zippedFile.txt and unzippedFile.txt and can be found at the same directory as the Text Zip executable file.
    Downloads: 0 This Week
    Last Update:
    See Project
  • Precoro helps companies spend smarter Icon
    Precoro helps companies spend smarter

    Fully Automated Process in One Tool: From Purchase Orders to Budget Control and Reporting.

    For minor company expenses, you might utilize a spend management solution or track everything in spreadsheets. For everything more, you'll need Precoro. We help companies achieve procurement excellence and budget efficiency by building transparent, predictable, automated spending workflows.
  • 10
    hufc is a utility to compress or expand files using Huffman coding. It can use a 16-bit CRC or the IP checksum for error detection.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 11

    Simple Huffman Coder

    Simple huffman coder for learning purposes

    This project is built for learning purposes so it's implementation is kept simple and easy to read. It has two functions to either encode or decode a file with the expectation that you will modify it to suite your needs best.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 12

    BuddhaPalm

    a compress software

    这是一个简单的基于huffman编码的压缩软件,用C实现,两个人实现
    Downloads: 0 This Week
    Last Update:
    See Project
  • 13
    SI3_C_Huffman Huffman encoding implementation in c.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 14
    ARM7 targeted MP3 player. Fixed point 16 bit. Purpose is to buid an MP3 player with the lowest possible cost. Works on mono files (going stereo shouldn't be very complicated). Doesn't use Helix. The huffman decoding uses a clustering based algorithm.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 15
    Basic Compression Library is a portable library of well known compression algorithms, such as Huffman coding, written in standard ANSI C. It is intended to serve as a set of building blocks for specialized compression algorithms.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 16
    A compression engine based on the Huffman trie algorithm. The algorithm is pretty cpu-light, and as such, runs much more quickly than RAR or other 'heavy' algorithms, but could still achieve decent compression. Use with tar for multi-file archives.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 17
    The algorithm allows any kind of weights (costs, frequencies), including non-numerical ones. The {0, 1, ..., n-1} alphabet is used to encode message. Built tree is n-ary one.The algorithm is based on a set of template classes : Cell(SYMBOL, WEIGHT), Node(
    Downloads: 2 This Week
    Last Update:
    See Project
  • 18
    Help implement an industrial strength Burrows-Wheeler transform compressor! Initial release covers block-sort, MTF coding, RLE coding, Huffman coding
    Downloads: 0 This Week
    Last Update:
    See Project
  • 19
    A Huffman Coder/Compressor.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 20
    Algorithm that can generate any given series of probabilities G, using only fair coins. The algorithm creates a Huffman tree by decomposing any probability P into a sum of probabilites Q, where each Q is a power of 1/2. Than using the coins, the tra
    Downloads: 1 This Week
    Last Update:
    See Project
  • 21
    Simple file compressing program using Huffman coding. Written in C#.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 22

    huffman-compression-library

    A light weight C++ library implementation of huffman coding compression algorithm

    Downloads: 0 This Week
    Last Update:
    See Project
  • Previous
  • You're on page 1
  • Next