Computer Vision – CSCCI935/CSCCI435 Assignment 3 Solved

25.00 $

Category:
Click Category Button to View Your Next Assignment | Homework

You'll get a download link with a: zip solution files instantly, after Payment

Securely Powered by: Secure Checkout

Description

5/5 - (2 votes)

Objective

Design a C/C++ program that extracts moving objects from video using OpenCV library (Version 3.0 or higher).

Tasks

Extraction of moving objects from a sequence of images or video is often used in many video analysis tasks. For instance, it is a key component in intelligent video surveillance systems. In this assignment, you are required to develop a program in C/C++ using OpenCV (v3.0 or higher) to detect, separate and label all moving objects from a given sequence of images or video which has been captured by a stationary camera.

There are three key steps involved in the extraction of moving objects from video captured by a stationary camera:

  1. Detection of moving pixels using background modelling and subtraction;
  2. Removal of noisy detection using morphological operators or majority voting and;
  3. Labelling of separate moving objects using connected component analysis.

OpenCV 3.0 provides various algorithms for each of steps 1 & 2. However, you may have to implement your own connected component analysis algorithm. For simplicity, you may assume that each connected component forms one object. The program should display the original video frames; detected moving pixels after the background modeling and subtraction; the moving pixels after morphological operations or majority voting and; the detected moving objects in a single window as illustrated below (see Table 1). The detected object has to be colour-coded, that is, objects (i.e. connected components) are displayed in different colours.

You also need to produce a one-page report (my-login-name-report.pdf) that describes your implementation of each step, choice of the algorithms at each step and how the parameters for the chosen algorithms are set.

Original Video Frame Detected Moving Pixels
Moving pixels after filtering Detected object (colour-coded)

Table 1: Organization of output window

Requirements on coding

  1. The program should be named as mvDetection and shall take an image file as the input video, e.g. mvDetection videofile.
  2. You may develop your code using Visual Studio. You need to submit the source codeEXCLUDING all binary files. The submitted code must be able to compile using any standard-compliant C++ compiler.
  3. No other third-party libraries should be used in the program except OpenCV 3.0 (orhigher). The code has to be in C/C++.
  • Ass3-2.zip