Giter Club home page Giter Club logo

v4l2-framebuffer's People

Contributors

lincolnhard avatar yeah-its-gloria avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

v4l2-framebuffer's Issues

unable to display

hi,
when i use my notebook‘s camera,it is unable to display.
thanks!

RGB888 to RGB565

Hello,

My camera record with RGB888 but the screen is RGB565, how to convert it?

context-aware encoding

Hi, thanks for the release. I'm currently working on context-aware video encoding which aims at setting different QPs for different area within frame to be encoded according to grayscale saliency map where white areas indicate ROI areas. Now I'm struggling at how to implement context-aware encoding in V4L2. Any advices would be very appritiated.

Underflow in YUV to RGB conversion

In routine parse_im (file "video_capture.c") you protect against the calculated values of RGB being greater than 255, and clip them to this maximum value. However you do not protect against them going negative (which can happen in dark areas of the image).

The code needs to be extended as:

        if(B > UCHAR_MAX){
            B = UCHAR_MAX;
        } else if(B < 0){
            B = 0;
        }
        if(G > UCHAR_MAX){
            G = UCHAR_MAX;
        } else if(G < 0){
            G = 0;
        }
        if(R > UCHAR_MAX){
            R = UCHAR_MAX;
        } else if(R < 0){
            R = 0;
        }

opencv version

How we can use opencv Mat object to write fraemuffer ?

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.