Computer vision enables images, or sequences of images, to be processed by a computer using an algorithm. The aim of the algorithm is to extract information from the image. Sometimes this information produces an updated image or sometimes other measurements. An example of an updated image is to ...
0
votes
0answers
12 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, ...
0
votes
0answers
15 views
Active Appareance Model (AAM)
I apologize for my bad english.
I'm trying to implement the ative appareance model, I'm at the step where I compute the texture model. I understood that the effects of differences in illumination are ...
0
votes
1answer
11 views
onPreviewFrame YUV grayscale skewed
I'm trying to get the picture from a surfaceView where I have the camera view running,
I've already implemented onPreviewFrame, and it's called correctly as the debug shows me.
The problem I'm ...
0
votes
0answers
13 views
OpenCL pixel check
I have a opencl kernel that does some warping on an images. This is a forward mapping and each kernel instance handles the mapping/warpping of one pixel in the source image. This means that some ...
2
votes
0answers
12 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
22 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
51 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 ...
1
vote
1answer
34 views
libSVM outputs “Line search fails in two-class probability estimates”
When I tried to train a SVM(trainsvm function) with RBF kernel,
The libSVM library outputs "Line search fails in two-class probability estimates" during training.
After training, the training ...
0
votes
1answer
24 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
57 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
43 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
18 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
vote
1answer
42 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
18 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
29 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
42 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
1answer
50 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
20 views
Laplacian Pyramid for radiography contrast enhancement [closed]
I've read that the Laplacian Pyramid can be used to enhance the contrast of radiographies. I've read what is this kind of pyramid about and also that it can be used to reconstruct an unsampled image ...
0
votes
0answers
26 views
Papers on High Dynamic Range Imaging (HDRI) with applications in computer vision?
I would like to know some application (industrial, preferably) based papers (journal/conference) on HDR, something related with: welding, surveillance, illumination normalization or any application ...
0
votes
1answer
23 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 ...
0
votes
1answer
16 views
Freak Descriptor Row type
I have the following code:
//newImg is a mat of an image and orderedKeyPoint is the result from Fast
cv::FREAK extractor;
cv::Mat queryDescriptors;
extractor.compute(newImg, orderedKeyPoint, ...
0
votes
0answers
19 views
Emgu object detection using MatchShapes for connected components with holes
I've been working on a shape matching function, using emgu, for detecting objects given a template of the object and a target image in which to find it. The target image can contain multiple instances ...
-2
votes
0answers
21 views
How to implement ANFIS in OpenCV? [closed]
I am new to machine learning....looking for some guidance. Could somebody please suggest me/link/idea on how to implement ANFIS in opencv? Is there any built-in learning scheme for this in OpenCV? I ...
-4
votes
0answers
20 views
Computer Vision Example [closed]
I need to know how to solve this question:
B- Given the following 1D image, show how can correlation be used to search for the template 8 | 4 | 2 in this image independent from the magnitude of ...
0
votes
5answers
37 views
OpenCV Video module tutorials
As you know there is no opencv official tutorial for video module. That tutorial section is empty. I googled but couldn't find anything good. Any of you know a good OpenCV video module tutorial in ...
0
votes
0answers
40 views
Identify body parts of a human within an isolated image using opencv [closed]
Information:
I am looking to identify the limbs of a human in an image. For the sake of simplicity, one can assume that the Image has been filtered of all background and that only the Human is ...
1
vote
2answers
60 views
Should I calculate matrices on the GPU or on the CPU?
Should I prefer to calculate matrices on the CPU or GPU?
Let's say I have the following matrices P * V * M , should I calculate them on the CPU so that I can send the final matrix to the GPU (GLSL) ...
0
votes
1answer
21 views
SimpleCV 1.3 is not
I just install SimpleCV 1.3 on Windows 7. During the install I got a message: "this program could not have been correctly installed setuptools-0.6c11.win32-py2.7.exe". When I run the first example
...
1
vote
0answers
29 views
Saving an SVM as an exportable file
In my iOS project I have to train an SVM in opencv2 with a large set of images (~40,000). This SVM is static (just train it once with no additional learning). Obviously, this takes a long time to ...
0
votes
1answer
20 views
SUN benchmark code Invalid .mex file error
I've downloadad the SUN benchmark code from MIT:
version 2:
http://people.csail.mit.edu/jxiao/SUN/source_code/
Once I download the 15 image dataset and run the function:
compute_features.m
I ...
2
votes
0answers
68 views
Why is neural network not predicting?
I am trying to train a neural network using backpropagation algo. in OpenCV 2.3.
However it is not predicting correctly....not even on training dataset. Could anybody please help me find whats wrong ...
1
vote
0answers
56 views
Comparing n image matrices
I have a classification task on a number of gray-scale images (m classes and n images in each class). Before showing my classification results, I want to show that the intra-class variation between ...
0
votes
0answers
39 views
Bresenham's line drawing algorithm function [closed]
In some websites including Wikipedia it is said that if f(x,y) < 0 then the lower point is chosen; other websites say that if f(x,y) < 0 then the upper point is chosen. Which one is correct? Is ...
0
votes
1answer
22 views
Is it possible to match an image with its appearance in a video?
I have a short video of 10 mins. This video is actually an online lecture. When you watch it, you will only see slide show (some slides are annotated).
I have the original slides (pdf or image or ...
0
votes
0answers
35 views
Extract polygons using OpenCV
I trying using OpenCV for polygon detection.
After filtering and canny i have:
How i can take polygon points and fix problems in green circles?
Thanks.
0
votes
2answers
52 views
How to get coordinates of pixel after shape was rectified?
I'm using EmguCV wrapper for OpenCV and I'm rectifing this shape:
with help of this code:
public Image<Bgr,byte> Rectify()
{
try
{
Image<Bgr, byte> ...
0
votes
1answer
31 views
Can object detection be treated as an unbalanced classification
In the object detection problem, the background class seems to dominate the training data, since there are much more background samples than object samples.
So, can we treat object detection problem ...
0
votes
0answers
16 views
Multiple Kernel Learning for heterogeneous features
I have extracted two different set of features / descriptors from a depth image, first is based on the 2D silhouette, and the other one is based on normal of the surface.
Right now I'm trying to ...
0
votes
2answers
58 views
Format of High-Dynamic Range (HDR) images and how to process them?
I have some questions regarding High-Dynamic Range (HDR) images. First, can somebody please tell me about how these images are stored, I mean in which format? and how many bits per pixel?
Second, is ...
0
votes
0answers
53 views
Image-based reconstruction using triangulation
I'm currently trying to implement the triangulation algorithm proposed by Hartley and Sturm (here) and I'm having some difficulties. I think I understand the idea behind it, but I'm not sure how to ...
0
votes
0answers
25 views
Camera Calibration and 3d Reconstruction [duplicate]
the result of 3d reprojection using StereoSGBM (in opencv) algorithm is the X,Y,Z coordinates of each pixel in the depth image.
points = PointCollection.ReprojectImageTo3D(disparityMap, Q);
...
0
votes
1answer
86 views
Skin detection from hue-saturation histogram - OpenCV Python
I'm working on a little program in python to estimate the direction of pointing gestures with 2D picture from a monocular camera and I'm using OpenCV 2.3.
I know it's a bit tricky but I'm motivated! ...
2
votes
0answers
36 views
Has anyone else gotten Lisp's CL-OpenCV Wrapper for C++'s OPENCV to work on Windows 8? I'm trying here are my steps
Maybe this could be a place where like minds can come together and get this working...
I installed OpenCV using the "Installation by Using the Pre-built Libraries" section at the top of this ...
0
votes
0answers
46 views
An unhandled exception of type 'System.AccessViolationException' EmguCV
I'm getting "An unhandled exception of type 'System.AccessViolationException'as given below in my code. The video file I have given is 91 MB of size and my RAM is 4 GB (OS - Windows 32 bit)
An ...
1
vote
1answer
66 views
Ignore external points when finding rectangles
I have some images like this where I need to find the central rectangle
Im using a variation of the EmguCV examples to find rectangles and came with this
using (MemStorage storage = new ...
0
votes
0answers
67 views
Stereo Calibration and 3d Reconstruction
the result of 3d reprojection function is a matrix that has X,Y,Z of each pixel.
let's take the first element of this matrix points[0] which has: X= 414.580017 Y= -85.03029 Z= 10000.0
what is the ...
0
votes
0answers
27 views
Matlab: accessing both image sequences from a 3D video file
I have recorded a 3D video using a Fujifilm Finepix Real 3d w3 camera. The resulting video file is a single AVI, so the frames from both lenses must somehow be incorporated within the single file.
I ...
0
votes
1answer
33 views
How to get point cloud from binocular vision
I'm looking for a software that can generate point cloud from binocular cameras.
Is there any software provides utilities to do this?
-1
votes
0answers
53 views
Bundle adjustment for 2D panorama?
How to apply bundle adjustment method for 2D panorama which images just have simple shifts?
I need some global error minimization technique for planar panorama like here.
Literature often talks ...
2
votes
3answers
59 views
OpenCv crashes when calling from android activity
i have this code in which i use openCV to launch a camera. The code is given below. If this class "MainActivity" is used as the main class then every thing works fine but if i use it from another ...



