2
votes
1answer
28 views

OpenCV full rotation from moments?

I'm trying to recognize an object in an image from a previously stored contour of the same object. Having had immense trouble with feature detection (my objects don't seem to have any features, at ...
0
votes
2answers
24 views

how to obtain a single channel value image from HSV image in opencv 2.1?

I am a beginner in opencv. I am using opencv v2.1. I have converted an RGB image to HSV image. Now I want to obtain single channels Hue, Value and Saturation separately. What should I do? I have seen ...
1
vote
2answers
28 views

opencv sift algorithm, how to get confidence from findHomography

I am trying to create an application for iPhone, but I am a new developer for both openCV and iOS. I have more than 50 object images, I have one scene image from camera. In each time I have one of ...
0
votes
1answer
36 views

Better converting to gray?

Is there a better way to converting (RGB) image to grayscale than This way produces light intensity, which may not mark objects well for further processing. For example, if we have some hotspot or ...
2
votes
1answer
20 views

How to join/union contours in OpenCV?

Is suсh operation as "joining" exists/reasonable for contours? Since contour delimits some area on the plane multiple contours can be unioned as sets. Isn't they? If yes then how to union contours? ...
1
vote
1answer
19 views

How to use SimpleBlobDetector in OpenCV?

What does SimpleBlobDetector actually does? It returns some points to me, but what are these points? Does blob detector finds image regiouns of similar properties, including colors? Can I ...
0
votes
1answer
26 views

rotation precision of known object

I would like to use OpenCV to find a QR-Code in an image and to get the rotation angle of it. How to find the object is shown in the Features2D + Homography to find a known object example of the ...
1
vote
2answers
30 views

What are Canny thresolds?

Is it possible to make Canny to ignore short edges or to ignore low gradient edges? In my case I have card lying on wood and see numerous edges of wood structure after canny What two thresholds in ...
0
votes
1answer
24 views

Properties of histogram equalization? Enhance contrast without artefacts?

In my case histogram equalization produces a lot of artifacts on shaded areas after Canny processing. Actually these areas contain very slow color variations, but they are enhanced by equalizer. Is ...
0
votes
1answer
71 views

Backgound extraction

Can anyone suggest me a fast way of getting the foreground image? Currently i am using BackgroundSubtractorMOG2 class to do this. it is very slow. and my task doesn't need that much complex ...
0
votes
0answers
26 views

Use computer vision library to improve camera auto focus?

I am researching an app idea and am no expert in computer vision. Is it possible to use a library, like OpenCV, to improve a camera's autofocus? Say, a camera attached to a smartphone. Or is it ...
0
votes
0answers
27 views

Why is my haar classifier slow?

I trained a HAAR classifier to detect hands in a LIVE VIDEO FEED from the webcam. I used 621 positives & 3712 negatives. I used opencv_createsamples to generate the vec file for positives: ...
1
vote
2answers
41 views

How should I prepare positive images for HAAR training for hand detection?

I am using this dataset: http://www.robots.ox.ac.uk/~vgg/data/hands/ However, I am only going to use hands which are > 4200 sq pixels in area, which leaves me with just 621 hands. I realised that ...
0
votes
1answer
36 views

Ignoring bright motion from an image

I am currently trying to write a C# app that will detect motion. For a 'blob' motion, if the object is of high luminance then ignore it. I do this to remove moths/bugs that come close up to a ...
0
votes
1answer
46 views

Finding the distance of object from a logitech camera .

I want to find the distance of an object from camera . Note here I am using single camera . Camera autofocuses to focus on planes at particular distance from camera . Is there a way I can find this ...
1
vote
1answer
50 views

Using get() and put() to access pixel values in OpenCV for JAVA

I am a beginner in using OpenCV for JAVA. I want to access individual pixel values of an image matrix. Since, JAVA jar for OpenCV doesn't offer nice functions like C++, I ran into some trouble. After ...
2
votes
2answers
64 views

How do you map Kinect's depth data to its RGB color?

I'm working with a given dataset using OpenCV, without any Kinect by my side. And I would like to map the given depth data to its RGB counterpart (so that I can get the actual color and the depth) ...
0
votes
0answers
65 views

Motion Detection in OpenCV [closed]

I need to do motion detection in OpenCV. The software should detect each and every important motion (human walking, car is driving) and not unwanted motions (curtain waves with the wind). OK, This ...
0
votes
0answers
21 views

iOS Drawing detection with Open CV [closed]

I am looking for a way to programmatically extract colorized pixels of a drawing drawn on a solid colored background. To be more precise, it will be an iOS app with which user can take the picture of ...
1
vote
0answers
39 views

Orientation of non symmetrical a shape in Emgu or OpenCv

I'm trying to obtain the orientation of a shape (binary or contour). The shape is mostly rectangular but has a large hole on one side. I want my orientation to be consistent with this assymetry in the ...
0
votes
1answer
57 views

Image comparation libraries for fingerprints

I'm want to develop a server-side application for fingerprint sensor. There will be one database of fingerprints on server and a comparation mechanism. Sensor will send image to the server. I'm ...
3
votes
3answers
55 views

How to copy single image from vector of images to a temporary cv::Mat?

I call a function rgbTOgray and trying to copy each image in a "vector of images" (which is a vector of colored images) to a temporary cv::Mat using a for loop. And, convert it to grayscale using ...
-2
votes
0answers
44 views

How to compare two images using node.js? [closed]

Given a region in a jpg image, I want to compare that region with a similar image to find if there is a difference. I am looking into node-opencv https://npmjs.org/package/opencv, but I am not sure ...
0
votes
1answer
31 views

How to implement PSNR in JavaCV?

I have found the implementation of PSNR in OpenCV written in C++, but I am having trouble to implement this in JavaCV. ...
-2
votes
0answers
47 views

How to evaluate human skin by image analysis? [closed]

I'm going to create a skin evaluation (health) app. Is there any paper or algorithm about face health analysis? I have some high resolution face images. I want to: Detect if there's any blackheads ...
2
votes
1answer
58 views

Achieving Heat vision [closed]

I am sure this is going to be a stupid question, but asking in case I have some "LUCK". I am doing a project and my professor said "try to use heat vision as well". I am doing the whole project in ...
2
votes
1answer
31 views

Pose estimation with emgu

I would like to do pose estimation of a chessboard target using emgu. I have already determined the camera intrinsics. However, I can't find the solvePnP function in emgu which I think should solve my ...
-1
votes
1answer
24 views

Does pose estimation require non co-planar points?

I am a newbie to computer vision. I have been reading some research papers and also came across this implementation of pose estimation, http://opencv.willowgarage.com/wiki/Posit . Now it seems that ...
1
vote
1answer
73 views

Is TBB pre-Enabled in Opencv-2.4.5?

I have posted a question in Opencv answers group regarding the performance of TBB. An this is the link. The answer in this link states as below. Probably you used the 2.4.5 library with and ...
1
vote
1answer
55 views

Image size consideration for Haar cascades

The OpenCV Haar cascade classifier seems to use 24x24 images of faces as its positive training data. I have two questions regarding this: What are the consideration that go into selecting the ...
3
votes
1answer
102 views

Layer size of Neural network in OpenCV doesn't work

I'm trying to use OpenCV's Neural Network: ANN::ANN() { // 4 rows and 1 col with the type of 32 bits short. CvMat* neural_layers = cvCreateMat(4, 1, CV_32SC1); cvSet1D(neural_layers, 0, ...
1
vote
1answer
75 views

Opencv with both TBB and IPP [closed]

I have build Opencv With TBB enabled. And used "detectMultiscale" and wrote a basic program to detect the face. I couldnt find any changes in processing time if there is a face in a frame. Also i ...
-2
votes
0answers
77 views

OpenCV object recognition [closed]

This time I'm not searching for implementation but for advice based on OpenCV experience. For example, I would like to take a picture of someone in front of the Eiffel tower and to train my computer ...
2
votes
0answers
63 views

Compiling OpenCV 2.4.5 with IPP 7.1 on Linux

I'm trying to compile opencv 2.4.5 on Ubuntu (12.10) with TBB and IPP 7.1. I'm using cmake to configure the makefiles, with this command: cmake -D WITH_TBB=ON -D WITH_IPP=ON ../opencv-2.4.5 Having ...
2
votes
1answer
48 views

Three image rectification

Have anyone tried or know if it is possible to rectify three images in opencv? I have three cameras in a "L" setup. Meaning one camera in "the middle", one under it, and one next to it. I can rectify ...
1
vote
1answer
46 views

OpenCV: How to get weak lerners from adaboost in

Is there a way to extract the features corresponding to the weak learners from the adaboost algorithm implemented in Opencv ? I know that adaboost combines a set of weak learners based on a set of ...
0
votes
0answers
73 views

How to calculate aspect ratio of the object in image?

I have an image of the painting. which was photographed at a certain angle. for example: With help of homogrophy matrix I make rectification of this painting: //I'm using EMGU Image<Bgr, ...
2
votes
0answers
27 views

BRISK in javaCV - How to initialize the descriptor matrix?

I am trying to run BRISK within java using the openCV wrapper javacv. I don't have any problems running a FAST corner detector but I am stuck on how to run the compute function. When I run this code: ...
0
votes
0answers
52 views

Finding homography matrix

What is wrong in my code? It gives bad homography matrix for some reason. SurfFeaturesFinder finder(1); vector<ImageFeatures> vec_features; for(int i=0;i<vec_im.size();++i) { ...
0
votes
3answers
71 views

How to detect darts on a dart board using Computer Vision in OpenCV? [closed]

I'm a newbie to the world of Computer Vision. Here's what I need to do. Given an image, pick out and draw a circle around all the locations in the image which contain an object A. In other words, say ...
0
votes
1answer
36 views

Using embeddedFrameCounter in the FlyCapture2 C++ API

I want to implement a framesafe capture with Point Grey Research cameras. To do that, I want to check if any frames have been missed by any cameras. The wrapper class that I am extending to do this is ...
2
votes
1answer
95 views

Comparing computer vision libraries in python [closed]

I want to decide about a Python computer vision library. I had used OpenCV in C++, and like it very much. However this time I need to develop my algorithm in Python. My short list has three libraries: ...
1
vote
1answer
64 views

Record a video in opencv only for 30 secs

How to record a video in opencv only for 30 seconds. I used the below code but it records video only for 24 seconds? What is the issue? #include "opencv2/objdetect/objdetect.hpp" #include ...
0
votes
1answer
25 views

Couldnt read the video that is captured by JMF framework

I used JMF framework to capture the video from a web cam and storing it to the local directory as ".mov" file. I couldnt play the stored video in other machines, where as I can play the video in my ...
-1
votes
1answer
102 views

Get Laplacian pyramid using opencv

I'm trying to get a layer of the Laplacian pyramid using the opencv functions: pyrUp and pyrDown. In the documentation and in more detail in this book, I found that the i-th Laplacian layer should be ...
0
votes
1answer
30 views

findFundamentalMat returns 9x3 matrix

I use OpenCV 2.4.5. When I use findFundamentalMat with method FM_7POINT I get 9x3 matrix in result. But when I use findFundamentalMat with any other method and with only 7 points in images (in order ...
1
vote
0answers
88 views

Moments as feature and KNN classifier using OpenCV and Python - Knearest doesn't classify

I have a set of twelve shapes and I'm trying to determine the shape of a query image with the my database For convinience I have done all the preprocessing in MATLAB and have stored the shape ...
0
votes
2answers
48 views

Error while finding differences in frames from camera

int main(int argc, char* argv[]) { VideoCapture cap(0); Mat current_frame; Mat previous_frame; Mat result; Mat frame; //cap.open(-1); if (!cap.isOpened()) { ...
0
votes
2answers
130 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 ...
0
votes
1answer
27 views

Universal camera control for multi platforms

I need to adjust the parameters of the camera like 1) brightness 2) contrast 3) Hue etc., as show in the below window. I need to do it for Windows and Linux environments. Can some one give me tips ...

1 2 3 4 5 19