Skip to content

Instantly share code, notes, and snippets.

@ank700
ank700 / timelapse.cpp
Last active June 26, 2019 20:35
Timelapse using opencv 4.0 and c/c++
#include <iostream>
#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>
int main()
{
cv::VideoCapture cap("water.mp4");
if (!cap.isOpened())
{