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
@mik30s
mik30s / webcam_capture.cpp
Last active October 26, 2024 01:20
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>