Tag Info

Hot answers tagged

6

2 things here: You're checking the walltime. difftime returns a double, so it's highly unlikely that you ever get exactly 30 as the outcome. Make it like this instead: if ( difftime( time(0), start) >= 30) break; You specify 15fps for the VideoWriter, but the time you measure is the time spent playing (and writing) the video. (that's totally arbitrary) ...


4

The kernel size in the example image you gave is 3-by-3 (Size(3,3)), yes. A kernel size of 1-by-1 is valid, although it wouldn't be very interesting. The generic name for the operation being performed by GaussianBlur is a convolution. The GaussianBlur function is creating a Gaussian kernel, which is basically a matrix that represents how you should combine ...


4

Your matrix holds 8 bit elements (that is what CV_8UC1 means). You are passing it an array of ints. Assuming 32 bit ints, the first one, 111, should be enough to fill the array. The most significant 8 bits of 111 would go into position 1,1, and these are 0s. So you get an element with value 0. Try passing 8 bit unsigned elements: unsigned char data[4] = ...


3

I am using the Karolinska Directed Emotional Faces (KDEF) photographs for an educational research project. Information regarding the data set is available at http://www.emotionlab.se/resources/kdef. Note that you will probably need to crop, resize, center, straighten, and normalize the images to use them with OpenCV. Once properly prepared, the images work ...


3

OpenCV Matrixes use pointers internally The documentation of the Mat type states: Mat is basically a class with two data parts: the matrix header and a pointer to the matrix containing the pixel values. [...] Whenever somebody copies a header of a Mat object, a counter is increased for the matrix. Whenever a header is cleaned this counter is decreased. ...


3

OpenCV overloads the affectation operator on cv::Mat objects so that the line mat1 = mat2 only affects the pointer to the data in mat1 (that points to the same data as mat2). This avoids time consuming copies of all the image data. If you want to save the data of a matrix, you have to write mat1 = mat2.clone() or mat2.copyTo(mat1).


2

Not sure about OpenCV, but solving this problem shouldn't be difficult. Align the two images and find the difference image as you've already done. Use a NxN sliding window across the difference image, and compute the number of pixels that are significantly different within the window i.e. ignore differences of up to say 10 grey levels. Find the maxima of ...


2

Was CV_FONT_HERSHEY_SIMPLEX in cv(1)? Here's all I have available for cv2 "FONT": FONT_HERSHEY_COMPLEX FONT_HERSHEY_COMPLEX_SMALL FONT_HERSHEY_DUPLEX FONT_HERSHEY_PLAIN FONT_HERSHEY_SCRIPT_COMPLEX FONT_HERSHEY_SCRIPT_SIMPLEX FONT_HERSHEY_SIMPLEX FONT_HERSHEY_TRIPLEX FONT_ITALIC Dropping the 'CV_' seems to work for me. cv2.putText(image,"Hello World!!!", ...


2

You already have the homography matrix, so to get the points on the line, just transform the points from the first image (before rectification) using the homography. This will give you the coordinates in the rectified image. For more details, check the mathematical definition of homography. Basically, you need to find points on the line (or the two ...


2

All you're doing there is building a lookup table; you know the incoming data is chars, so all pixels can only have values from 0-255, so if you're doing gamma correction you precalculate the square-root. This gets used later on, inside the per-pixel gradient calculation. Later on in computeGradients(), you get the row pointer: const uchar* imgPtr = ...


2

Here are the steps you need: // Load image cv::Mat image = cv::imread("image_filname"); // SetImageRoi cv::Rect roi(x, y, width, height); cv::Mat image_roi = image(roi); // note: this assignment does not copy data // image and image_roi now share data // Do some processing on ROI region process(image_roi); // any changes to image_roi will also be in image ...


2

The fundamental problem in your code is that you are reading in a color image but you try to process it as grayscale. Therefore the indices shift and what really happens is that you only process the first third of the image (because of the 3-channel format). See opencv imread manual flags – Specifies color type of the loaded image: >0 the loaded ...


2

If anybody working with this image processing please suggest me what i can do in real object detection using android camera. If it is not possible please give me an explanation why it was not possible. Real time, on the fly object detection is an area of intense research. Right now, our existing algorithms are only capable pattern matching, and looking ...


2

A Mat is indexed in the normal row/col way for matrices, so you want mat.at<uchar>(y, x), not mat.at<uchar>(x, y), or confusion will result. Where you have: vector<Point>::iterator it; it = vect1.begin(); ... for(...) vect1.insert(it,vectN[i]); this will break if the insert causes the buffer to be reallocated, because it then ...


2

To calculate a smoothing for example an average is calculated for the closest pixels. Which and how many pixels that are given by this kernel. The kernal also contains information about weighting of the pixels. The kernel is most often represented as a matrix (and in this case also) which is centered at each pixel that is the average is caluclated for. The ...


2

Shouldn't you be able to extend the CvBlob structure and then add your own constructor and destructor to manage the memory for myDouble? struct MyCvBlob : CvBlob { double* myDouble; // initialize myDouble to NULL in constructor MyCvBlob() { myDouble = NULL; } // free the memory pointed to by myDouble if in use ...


2

You can invoke it as: program [file] where program is the name of your program. On windows it will probably be program.exe. Whatever you put in [file] will be passed to your program in argv[1]. If they are both in the same directory you can do: program file.jpg If the file is in different directory than the program you will need to give the full ...


2

I would try to use a skeleton representation of the image. The problem with your canny, here, is that it basically results in two lines because of the width of the line. Then I would apply the Hough transform on it.


2

If you store your bounding boxes you can check in a for loop in a mouse event handler if a box is clicked and which box is clicked. The code for creating a mouse event: cvNamedWindow("MyWindow", CV_WINDOW_NORMAL); cvSetMouseCallback("MyWindow", mouseEvent, 0); imshow("MyWindow", image); void mouseEvent(int evt, int x, int y, int flags, void *param) { ...


2

You need cvConvertScale this is an example from this question IplImage *im8 = cvLoadImage(argv[1]); IplImage *im32 = cvCreateImage(cvSize(im8->width, im8->height), 32, 3); cvConvertScale(im8, im32, 1/255.);


2

I have worked mainly with OpenCV and also with scikit-image. I would say that while OpenCV is more focus on computer vision (classification, feature detection and extraction,...). However lately scikit-image is improving rapidly. I faced that some algorithms perform faster under OpenCV, however in most cases I find much more easier working with ...


1

From the opencv website: The org.opencv.android.JavaCameraView class is implemented inside OpenCV library. It is inherited from CameraBridgeViewBase, that extends SurfaceView and uses standard Android camera API. Alternatively you can use org.opencv.android.NativeCameraView class, that implements the same interface, but uses VideoCapture class as camera ...


1

Answering my own question... With the help of these two references, I ended up not using DFT at all, but using OpenCV's cv::dct() and cv::idct() instead. To answer the question, fftwf_plan_r2r_2d(...,FFTW_REDFT10, FFTW_REDFT10,...) can be replaced by this OpenCV code with the additional scaling: cv::dct(img, resFFT); // fwd dct. This is like Matlab's ...


1

You don't have much training data. Note how Dalal and Triggs in their original paper on HOG (http://lear.inrialpes.fr/people/triggs/pubs/Dalal-cvpr05.pdf) used thousands of examples to train the SVM, you have just 5 negative and 5 positive. You haven't set the C parameter (you need to find a good value via cross validation) - you will need more data. ...


1

You can do a couple of modifications to make it more faster. Your code takes following time in my laptop: IPython CPU timings (estimated): User : 50.92 s. System : 0.01 s. Wall time: 51.20 s. I made following modifications : 1 - removed the function genHist and implemented it inside calcEntropy(). It will save, may be 1 or 2 ...


1

You might want to get familiar with techniques called structure from motion. If You have series of pictures from the same camera, taken in short intervals, You could acquire some 3D informations about the scene on the pictures. Unluckily, I do not know of any library that would do this for You out of the box, but it's a pretty popular problem, so some ...


1

I did something similar - I grabbed the pixels in the delegate method, made a CGImageRef of them, then dispatched that to the normal priority queue, where it was modified. Since AVFoundation must be using a CADisplayLink for the callback method it has highest priority. In my particular case I was not grabbing all pixels so it worked on an iPhone 4 at 30fps. ...


1

Use this to crop your image. Now to detect the color of the image take a pixel from the square and detect it's color with this. After finding the RGB value use a simple conditional statement to see if the square is red blue or green.


1

Did a lot off image analysis in video surveillance. First you need to define what is a success rate you need. If you are trying all of this on one Image than you are probably aware that this is not going to work :). On the video analysis you can search for some good algorithms for motion detection which are going to give you all moving objects on some ...


1

I don't know if I understand you exactly, but here it comes. You need to create BufferedImage object to get RGB value: File f = new File(yourFilePath); BufferedImage img = ImageIO.read(f); You can get RGB Color values from the image from then. Now you have 4 squares, so to check their RGB values, you can check the corner pixels' RGB values: Color ...



Only top voted, non community-wiki answers of a minimum length are eligible