Giter Site home page Giter Site logo

freeuv3's Introduction

README

Current build Status:

Travis Status Appveyor status ReadTheDocs Status Codecov Codacy lgtm: C/C++ License

freeUV3 is a tiny library for decoding UV3 files which provides in a simple way (just only 2 calls), a mechanism for extract information inside of the .UVData and .UVSetup format files using a portable non-intrusive API.

This project can also serves as template for new projects, it gives a good CMake base with a few dependencies you most likely want in your project. It set ups some basic CI builds.

Features

  • Decode .UV3Data and .UV3Setup files in seamlessly way.
  • c++ standard only dependency.

Getting Started

The following small example should contain most of the syntax you need to use the library.

# include "uv3decoder.h"

int main(){
    UV3Decoder decoder("test.UVData");
    if (decoder.good()) {
        auto v = decoder.get();
        for (const auto &n : v) {
            std::ofstream ofs(n->filename_, std::ios::binary);
            ofs << n->buffer_.rdbuf();
            ofs.close();
        }
        decoder.close();
    }
}

Requirements

The library can be used with C++03. However, it requires C++11 to build, including compiler and standard library support. The following minimum versions are required to build the library:

  • GCC 4.8
  • Clang 3.4
  • Visual Studio 2013
  • Intel 2015 Update 1

freeuv3's People

Contributors

jdmarquez01 avatar

Forkers

codacy-badger

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.