OpenCV (Open Source Computer Vision) is a cross-platform library of programming functions for real time computer vision. It was officially launched by Intel in 1999 and is now supported by Willow Garage. Uses include: Human-Computer Interaction; Object Identification, Segmentation and ...
1
vote
2answers
22 views
OpenCV Android wrong coordinates
I'm facing a very strange issue with OpenCV for Android :
when I'm accessing pixel with Mat.at it gives me the wrong pixel on the screen :
A simple example :
for( double y = (mat.rows - h) / 2 ; y ...
2
votes
1answer
55 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:
...
0
votes
0answers
14 views
Unable to use flags in opencv Python?
Im unable to use flags in Opencv
for example
COde:
import cv2
image = cv2.imread('k.jpg',cv2.CV_LOAD_IMAGE_GRAYSCALE)
cv2.namedWindow('Pic',cv2.CV_WINDOW_NORMAL)
cv2.imshow('Pic', image)
...
0
votes
0answers
10 views
Android opencv Utils.matToBitmap not working on some devices
I am developing an android app using opencv. I have an opencv mat file, and want to convert it to Bitmap. I am using opencv with Static Initialization. Here is my code:
mIntermediateMat = new Mat ...
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 ...
1
vote
1answer
42 views
scale pixels of an image using opencv library and c++
I'm trying to create simple 1D Barcode Reader using OpenCV 2.4.5 and Visual Studio 2010 Express.
Here is my code so far:
//define Image path:
char* imageName = "D:\\Barcode Reader\\test3.jpg";
...
1
vote
0answers
29 views
OpenCV - can't draw long line
I use OpenCV 2.4.5. I want to draw the lines between matched points of two images. The code is:
const int &w=image1.cols;
for (size_t i = 0; i<good_matches.size(); i++ )
{
//-- Get the ...
0
votes
0answers
10 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 ...
0
votes
3answers
41 views
How to convert IplIImage 8bit to IplImage24Bit in OpenCv?
How to convert IplIImage 8bit to IplImage24Bit in OpenCv ?
I have 8bit Image and i want to convert it to 24Bit IplImage
Suggestions please..
0
votes
0answers
32 views
Compiling with FPU on ARM board
I am using mini6410 ARM 1176 board to run image processing application using OpenCV. I am using ARM toolchain 4.5.1 as supplied by the manufacturer of the board with certain options that may be of ...
1
vote
1answer
33 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
2answers
25 views
ORB compute bug: it removes all keypoints with a small image
I have a small image 50x50. I find ORB keypoints with:
(Notice that I have to change the default param of patchSize from 31 to 14 to get some keypoints detected):
OrbFeatureDetector ...
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 ...
1
vote
2answers
27 views
Why is the range of hue 0-180° in opencv
Can anybody explain to me why the hue value of an HSV image in OpenCV only goes to 180° and not the full 360°?
I have found somewhere that OpenCV uses a 180° cylinder, but I can not really visualize ...
0
votes
1answer
35 views
OpenCV 2.4.5 & Boost for Passing VideoCapture
Issue: Want to pass cv::VideoCapture objects into a different thread. I want to be able to dynamically handle how many cameras I can have.
Proposed Solution: Insert into a vector and pass as argument ...
0
votes
1answer
9 views
Implementation of Matlab API ordfilt2 in OpenCV
I am translating the code written in Matlab to OpenCV.
In Matlab, there is ordfilt2 function.
Is there any similar implementation in OpenCV?
Thanks
0
votes
2answers
37 views
Picking contours using the mouse?
My project takes a bitmap snapshot of the client area of a given window, and converts this data into an IplImage instance. Then after a grayscale conversion, threshing etc, bounding boxes are drawn ...
1
vote
3answers
33 views
reading image using argv [duplicate]
I am new to this concept and I believe that is should be the silliest question anyone to ask here. SOrry but I am really not sure.
image = imread(argv[1], CV_LOAD_IMAGE_COLOR);
My problem is, ...
0
votes
1answer
12 views
unit of argument -s for calibration.cpp
I'm now reading the code of
http://code.opencv.org/projects/opencv/repository/revisions/master/entry/samples/cpp/calibration.cpp
according to the code, it has an argument called -s which the default ...
0
votes
0answers
14 views
how to generateRandomTransform with OpenCV
I tried to generate Random Homography Matrix that could be used to transform planar object image. It seems that opencv has a class "patchgenerator". But I can't find detailed information of this ...
1
vote
1answer
30 views
OpenCV - Detect hand-drawing shapes
Could OpenCV detect the geometric shapes which is drawn by hand as below? The shape can be a rectangle, triangle, circle, curve, arc,polygon,...
I am going to develop an android application which ...
1
vote
1answer
17 views
OpenCV VideoCapture does not block on OS X
Short version: on OS X, if I call VideoCapture::read() from a thread other than the main() thread, the call returns immediately instead of blocking till a new frame.
This one works as expect:
void ...
0
votes
1answer
32 views
Android App using opencv: how to save an image without overwriting?
I'm using the following code to save an image to a folder when I select an option:
File path = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES);
String filename = ...
0
votes
0answers
66 views
Eye Blink Detection in Java
I am developing an application in Java that should recognize, through images captured from a webcam, the blinking of the eyes of a person. For this, I am using OpenCV, I can recognize the person's ...
-1
votes
0answers
20 views
Can't install OpenCV in OSX
i've tried everything that is posted on the internet to install OpenCV for python in Mountain Lion, and everything failed.
I can install it, but there are no python bindings for it; there are no ...
0
votes
1answer
33 views
OpenCV 2.4.4 wth CUDA: registerPageLocked fails
I am trying to page-lock a Mat that has already been created.
Consider the following example code:
...
Mat cpuGray;
GpuMat gpuGray;
cv::cvtColor (cpuColor, cpuGray, CV_BGR2GRAY);
...
1
vote
1answer
31 views
OpenCV crashing at resize function
I'm getting a crash inside an iPhone app which is using some OpenCV code. The exception is thrown at the following line:
cv::Mat backup_f = m_color_feature;
cv::Mat backup_t = m_map;
double r = ...
0
votes
1answer
33 views
OpenCV drawing an ellipse from the camshift algorithm output.
I'm using camshift to track tennisballs and drawing an ellipse around the tennisball once its found. However, every so often I get this error
OpenCV Error: Assertion failed (box.size.width >= 0 ...
0
votes
0answers
23 views
OpenCV Stereo Vision Multiply Objects/ Color tracking
I would like to track multiple objects/ colors using the OpenCV library. On Youtube there are a few examples, but they are not really well explained or there is no source code available.
I have ...
0
votes
1answer
23 views
OpenCV portability
I created an algorithm in C, using Dev C++ 4.9.9.2 and OpenCV 2.1 in Windows XP SP3, and I need a solution to run the executable in other computers, without opencv's installation. Just copying the ...
0
votes
0answers
61 views
Face Detection & Face Recognition using Opencv with C++
My Project is to write a Program that recognize faces with Video Camera and compare the recognized Face if the recognized face in database. If it not in Database send Email.
I read in google the face ...
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()) {
...
1
vote
0answers
27 views
opencv - Detect and optimize shapes
I have a challenge where I have to implement a sample apps on Android. This app allows user draw some shapes on the screen (by finger) and then optimize it to vertex based shapes. I am thinking about ...
0
votes
1answer
47 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
0answers
14 views
How to add a button to switch between cameras
How can I add a button to camera-control opencv4android example?
I have simply added in the main.xml file:
<Button
android:id="@+id/imgShoot"
android:text="Capture"
...
0
votes
1answer
13 views
How to extract velocity vectors of a pixels from calcOpticalFlowFarneback
I have been looking to extract velocity vectors of every pixels b/n two frames. I used the opencv function as flows:
calcOpticalFlowFarneback(Previous_Gray, Current_Gray, Optical_Flow, 0.5, 3, 15, 3, ...
0
votes
0answers
29 views
Segmentation fault when using CMVision-based
I'm currently working with a computer vision project, and the problem lies in a function that takes a mode (for color) and a SEGMENTATION pointer as arguments.
This is the segmentation class - ...
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
1answer
33 views
Search detected faces from a database OpenCV
I am working with this Code:
Program sample
the above link has been programmed with the help of this page:
Servo Magazine
This Code can do Extract face, learn face and save the learn face in a ...
0
votes
1answer
24 views
OpenCV camera orientation issue
I have a simple project that just show the camera with org.opencv.android.JavaCameraView.
my problem is that in default the camera is on landscape mode and I can't change this cause I need to define ...
0
votes
2answers
38 views
SURF feature detectors
Maybe this is not a good question but I am confused with one thing. I am using SURF features in OpenCV where the input images are converted to GRAY image.
cvtColor(object, object, CV_RGB2GRAY);
...
0
votes
0answers
22 views
Wrong orientation of JavaCameraView
I have developed an Android app that, using opencv libraries, opens a video stream and captures frames from it. The problem is that the orientation of the application is portrait, and this allows me ...
2
votes
1answer
48 views
+50
Android Camera takePicture is using Previews small buffer
I am developing a project using OPENCV. I have some process on onCameraFrame. While it shows previews, user can take a photo. But in some devices, I take an error after called takePicture(...) method. ...
1
vote
2answers
59 views
A good approach for detecting lines in an image?
I've written some code that uses OpenCV libraries to detect white lines painted on grass. I need someone's opinion on the approach I used (as I'm sure there's a much better way than mine). Also, the ...
0
votes
0answers
14 views
Image thinning process using JAVA, for Minutiae extraction
I have implemented the Zhang-Suen algorithm, with the help of OpenCV. But, the process of thinning is taking too much time. I am using a Binarized image to get it done. Is it taking the time because ...
0
votes
0answers
17 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 ...
0
votes
0answers
15 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 ...
1
vote
1answer
62 views
Person counting for a store using image processing techniques in OpenCV
I am new to image processing and am writing a small application in which I need to count the number of people entering a store. The entry point is fixed and there are 4 camera feeds in the same video ...




