Posts

Showing posts from October, 2018

Open CV: How to read message.

Image
// HellowWorldAPP.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include <opencv2/opencv.hpp> using namespace cv; int main(int argc, char** argv) { // Read the image file Mat image = imread("MyPic.JPG"); imshow("test", image); waitKey(0); return 0; }

Video Examples

How to Use Background Subtraction Methods Back ground subtraction: Back ground subtraction consist of two main steps: 1. Background initialization. 2. Background update. Will generate fore ground masks: MOG MOG2 Finding distance between two curves http://answers.opencv.org/question/129819/finding-distance-between-two-curves/