Hi there, I'll try to answer your question for reliability and performance. The best performance you will get using C/C++ with unmanaged code, no doubt about...
74917
abed443
Nov 1, 2010 8:20 am
hi, i tried to write a code for convolution filter but i am unable to convert the image into image array or matrix. Could u pls help me that how can i convert...
74918
Rajesh Kumaran
helloperation@...
Nov 1, 2010 8:26 am
what about Mat_<Vec3b> image=imread("image.jpg"); and access each array with image.at<Vec3>(height,width)[channel]...
74919
sm5192009
Nov 1, 2010 9:30 am
Why not just use an exisiting opencv C# wrapper and write all of your code in C#? http://code.google.com/p/opencvsharp/...
74920
kenrickrilee
Nov 1, 2010 11:20 am
Bump?...
74921
ramanpreetsohal
Nov 1, 2010 11:20 am
@asheem7 Thanx for the reply. I just want to tell you that another program using cvCreateFileCapture runs successfully. Moreover I tried the method described...
74922
Saad
saad_abbasi
Nov 1, 2010 11:20 am
I'm using the Hough Transform to detect vanishing points in a series of images. But I need to know the accumulator value so I can detect the point where they...
74923
mrwelcam
Nov 1, 2010 11:20 am
Hi, im wondering if someone could give me some advise on how best to find the points where the neck and the shoulders meet? I was thinking of maybe using the...
74924
merdal38
Nov 1, 2010 11:20 am
Hello everyone, as a new user of Opencv, I have some questions. Is there anyone who can help me about the color compensation of the camshift algorithm? In...
74925
tsaifi9
Nov 1, 2010 11:21 am
does anyone know how to configure opencv (2.1) to run on windows 7? I've been following the tutorials from opencv and others and none have worked. I've finally...
74926
Andro R
andror2004
Nov 1, 2010 11:21 am
Good afternoon! I would like to know how to run OpenCV with Python 2.7. already copied the files to the site-packages, but python does not recognize. I look...
74927
Entrada
davidmarcelo...
Nov 1, 2010 12:26 pm
You can also use emgu.cv: www.emgu.com Regards, 2010/11/1 sm5192009 <sam.muscroft@...>...
74928
Phani Bhushan Tholeti
tpb261
Nov 1, 2010 3:54 pm
... that. Of course then out can't be a file pointer, it should be simple array, that is written out to a file at a later stage. Phani Bhushan Let not your...
74929
zikoro
Nov 1, 2010 7:09 pm
Hello everyone, I hope not to bore you with the usual questions from beginners. After following several guides online for no good end, I decided to ask you. We...
74930
Alexander Schwan
alexander+opencv@...
Nov 1, 2010 7:10 pm
Hi all, im looking for a solution to find enclosed regions, e.g. inner circles or - very important - rectangles / squares. I come from Halcon, there is a...
74931
blue_sunshine_seven
blue_sunshin...
Nov 1, 2010 7:10 pm
hi, i'm trying to display the spectrum after building the DFT with cvDFT by using CV_DXT_FORWARD. I also downloaded ImageJ and tested what the target state...
74932
blue_sunshine_seven
blue_sunshin...
Nov 1, 2010 7:10 pm
hi, I'm trying to implement the wiener deconvolution with openCV and C++. I'm using the following equation: destination=x*source where x is the inverse DFT of...
74933
vadymvaler
Nov 1, 2010 7:10 pm
You can do it by cvFilter2D...
74934
opencv
cvpr2011
Nov 1, 2010 7:11 pm
I am looking for a way to compare two images... Any help is appreciated Thanks in advance...
74935
maxpower2201
Nov 1, 2010 10:09 pm
Hi Avanindra, i already multiplied by 16. cvPoint3D32f( points1[i].x , points1[i].y,16 *( (points1[i].x-points2[i].x) - (cxl-cxr) )); In this equation the...
74936
jundiver
Nov 1, 2010 10:10 pm
findFundamentalMat I try to make epilines from generated test data. but, storange result. why? *input points, parallel transition simulated. Qi = Pi + (10,0) ...
74937
eva
cvpr2011
Nov 1, 2010 10:10 pm
Is there an OpenCV implementation for Lagrange moments?...
74938
mansu
mashhurs
Nov 2, 2010 12:13 am
hi, there is my code compares two images and you get destination image (difference image) void cvImgDiff(IplImage* source1, IplImage* source2, IplImage* dest) ...
74939
mansu
mashhurs
Nov 2, 2010 12:20 am
By the way, if condition is depends on your requirement, I mean in my project I distinguished clutter image from the work image and didn't care background...
74940
Shervin Emami
emami_s
Nov 2, 2010 2:38 am
Or you could just use cvSub() to subtract the 2 images. But chances are, you don't want to just subtract 2 images, because it will be full of image noise. You...
74941
cv3dpgh
Nov 2, 2010 3:30 am
Since opencv is written in C (with many c++ wrappers), you'll need to either wrap opencv for C# yourself, or get one of the wrappers already out there...
74942
cv3dpgh
Nov 2, 2010 3:31 am
you're fighting a tough battle. I've used Eclipse for Linux and Visual Studio on Windows (express version is free). Is that an option for you? Also, Eclipse...
74943
Samuel Audet
guardia36
Nov 2, 2010 3:44 am
... Glad to hear Java still beats C# in usability :) Samuel...
74944
Alper Yaman
alperyaman
Nov 2, 2010 8:00 am
Additionally, these wrappers may not include latest updates or some functions of OpenCV. For example, I used OpenCVSharp for one of my project but I could not ...
74945
Malte Oeljeklaus
malte.oeljeklaus@...
Nov 2, 2010 9:06 am
I suppose you're referring to the Harris Corner Detector? Can you please point me an article on how to do object recognition using the method you referred to,...