Skip to content

Instantly share code, notes, and snippets.

View sammy17's full-sized avatar

Chathura Rajapaksha sammy17

View GitHub Profile
@sammy17
sammy17 / webcam_capture.cpp
Created October 11, 2017 18:26 — forked from mik30s/webcam_capture.cpp
Simple C++ program to capture a webcam frame in Linux
#include <iostream>
#include <stdio.h>
#include <stdlib.h>
#include <linux/ioctl.h>
#include <linux/types.h>
#include <linux/v4l2-common.h>
#include <linux/v4l2-controls.h>
#include <linux/videodev2.h>
#include <fcntl.h>
#include <unistd.h>