Skip to content

Instantly share code, notes, and snippets.

View PunGy's full-sized avatar
🌸
Even the blossoming flowers will eventually scatter

Maksim PunGy

🌸
Even the blossoming flowers will eventually scatter
View GitHub Profile
@PunGy
PunGy / webcam_capture.cpp
Last active December 18, 2019 13:22 — 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>