The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
43 views

Matching thermographic / non-thermographic images with OpenCV feature detectors

I’m currently working on building software which can match infrared and non-infrared images taken from a fixed point using a thermographic camera. The use case is the following: A picture is taken ...
0
votes
0answers
27 views

C# exe running issue with EMGU CV

I have been working on Microsoft Visual C# 2010 for an image processing program. The software uses EMGU CV 2.4.0. The program is very long (consists of 8 very lengthy functions) so i cannot post it ...
0
votes
0answers
20 views

Add an upload file field to jomsocial registration

I need to put an upload file to my jomsocial registration form, so my customers can upload their cv. I see this question is often asked, but I have found no answer that really works. I know how to ...
0
votes
2answers
75 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, ...
0
votes
0answers
15 views

CvReshape using JavaCV

I have this matrix of 90 by 70 and I'm trying to reshape it to 1 by 6300 using Cvreshape. I'm doing this using javacv so they're no pointers involved here. It seems like the matrix is initialized to ...
0
votes
0answers
36 views

Android presentation site [closed]

I need some site for dynamic presentation of Android apps to reference it to my CV. Fluid UI is ok, but I need something more convincing because on this site every one can build an user interface. Or ...
0
votes
1answer
67 views

Search images from a webcam (Google Goggles style)

I'd like to find images, from a database I have, using a webcam. Specifically, I'd like to set up a "price kiosk" where people can walk up with an item, put it in front of the camera, and have it ...
0
votes
1answer
307 views

OpenCV's Cascade classifier face detect freezing

I've been working on a face detection script that lets you detect multiple faces at once, using OpenCV's (cv2) Haar Cascade Classifier, yet , every time I call this function , the program freezes ...
1
vote
1answer
127 views

direct and inverse fourier transform in EMGU CV

I'm doing a small experiment using fourier transform on emgu cv. My aim is to have the fourier transform of an image, then take the inverse fourier transform again, and check if the image shows up or ...
-6
votes
1answer
47 views

How to do a sky detection in a Digital image

I want to detect the sky area in a digital image,how can I do that,thanks!
1
vote
1answer
327 views

Trouble using Kinect ColorImageFrame with Emgu CV

I'm working on a project for school involving C#, Kinect, and Emgu CV. I fairly new to both C# and Emgu CV, so I may be missing something simple. What I am trying to do is use the image from the ...
2
votes
2answers
225 views

Open CV - Python RGB to GRAY convertor

I wanted to code this RGB to grayscale convertor without any inbuilt Open-CV function. This is how my code looks like import cv2 , numpy def GrayConvertor(img): rows , cols , layers = img.shape ...
3
votes
1answer
99 views

Alpha Blending in Emgu CV

Hi I am learning Emgu CV. I would like to perform alpha blend(addWeighted). I have the following codes Image<Bgr, Byte> image = new Image<Bgr, Byte>(filename); Image<Gray, Byte> ...
0
votes
0answers
177 views

Error while importing cv module in python

I've tried to import cv in python but I get this error: undefined symbol: _ZN2cv17phaseCorrelateResERKNS_11_InputArrayES2_S2_Pd I executed first this command: export ...
0
votes
1answer
175 views

Python - CV2 change dimension and quality

I managed to take a picture with Python and CV2 library, but I'd like to change the dimension of the image and get something not high quality and resize it down at 640. My code is: cam = ...
1
vote
0answers
320 views

JavaCV on android ExceptionInInitializerError

I'v been trying to run JavaCV code on an Android project. This code worked for me while running on Windows 7 (using Eclipse). i searched for the errors i got and tried setting everything up as ...
0
votes
1answer
313 views

How do i use the Emgu CV _SmoothGausian Method

Im trying to get the OCR sample app to recognise some small text and how I'm doing it is to resize the image. Once I have resized the image it is all 'pixel-ee' I want to use the SmothGaussian method ...
1
vote
1answer
541 views

attempt to convert SSE2 Fast Corner score code to ARM Neon

I was trying to port some SSE2 code (fast corner detector score computation) using ARM Neon instruction. The code is quite simple at first sight but the results are different for some reason. The ...
0
votes
2answers
137 views

Using libccv with UIImage

Let's say I have a UIImage (or NSData) object and my goal is to use it with libccv without having to write anything to disk beforehand. My problem is that I don't know how to get from such object to a ...
0
votes
1answer
120 views

Camera properties for 3d using specular reflection

Could any one help in clarifying the following description taken from the article "Local Shape from Mirror Reflection" by Savarese, Chen and Perona. "Let c be the center of projection of the camera. ...
2
votes
1answer
765 views

What's the difference between EDISON and cvPyrMeanShiftFiltering

I am doing some staff with mean shift segmentation. I found the code called EDISON(http://coewww.rutgers.edu/riul/research/code/EDISON/) ,which has implemented a good one. Also, opencv has a function ...
1
vote
2answers
690 views

Image features extraction

I have a visual marker like this one and a blob detection algorithm in Java .. How can I extract the regions of the image so that I can run the blob detection algorithm on each one separately so that ...
4
votes
1answer
3k views

A query on performance comparison of OpenCV-Python interfaces, cv and cv2

I started using new OpenCV-Python interface, cv2, few days back. My doubt is regarding the comparison of cv and cv2 interface. Regarding the ease of use, new cv2 interface has improved far greater, ...
0
votes
1answer
389 views

Speed up stitching of 2 images?

I am working with 2 fly cameras and trying to stitch them together. I am working with OpenCV and C++ here. Since I am trying to cover large region using both cameras (and to contour detection later ...
1
vote
0answers
93 views

Open CV won't compile

I'm trying to compile some opencv code, but it is failing. I'm pretty sure I have the libraries included but it still has undefined references to the functions. I'm running this command: gcc ...
3
votes
1answer
465 views

Fastest Way to Load a Screenshot Into Memory for CV Template Matching

What's the fastest way, in ubuntu 11.10, to take a screenshot with python and convert the screenshot into a format that's compatible with this question about image template matching?
4
votes
4answers
886 views

Computer vision, C++ OR Java

I'm a complete newbie in the computer vision world and recently I implemented some examples using openCV with Java. I'm impressed with the potential this area has and wish to continue learning more. ...
1
vote
1answer
244 views

How do you triangulate a 3D point from a pair of stereo images?

I'm working with a stereo pair of photos, and trying to obtain a set of 3D points from matching points on these 2 images. How exactly is the 3D point triangulated? Do you throw a ray from the camera ...
3
votes
2answers
781 views

OpenCV 2.0: where is adaptors.py?

I am trying to use OpenCV 2.0 in python on a Mac. I need to be able to convert between the OpenCV IPL format and the PIL Python Imaging Library format. The top answer on this question How do I create ...
0
votes
1answer
2k views

How to configure visual studio 2010 with opencv cvblobs library

I'm having difficulty of installation/ compilation of cvBlob into OpenCV Microsoft Visual Studio 2010 in WINDOW. I understood that there is a installation guide work on linux but I couldn't find how ...
1
vote
1answer
197 views

Simple remote git log for my resume

In my resume I have a list of open source projects I've contributed to. In order to make it easy for people reading my resume I'd like to include a one-liner which will help them verify that I've ...
0
votes
3answers
2k views

null undeclared identifier Error

i dont know what happened as this was running grand a few days ago but now im getting an error about an undelcared null identifier in the detectcircle() method. if(p==null){return;} i dont know whats ...
0
votes
1answer
2k views

System.TypeInitializationException using Emgu.CV in C#

At this point I have a function which calls for an image from my camera interface. This image is then saved to hard drive and also displayed in the Windows Forms GUI. The function inside the camera ...
1
vote
1answer
565 views

Fund matrix using Surf with Ransac in Matlab

I'm trying to implement SURF with Ransac for fundamental(F) matrix estimation in Matlab. Then I calculated epipoles as null spaces of F matrix. I used OpenSURF from File Exchange and Ransac from ...
2
votes
1answer
2k views

Opencv error on python

no matter what "CV_FOURCC" I use I get this: OpenCV Error: Unsupported format or combination of formats (Gstreamer Opencv backend doesn't support this codec acutally.) in ...
2
votes
1answer
2k views

How do you set the frame size of cv.CreateVideoWriter

if I try: writer = cv.CreateVideoWriter(file, -1,(int(800),int(600)), is_color=1) -or- writer = cv.CreateVideoWriter(file, -1,(800,600), is_color=1) -or- writer = cv.CreateVideoWriter(file, ...
-1
votes
1answer
4k views

visual studio 1error LNK2001: unresolved external symbol _mainCRTStartup,2 error LNK1120: 1 unresolved externals

code: #include "stdafx.h" #include"highgui.h" #include"stdio.h" int main(int argc, CHAR* argv[]) { cvNamedWindow:( "Example2", CV_WINDOW_AUTOSIZE ); CvCapture* capture = ...
2
votes
2answers
2k views

opencv and python in osx - but how?

I tried to install opencv and python with port and brew. but when i try import cv it says "module not found". i have the same problem on my windows machine and just no solution works. is there a ...
1
vote
1answer
800 views

Multiply a CvMat* and a number

I'm working with some filters in OpenCV and don't know how to multiply a number (1/5) in this example CvMat* kernel=0; IplImage* dst = cvCreateImage(cvGetSize( entrada ), IPL_DEPTH_8U, 3); ...
0
votes
1answer
173 views

Accessing negative pixel values OpenCV

IplImage* pRGBImg = cvLoadImage(input_file.c_str(), CV_LOAD_IMAGE_UNCHANGED); int width = pRGBImg->width; int height = pRGBImg->height; int bpp = pRGBImg->nChannels; for (int i=0; i < ...
0
votes
1answer
707 views

emgu cv matrix access row and cloums with channel c#

hiii, how can i access a matrix with a specified row , column and channel Matrix<double> tensor = new Matrix<double>(yMax + 1, xMax, 4); //4 channels CvInvoke.cvZero(tensor ); ...
2
votes
1answer
129 views

C# - Image question

What would be the appropriate way to determine if 2 taken images match in the color gamma terms? I need to differ the images taken in one series (panorama-like) from completely other images. This ...
0
votes
0answers
727 views

circle detection in python

I am new to python. I prefer to learn it by experimenting. For 4 days I have been working on my cv.HoughCircle opencv function in python to detect a circle in a frame. But unfortunately I couldn't ...
1
vote
1answer
925 views

How to calculate 3D coordinates of a point in OpenCV

I have got a calibrated stereo-camera system and pixel positions of the same object in views of both cameras. Is there any easy way to calculate 3D world coordinates of the object using OpenCv (and ...
2
votes
2answers
712 views

Sorting 2D coordinates

I have got a problem with finding the corresponding points in multiple views of the same calibration artifact. Below you can see exemplary images of the calibration target. I need to sort 2D ...
1
vote
0answers
148 views

Weird relationship in cvQueryFrame( ) instruction

I noticed that there is a weird behaviour with cvQueryFrame isntruction. I usually work with IplImage* frame; as the variable to contain the actual frame. frame = cvQueryFrame(capture); With this ...
3
votes
3answers
3k views

Homography, inliers/ Emgu CV/ SURF in C#

How can I get inliers/outliers of matched kyepoints using homography or some other method in C#? I am working on SURF example provided on ...
1
vote
3answers
1k views

Functions with const arguments and Overloading

Was tryin out the stackeroverflow qn so it got me thinking why not overload the the function and I came up with a slightly different code but it says the function cannot be overloaded. My question is ...
2
votes
3answers
477 views

Programming competitions and job seeking [closed]

Does it help for wellrated competitors in finding good jobs? Do recruiters/HRs take into account mentions in CVs about participations in such contests? Do you think it will be a plus to write in CVs ...
8
votes
5answers
21k views

Suggest terms to describe language proficiency level in your CV [closed]

What's the best way to describe your level of skill in particular technologies (languages, platforms, OS, ...) when polishing your CV ? Assume we are talking about the short CV of the kind where you ...

1 2