Skip to content

Instantly share code, notes, and snippets.

@subudear
subudear / Azure_storage_acc_env.postman_environment.json
Created September 23, 2021 09:57
postman environment for azure storage account
{
"id": "db953e65-3c4c-4121-b413-316b75767d23",
"name": "Azure_storage_acc_env",
"values": [
{
"key": "client_id",
"value": "",
"enabled": true
},
{
@six519
six519 / opencv_test2.cpp
Created December 1, 2017 09:49
Basic Motion Detection With OpenCV C++ Sample Code
/*
* To compile: g++ opencv_test2.cpp -o opencv_test2 $(pkg-config --cflags --libs opencv)
*/
#include <opencv2/opencv.hpp>
#include <opencv2/tracking.hpp>
#include <opencv2/core/ocl.hpp>
#include <unistd.h>
using namespace cv;
using namespace std;