Skip to content

Instantly share code, notes, and snippets.

// BluetoothLowEnergy.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#pragma warning (disable: 4068)
#include <windows.h>
#include <stdio.h>
#include <tchar.h>
@kwakgang
kwakgang / webcam_capture.c
Created May 2, 2022 03:08 — forked from mmozeiko/webcam_capture.c
Capture webcam device with Media Foundation API
#define COBJMACROS
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#include <mfapi.h>
#include <mfidl.h>
#include <mfreadwrite.h>
#include <stdio.h>
#include <intrin.h>
@kwakgang
kwakgang / MultiObjectTracker.md
Created March 29, 2021 09:05 — forked from harshilpatel312/MultiObjectTracker.md
Multiple object tracker (OpenCV + Python)

Prerequisites

  1. Install opencv
pip install opencv-python
pip install opencv-contrib-python

Usage

  1. Clone multiobjecttracker.py and pascal_voc_io.py.
@kwakgang
kwakgang / multi_object_tracking.py
Created March 29, 2021 09:04 — forked from adioshun/multi_object_tracking.py
Tracking multiple objects with OpenCV
# https://www.pyimagesearch.com/2018/08/06/tracking-multiple-objects-with-opencv/
# USAGE
# python multi_object_tracking.py --video videos/soccer_01.mp4 --tracker csrt
# import the necessary packages
from imutils.video import VideoStream
import argparse
import imutils
import time