Background-subtraction is a Computer-Vision technique that given a frame sequence from a fixed camera, processes pixels and separates them into foreground and background pixels.

learn more… | top users | synonyms

0
votes
0answers
2 views

How Can I Segmenting A Solid Blob for Extracted Foreground from BackgroundSubstractorMOG2?

I want to segmenting blob in black and white mode for extracted foreground from BackgroundSubstractorMOG2 without cvBlob. Because I tried several ways to install cvBlob but always failed.. T_T So ...
0
votes
0answers
21 views

using cvRetrieveFrame get strange image

I am reading a avi file, and do some background subtrcation work. The wierd thing is when I use cvRetrieveFrame, I got a strange image, like below: origin: cvRetrieveFrame returns: I don't know ...
0
votes
2answers
81 views

(Resolved) Remove Shadow from Extracted Foreground

I'm newbie with OpenCV + C++ + Visual Studio 2012. And now I need to learn them. Here's the code for background substraction/foreground extraction, and I need to remove the shadow from the foreground, ...
1
vote
3answers
206 views

OpenCV Background subtraction with varying illumination

I'm working on a project where I have to automatically segment different parts of a car (i.e. door, headlight, etc.) in an image provided by a cam. In a first step I'd like to remove the background, ...
1
vote
1answer
55 views

Extracting foreground from video stream

I am working on a video processing project which takes camera feed as input and have got a static background. I dont need any sort of dynamic background generation as that of BackgroundSubtractorMOG ...
1
vote
3answers
269 views

BackgroundSubtractorMOG2 & OpenCV

I'm trying to compile the simple example at http://mateuszstankiewicz.eu/?p=189 I'm running Ubuntu 12.10 64 bits.I use OpenCV 2.4.4a I compile using a makefile that does this : g++ ...
0
votes
1answer
140 views

Combining Background subtraction and Opticalflow

I'm trying to make some moving object detection (segmentation of foreground moving object from background) with slow illumination changes (= background change). Sometimes osme parts of the object are ...
2
votes
3answers
135 views

For what kind of applications can i use dsp core of beagleboard? Can i use the DSP acceleration for background subtraction algorithm?

For what kind of applications can i use dsp core of beagleboard? Can i use the DSP acceleration for background subtraction algorithm in OpenCV?
0
votes
0answers
126 views

Back projection (backgorund subtraction) using Imgproc.calcHist in OpenCV (openCv4Android)

I am currently working on an Android application and would like to make back projection. The tutorial I am following is : ...
0
votes
1answer
430 views

CodeBook background subtraction with moving objects

I am trying to use CodeBook method for OpenCV to subtract the background. So far so good, but I am not sure if I can update the codebook for moving objects after some time span, say 5 minutes, I need ...
0
votes
0answers
72 views

Background Subtraction algorithm in OpenCV installed in linux angstrom on BeagleBoard Xm with DSP acceleration

I am trying to implement Back Ground subtraction algorithm using mixture of Gaussian in OpenCV installed in Linux Angstrom on BeagleBoard Xm. Can I use the DSP core of the BeagleBoard Xm to accelerate ...
1
vote
0answers
74 views

OPENCV4ANDROID learning material [closed]

I am an amateur Android programmer and I would like to learn how to perform Image Processing Techniques such as Filtering and background subtraction. From my research I found that OpenCV4Android is ...
0
votes
1answer
124 views

Convex hull on the mask outputted by BackgroundSubtractorMOG

I am using the BackgroundsubtractorMOG() to basically extract a mask to separate out the foreground. I am then using convexHull() on the mask to locate the position of a moving object. But i am ...
0
votes
0answers
153 views

Adaptive Gradient based background subtraction

I have to implement gradient based background subtraction used in this paper link] by javed,khurram and Mubarak. They have used Gaussian distribution to model the gradients.I am not able to ...
0
votes
1answer
139 views

CvBGCodeBookModel A good explanation?

I have been running in and out of OpenCV 2.4.3 trying to figure out the extra functions and parameters that can be used to CvBGCodeBookModel based background subtraction. The documentation is not very ...
0
votes
1answer
523 views

Code Book Background Subtraction - Everything explodes to become white

I am new to the OpenCV background subtraction model that is definte using codebook method. I was running the sample code here and to see how it works, seems a very great approach. I was trying to ...
0
votes
2answers
374 views

Is it possible to use ViBe algorithm, implemented in opencv, for systema without GPU?

I want to test ViBe algorithm for Background Subtraction. Currently I am using opencv libraries. I found out a sample implementation in opencv/samples/gpu/bgfg_segm.cpp and bgfg_vibe.cpp files. These ...
1
vote
1answer
296 views

black on black motion segmentation in Matlab

I have a video that I am using background subtraction and motion segmentation on. The floor in the video is black, so when I get the silhouette the feet and parts of the legs are cut off. Is there a ...
1
vote
2answers
455 views

How can shadow tracking be disabled in BackgroundSubtractorMOG2?

Im trying to disable shadow detection in openCV when using the BackgroundSubtractor algorithm BackgroundSubtractorMOG2. However even after setting bShadowDetection to false, the algorithm still seems ...
2
votes
1answer
2k views

Background Subtraction with OpenCV 2

Is there any OpenCV 2.4.2 function or class that implements an Image Background Subtraction algorithm? The images I will be processing will be portraits, such as images from a webcam. I want to keep ...
4
votes
1answer
1k views

Otsu thresholding for depth image

I am trying to substract background from depth images acquired with kinect. When I learned what otsu thresholding is I thought that it could with it. Converting the depth image to grayscale i can ...
4
votes
3answers
2k views

Cannot set user parameters in BackgroundSubtractorMOG2

OpenCV library version 2.42. I'd like to set a parameter in BackgroundSubtractorMOG2 object, e.g. BackgroundSubtractorMOG2 bgr; // the following doesn't work because 'nmixtures', 'backgroundRatio' ...
0
votes
1answer
2k views

OpenCV C++ videocapture image background subtracting

I am trying to make a simple program that will subtract an object from a background with OpenCV and C++. The idea is to use the VideoCapture to: Capture a static background (without the object) ...
4
votes
2answers
714 views

Mask for BackgroundSubtractorMOG2

How can I tell BackgroundSubtractorMOG2 which pixels to update to the background model and which pixels shouldn't. I am facing problem when there's an object entered the scene and stopped for a few ...
0
votes
1answer
773 views

Background Subtraction for Road Traffic Monitoring

I have to detect cars on a video stream (recorded) and provide some traffic data. I have read that background subtraction is the most important step so that we can be able to extract foreground ...
0
votes
0answers
533 views

Background subtraction MOG with images

I found an example from background subtraction with mixture of Gaussian. The example is with a video. I would like to do it with images. My camera makes images at 60fps. So instead of a new frame i ...
0
votes
1answer
215 views

How does opencv store matrix value in Gaussian mixture? In which order?

I've searched the "bgfg_gaussmix2.cpp" code, it says in gaussian mixture model, it stores mixture weight (w), mean ( nchannels values ) and covariance for each gaussian mixture of each pixel ...
4
votes
1answer
1k views

opencv Function CvBGStatModel

I was just wondering how this function CvBGStatModel() works. I mean to say what is the algorithm used for this and how it gives better results compared to average and frame difference algorithms. ...
4
votes
2answers
2k views

Easy, but not elementar background subtraction in opencv?

I have to make almost what is said in Efficient Background subtraction with Opencv (Background subtraction with the foreground with colour except with a camera and not a video file). The problem is ...
0
votes
2answers
403 views

Detecting objects in an image

Alright so this one might be a little tricky and I'm more looking for direction than a specific answer I suppose. Essentially I need to do some object detection in a VB.net application. I want to ...
3
votes
2answers
843 views

Using time in OpenCV for frame processes and other tasks

I want to count the vehicles from a video. After frame differencing I got a gray scale image or kind of binary image. I have defined a Region of Interest to work on a specific area of the frames, the ...
2
votes
1answer
606 views

Scientific image processing (in ImageJ) - advice for removing background

I have a bunch of movies of bacteria splitting, and I'm supposed to track them down and detect the splits and so forth. Now, I'm a newbie to this area, so I'm looking for initial advices on how to ...
3
votes
1answer
551 views

Opencv: Background Subtraction: Access violation

#include "opencv/cvaux.h" #include "opencv2/opencv.hpp" #include "opencv2/opencv_modules.hpp" #include "opencv2/imgproc/imgproc.hpp" #include "opencv2/highgui/highgui.hpp" #include ...
10
votes
2answers
3k views

How to use cv::BackgroundSubtractorMOG in OpenCV?

I'm using OpenCV2.2 to implement moving objects detection with the method of Background Subtraction. And I use the Gaussian Mixture Model(GMM) method to model the background reference image. I ...
0
votes
1answer
212 views

How to track detected object

I've read a lot about object/tracking detection. There are a lot algorithms in moving objects tracking such as frame differencing, background subtraction etc. Also there are a lot object detection ...
0
votes
2answers
637 views

Detect rect of white objects on a black background using opencv

I'm using frame differencing and opencv to detect movement between frames (absdiff, threshold, erode, etc). How can I get the coordinates of the individual locations of the movements (the rect: x, ...
1
vote
1answer
1k views

subtraction frames opencv

hey i tried to do subtraction between current frame to previous, (the code attached ) the code running but i get errors and gray window without result the errors i got on command prompt: Compiler did ...
2
votes
2answers
1k views

Background subtraction in opencv2

I am trying to detect foreground motion using opencv2 by removing static (mostly) BG elements. The method I am using is based on taking the mean of a series of images - representing the background. ...
1
vote
2answers
1k views

OpenCv Issue of Image Subtraction?

i am trying to subtract 2 image using the function cvAbsDiff(img1, img2, dest); it working but sometimes when i bring my hand before my head or body the hand is not clear and background comes into ...
0
votes
2answers
253 views

Per Pixel Thresholding

I was wondering if it is possible in opencv to have a threshold value per pixel. For example p(x,y) should be above 100 and then p(x+1,y) should be above 101. You can see this as background ...
0
votes
1answer
364 views

Background subtraction in c#

im sutdying a background subtraction technique. I came to know that using the initialized library Emgucv can provide me with what i want. i want to get the output of a moving object. the object that ...
6
votes
2answers
2k views

OpenCV Android Background Subtraction

I am working on a robotics project using an Android phone as the main processor and the camera to detect movement. I got the Android binary package from OpenCV and got it correctly installed. I can ...
0
votes
1answer
296 views

OPENCV Weird Error

I am using Background Subtraction and want to display the contents. Somehow the code seems to break all the time due to a memory exception. The error seems to be in cvCopy function. Can't figure it ...
1
vote
1answer
514 views

OpenCV edge enhancement

I am performing background subtraction to obtain a moving car from a video as below ( Running average background modeling) I am applying findContours() after this to draw a polygon around the car. ...
12
votes
1answer
2k views

OpenCV C++/Obj-C: Proper object detection

As some kind of "holiday project" I'm playing around with OpenCV and want to detect and measure stuff. Current workflow (early stage - detection): Convert to grayscale (cv::cvtColor) Apply ...
8
votes
1answer
2k views

OpenCV findContours issue

I have the following code which performs background subtraction and then uses findContours to draw a boundary around the foreground object. // frame - Input frame from a camera. // output - Output ...
4
votes
2answers
4k views

opencv background substraction

I have an image of the background scene and an image of the same scene with objects in front. Now I want to create a mask of the object in the foreground with background substraction. Both images are ...
4
votes
1answer
4k views

Background subtraction in OpenCV(C++)

I want to implement a background averaging method. I have 50 frames of images taken in one second and some of the frames contain lightning which I want to extract as the foreground. The frames are ...
2
votes
1answer
2k views

OpenCV background subtraction/codebook?

Im trying out the codebook method, but don't really understand the point of int t in a code_book struct. Its the variable used to "Count every access", but this completely lost me. Count what access ...
3
votes
1answer
799 views

OpenCV hand recognition?

After spending on a while on this, I finally managed to detect the hands through thresholding. The only problem is that VERY FEW pixels in the background remain, which will mess up the next step. Any ...

1 2