Object detection deals with detecting instances of semantic objects of a certain class (such as humans, buildings, or cars) in digital images and videos.
1
vote
1answer
22 views
People Detection and Tracking
I want to do pedestrian detection and tracking.
Input: Video Stream from CCTV camera.
Output:
# people going from left to right
# people going from right to left
# No. of people in the middle
...
-1
votes
0answers
19 views
detect circle between some shapes [closed]
in my image has some shapes(circle,square,triangle).
how can I detect circle between other shapes? and can tell me how many circle there is in my image.many thanks
I = imread('c:\safa\test.bmp');
...
0
votes
1answer
25 views
gamma correction in opencv hog.cpp
I dont understand the code of the gamma correction in hog.cpp in opencv, i went through some links here which doesnt match with the code in opencv hog.cpp
Mat_<float> _lut(1, 256);
const ...
-1
votes
0answers
19 views
Circle Detection using Connected-Components Labelling
I have a code that performs Circle Detection, but the code I have uses something like connected-components labeling (blob extraction).
Can you help me out finding how this is possible?
P.S: I know ...
-1
votes
0answers
61 views
Detecting a filled glass object in openCV [closed]
As someone in the comments suggested, a single picture is worth thousand times the words. Therefore i am adding the picture examples of what i'm trying to achieve and then the old text description ...
2
votes
2answers
89 views
Multiple color object detection using OpenCV
I am attempting to detect the position in the image of both the red walls and the white squares in the picture below of two white wall with red tops and white "posts":
My approach was to do ...
0
votes
0answers
37 views
object detection using SURF and FLANN features
I am using OpenCV's SURF feature extraction and Flann matcher. I have an existing database of images, and a webcam from which I obtain data. I want to compare the webcam images with the database ...
-3
votes
0answers
34 views
measure how far an object in a frame from left side in matlab
I want to ask about the way or instruction of measuring how far an object from the left side of specific frame image using mat lab ?
note that we used key points in the detection of the object and ...
0
votes
0answers
81 views
computer vision real world size pixel size, opencv
My goal is to mount a web camera on a ground vehicle robot and have it recognize lanes and drive in between the lanes. In order to look for the appropriate size lines(lanes) in an image, I am trying ...
3
votes
1answer
48 views
How to categorize True Negatives in sliding window object detection?
I'm gathering results from my image detector algorithm. So basically what I do is that, from a set of images (with the size of 320 x 480), I would run a sliding window of 64x128 thru it, and also ...
0
votes
1answer
42 views
OpenCV traincascade maxWeekCount
I am training a LBP detector with OpenCV, does anyone knows how does the maxWeakCount influence the detector? Does it make it slower or does it make it not so good in detecting?
3
votes
1answer
74 views
What's the common way to merge detection windows in OpenCV / computer vision?
So basically I've created my own pedestrian detection algorithm (I need it for some research purposes, thus decided not to use the supplied HoG detector) .
After detection, I'd have many overlapping ...
2
votes
2answers
105 views
How to speed up svm.predict?
I'm writing a sliding window to extract features and feed it into CvSVM's predict function.
However, what I've stumbled upon is that the svm.predict function is relatively slow.
Basically the window ...
0
votes
1answer
75 views
OpenCV parallel lines cull
I have an algorithm that simply goes through a number of corners and finds those which are parallel. My problem is, as shown below, that I sometimes get false positive results.
To eliminate this I ...
0
votes
0answers
23 views
uncaught type error: type error, in external script
So Im attempting to use a a JavaScript photo taking application called photo-booth and also attempting to detect when a face enters the screen of the photobooth application and have it put out the ...
0
votes
0answers
14 views
person model trained by MDPM code is abscence of field 'bboxpred'
Why the person model that I trained using the PASCAL dev kit with the Discriminatively trained deformable part model system has no field 'bboxpred'?
I have trained a person model use part of pascal ...
1
vote
4answers
178 views
Is Hog descriptors constructed in peopledetect.cpp?
I am new to hog, I am using opencv2.4.4 and visual studio 2010, i am running the sample peopledetect.cpp in the package and its compiling and running, but i want to understand the the source code in ...
0
votes
0answers
53 views
How to Thread this application
I am using Marvin framework and Java CV (OpenCV),
Objective : - To detect Green region in video and make a rectangle over that area.
Solution : - Using Marvin Framework , i have been able to detect ...
0
votes
1answer
52 views
Stepping into C++ OpenCV source [duplicate]
I have downloaded OpenCV 2.4.4 and visual studio 2010. i am running some samples in the package from here Peopledetect.cpp. I am able to compile and run the sample. what i want to do is step into the ...
0
votes
0answers
67 views
Object recognition from webcam images
I'm trying to make a Poor Man's Kinect. In order to do this, I'm getting frames from the webcam and I need to recognise whether an array of pixels has moved, including some error margin. In order to ...
3
votes
1answer
94 views
line detection within a plain geometry figure
What I want to achieve from the given following image
the coordinates of point A, B, C and D making point A the origin.
the fact there is lineAB, AC, BC and AD.
the fact point D is on lineAB
The ...
7
votes
3answers
228 views
SIFT matches and recognition?
I am developing an application where I am using SIFT + RANSAC and Homography to find an object (OpenCV C++,Java). The problem I am facing is that where there are many outliers RANSAC performs poorly.
...
-1
votes
1answer
114 views
Clear path detection using edge detection [closed]
I want to create an application where a user can detect an unobstructed path using an Android mobile phone. I used a Gaussian filter for smoothing and then used canny edge detection to detect edges.
...
0
votes
1answer
111 views
non-maximum suppression on detection windows
In object detection literature it is common to use a classifier and a sliding window approach to detect the presence of objects in an image, this method returns a set of detection windows and ...
0
votes
1answer
67 views
How to detect rotated and quite deformed object
I have an A4 paper with some black stroked rectangle. I scan the image and try to use some basic OpenCV's function like template matching but I see the image I recive sometime rotated when I put it to ...
0
votes
4answers
514 views
How to draw a rectangle around an object using some openCV algorithm
I am working on object detection with opencv.
I want to draw a rectangle around an object after clicking on it by mouse.
What kind of technique can I use? I tried with SURF but in vain.
Any help will ...
1
vote
1answer
119 views
How to get position (x,y) and number of particular objects or shape in a handdrawing image?
first, I've learning just couple of week about image processing, NN, dll, by myself, so I'm really new n really far to pro. n sorry for my bad english.
there's image or photo of my drawing, I want to ...
3
votes
1answer
80 views
Dealing with drift-over-time in rigid object tracking?
I'm tracking a rigid object that can move slowly or stand still for long periods of time (72 hours). A drawback of most approaches is the error accumulation over time resulting in a drift away from ...
0
votes
1answer
502 views
OpenCV: How to improve accuracy of eyes detection using Haar Classifier Cascade?
I have an application using Haar cascade to detect eyes in the image capture from video camera. The method used is:
void CascadeClassifier::detectMultiScale(const Mat& image, ...
0
votes
1answer
144 views
Optical flow based segmentation
Hi I would like to segment objects in a video sequence based on optical flow (as suggested in this answer), I am using opencv and have been able to generate a flow field for two successive frames ...
3
votes
2answers
360 views
Vehicle segmentation and tracking
I've been working on a project for some time, to detect and track (moving)vehicles in video captured from UAV's, currently I am using an SVM trained on bag-of-feature representations of local features ...
0
votes
0answers
146 views
Object Marking in Haar training
I am doing a project on object detection in OpenCV using haar training. I have to mark, in an image, all the places where the object is present. So, I need a code which opens each image so that I can ...
0
votes
0answers
403 views
OpenCV object detection using canny edges
I'm working on a project where I detect obstacles through an Android smart phone, this application is meant to be a navigational guide for blind people.
I'm using OpenCV to detect canny edges in the ...
0
votes
1answer
222 views
Multiple Face Detection
I have a code in OpenCV (in C++) which uses "haarcascade_mcs_upperbody.xml" to detect upper body.
It detects single upper body. How can I make it detect multiple upper bodies.
I think ...
0
votes
0answers
224 views
how to detect car object from other object using matlab? [closed]
I have been working on this project the main idea of it is to keep the camera on a car while getting close to , the one to be tracked is stationary the camera would be zooming in into the car,the ...
0
votes
1answer
106 views
Low performance of vido streaming by opencv after surf algorithm application
I have applicated SURF algorith in order to detect object on a camera streaming. But, I remarked that there is streaming is a bit slowly.
When i used the windows API GetTickCount(), I discovered that ...
0
votes
2answers
170 views
SIFT or SURF object detection
Please help me out in finding codes for SIFT and SURF object detection. I don't know OpenCV. Where can I download codes for SIFT or SURF object detection?
-2
votes
1answer
174 views
OpenCV Detecting a cylidrical object [closed]
Below, you can see an Image of the "Green Cylinder".
I wish to use OpenCV with python, to detect this green object in an image.
The object (green Cylinder)
An Image to detect the object in
Being ...
0
votes
1answer
62 views
Object Recognition Programmatically? [closed]
Inspired by a recent Kickstarter campaign: http://www.kickstarter.com/projects/dominikmazur/camfind-a-mobile-visual-search-app?ref=category
The app uses the mobile camera to take a picture and ...
3
votes
3answers
315 views
Advanced square detection (with connected region)
if the squares has connected region in image, how can I detect them.
I have tested the method mentioned in
OpenCV C++/Obj-C: Advanced square detection
It did not work well.
Any good ideas ?
...
4
votes
0answers
368 views
android openCV FeatureDetector
I am trying to write a code that applies SURF object detection, so I took one of the openCV samples ( sample 3 ) and I started updating the onCameraViewStarted() and onCameraFrame() methods but I keep ...
-1
votes
3answers
204 views
What is the best solution for rotation invariant detector?
I'd like to create an object detector based on cascade classifier, the only problem is that LBP and Haar features are not rotation invariant. The first thing that comes to my mind is to rotate the ...
0
votes
1answer
158 views
How to create my own setSVMDetector?
When i create statndart detector...
static vector<float> detector = HOGDescriptor::getDefaultPeopleDetector();
if (!detector.size()) {
fprintf(stderr, "ERROR: getDefaultPeopleDetector ...
2
votes
3answers
470 views
Detect object with openCV and python
I'm trying to detect the white dots in the following image using OpenCV and Python.
I tried using the function cv2.HoughCircles but without any success.
Do I need to use a different method?
...
-2
votes
1answer
345 views
Objects detection without knowledge about scene in OpenCV [closed]
I have an assignment in which I am given a video. The video has stationary(wall,trees,car etc) and moving(people,bike) objects. I have to detect all objects and mark a bounding box around them. (of ...
0
votes
0answers
333 views
Python bindings for OpenCV with AttributeError: 'module' object has no attribute 'FeatureDetector_create'
I am using OpenCV 2.3.2 and python but after some sample code and tutorials, and even this simple three-liner:
import cv2
print cv2.__version__
detector = cv2.FeatureDetector_create("SURF")
after ...
1
vote
1answer
228 views
Runtime error Visual Studio and OpenCV Error while using SURF
The following code is supposed to perform feature detection using SURF in OpenCV2.3 on Visual Studio 2010. The image "sample.jpg" is a coloured image (RGB) of a book and the video captured will ...
1
vote
2answers
171 views
Index exceeds matrix dimensions encountered when training a model
I have a problem with training a model using the PASCAL dev kit with the Discriminatively trained deformable part model system developed by Felzenszwalb, D. McAllester, D. Ramaman and his team which ...
0
votes
0answers
118 views
Haartraining in Open CV
I want to detect how many cars in an image. I have successfully used the canny detection to track the cars. Now Many tutorials are showing that i have to generate .vec File from Createsamples.exe and ...
1
vote
2answers
340 views
HOGDescriptor with videos to recognize objects
Unfortunately I am both a python and a openCV beginner, so wish to excuse if the question is stupid.
I am trying to use a cv2.HOGDescriptor to recognize objects in a video and I am now concerned in a ...

