0
votes
3answers
34 views

OpenCV: Understanding Kernel

My book says this about the Image Kernel concept in OpenCV When a computation is done over a pixel neighborhood, it is common to represent this with a kernel matrix. This kernel describes how ...
-1
votes
2answers
42 views

Understanding OpenCV Image Smoothing

This question is about this tutorial http://docs.opencv.org/doc/tutorials/imgproc/gausian_median_blur_bilateral_filter/gausian_median_blur_bilateral_filter.html#smoothing In that code, all the ...
0
votes
2answers
35 views

Changing brightness and contrast of an image

Please have a look at the following code #include <opencv2/core/core.hpp> #include <opencv2/highgui/highgui.hpp> #include <iostream> using namespace std; using namespace cv; Mat ...
0
votes
3answers
32 views

EMGU with C# WPF

I'm trying to follow the following tutorial but using WPF instead of Win Forms: A Basic Program WPF doesn't use PictureBox, instead it uses Image. So here goes trying to load an Image. XAML ...
0
votes
0answers
17 views

Image synthesis or Image stitching for chassis examination?

I'm working on a project which I have to use a few fisheye cameras mounted on a small robot to go under a car and take images of parts of its chassis and combine those images into one high-resolution ...
0
votes
1answer
43 views

Is it possible to convert a edge detection output to binary image OpenCV

I am trying to convert a text document to a binary image by first detecting its edges and then converting it to a binary image based on output of edge detection. Can someone help me in this regard. ...
0
votes
1answer
43 views

opencv setting submat of Mat to another Mat

I am having problems using the setTo() method. My code is as follows: ArrayList<Mat> someImagesOfSameSize = new ArrayList<Mat>; someImagesOfSameSize.add(img1); ...
2
votes
1answer
31 views

Printing the pixel values of YUV image

When i convert a image to YUV from RGB I cant get a value of Y when I try printing the pixels. I get a value 377 and when I cast it with integer I get 255. WHich I presume is incorrect. Is there a ...
-1
votes
1answer
99 views

OpenCV 2.4.5 read and display image crash

Good morning all, I am encountering a problem when attempting to run a simple program to open and display an image, the program will compile and run and create the "My Image" window, however the ...
0
votes
1answer
43 views

Clear text from binary Image OpenCV [closed]

I am trying to reduce noise from a document and convert it to a binary image.I have almost cleaned the image but the characters are still not clear.Can someone please have a look at the image and ...
0
votes
2answers
49 views

Junction point in image skeleton

What is the meaning of a junction point in image skeleton ? I am using opencv and c++ to develop a code source to detect the main local junction point in the image .Many thanks in advace .
0
votes
2answers
40 views

OpenCV image pointer not working as expected

So I have to do some operations on part of an image. The operation is not relevant (i dont change this code at all), but the way i create the pointer changes the results i get. I dont understand why ...
-1
votes
1answer
41 views

OpenCV - Array of Images, or Buffer of Mat

How, can I have a buffer or array of images "Mat" with OpenCV? I mean: Mat images; images[0] = imread(...) images[1] = imread(..) etc... How can I do this?
1
vote
2answers
54 views

How to do image back projecting correctly?

Please have a look at the following code #include <opencv2/core/core.hpp> #include <opencv2/highgui/highgui.hpp> #include <opencv2/imgproc/imgproc.hpp> #include <iostream> ...
1
vote
1answer
65 views

Negative image is completly black

Please have a look at the following code. It is OpenCV 2.4.5 Histogram1D.h #ifndef HISTOGRAM1D_H #define HISTOGRAM1D_H #include <iostream> #include <opencv2/core/core.hpp> #include ...
0
votes
1answer
74 views

image retrieval (CBIR) with bag of words

I want to use bag of words for content-based image retrieval. I'm confused as to how to apply bag-of-words to content based image retrieval. To clarify: I've trained my program using SURF features ...
0
votes
1answer
28 views

Converting images between colour spaces

In my book, the method to convert a image from one colour space to another is cv::cvtColor(). But, I can't find that method in cv namespace! In other words, I am using VS 2010 express, and the ...
0
votes
2answers
78 views

Access violation writing location 0x00000000

Please have a look at the following code ColorDetector.h #pragma #include <iostream> #include <opencv2\core\core.hpp> #include <opencv2\highgui\highgui.hpp> using namespace std; ...
0
votes
2answers
42 views

Matlab's Conv2 equivalent in OpenCV

I have been trying to do Convolution of a 2D Matrix using OpenCV. I actually went through this code http://blog.timmlinder.com/2011/07/opencv-equivalent-to-matlabs-conv2-function/#respond but it ...
1
vote
1answer
80 views

Sharpening an Image - Accessing neighbor pixels

Please have a look at the following code #include <iostream> #include <opencv2\core\core.hpp> #include <opencv2\highgui\highgui.hpp> using namespace std; using namespace cv; void ...
3
votes
2answers
116 views

Counting particles using image processing in python

Is there any good algorithm for detecting particles on a changing background intensity? For example, if I have the following image: Is there a way to count the small white particles, even with the ...
-2
votes
0answers
65 views

To match the per pixel intensity of one image to the per pixel intensity of another [closed]

Objective: To find a method for matching per pixel intensity of one image with another image IDE: MS Visual Studio 2010 ; Library: OpenCV 2.4 ; Domain: Image Processing ; Details:-- Data: ...
0
votes
1answer
233 views

Comparing textures with OpenCV and Gabor Filters

As part of a project, I'm trying to measure how similar are 2 textures sampled from an image. (I take 2 squared samples of about 40 x 40 px). After I take the samples, I pass them to a bank of Gabor ...
0
votes
1answer
213 views

Image processing using java and opencv

I have to do a project of image processing using java and opencv libraries. I would know where can I find useful information because the most i've found is for using opencv with C not with java. I ...
0
votes
1answer
82 views

Pattern Image Processing

I am want to make a simple application that will detect a patterns on the wall like the image below. So the patterns will be pasted on the wall. The camera will rotate around 360 degrees and ...
0
votes
0answers
32 views

load image with “textbox path” and convert to the gray scale

I need to get image from file with textbox->text. And I need to convert gray scale. I am getting this error. <---cannot convert parameter 1 from 'System::String ^' to 'const char *'---> My code: ...
3
votes
1answer
59 views

Face matching after detection

I am working on a software that will match a captured image (face) with 3/4 images (faces) of same person. Now there are 2 possibilities 1- That the captured image (face) is of the same person ...
1
vote
1answer
113 views

Opencv cvSaveImage

I am trying to save an image using opencv cvSaveImage function. The problem is that I am performing a DCT on the image and then changing the coefficients that are obtained after performing the DCT, ...
0
votes
0answers
181 views

OpenCV Crop Image using four points

I am trying to crop an image then be able to display the image. I have four points in two arrays and it would make a rectangle shape. I have a code that i think would do the job but it is giving an ...
0
votes
1answer
108 views

Transfer coordinates to a new system

I would like to convert a point coordinates to a new generated coordinate system the original system start in the top left corner of the image (0,0) The information that I have in a new system are ...
4
votes
1answer
130 views

Stretch region of image through opencv or opengl in iOS

I am trying to make double chin in fat image as mentioned in my desired result image below. I have morphed the normal face to fat face by wrapping an image on mesh and deformed the mesh. Original ...
2
votes
1answer
101 views

Where are the C++ implementations of the advanced ellipse detection algorithms?

I'm a novice in the field of ellipse detection/extraction. But I know this topic has a long history. Although there are tons of papers addressing ellipse detection, I can hardly find any C++ ...
0
votes
2answers
158 views

Merging three grayscale [R, G, B] images into a single color image in opencv

I have 3 grayscale images that I created using the split function. Now I want to regenerate the color image back. I tried the following code but it did not work. The resultant image I got was still ...
0
votes
1answer
213 views

Edge Smoothing and filling inner contours in opencv with iOS

I am trying to tan human skin with different intensity with help of opencv. I have already identified human skin and changing color tone of those pixels. But it is not smooth. Top left - original ...
1
vote
3answers
80 views

Consistent ways of memorizing one dimensional information in 24 bit color

Say that I have a scalar information assigned to every pixel of a 2D rectangle R, e.g. a grayscale image, or a depth-map/bump-map. Such a scalar information is canonically encoded in a 8 bit image, ...
1
vote
1answer
156 views

Watershed example in [android] opencv

Currently trying <code> public Mat onCameraFrame(CvCameraViewFrame inputFrame) { mRgba = inputFrame.rgba(); Imgproc.Canny(mRgba, markers, 80, 90); Mat threeChannel = ...
1
vote
1answer
39 views

Is anybody able to open this jpg with opencv 2.4.3?

i have a problem to open this picture in with OpenCV-2.4.3 functions imread, cvLoadImage and cvLoadImageM. It returns me always an empty Mat or IplImagepointer. Many many other jpg.s are working but ...
0
votes
1answer
370 views

Compare the similarity of two images with opencv?

I want to check two images are similar or different with opencv. if they are same printf("same"); if they are not same printf("not same"); is there any method or way for that in opencv?
0
votes
1answer
155 views

image encryption using XOR

Okay I am working on a video processing project and this include encryption of each frame and writing it to a file (outputenc.avi). I use a key.jpg to encrypt each file using XOR operation and its ...
0
votes
1answer
132 views

methods of face detection?

i want to know the best method of face detection because i'm working on predict face emotion application so Before analyzing the facial expression of a face fixed or moving, it should detect or ...
3
votes
1answer
225 views

Image Recognition - Binary Descriptor representation in Mat - OpenCV Android

I am just curious. I am new here so be please considerate to my somewhat noobish question. Let's say I am doing android application with image recognition, where all processes even computationally ...
2
votes
1answer
271 views

Opencv Android Template Matching in Java

I am trying to create a template matching method for my application. What my app does is able to take in images from the camera or sd and what i need to do is to look for symbols at the corners of the ...
0
votes
1answer
136 views

OpenCV program freezes after several seconds of execution

I am running a program in C++ with OpenCV that reads a camera image and then does some stuff. The camera operates at 15 FPS if I just let it run as fast as it can. I am trying to use a camera to ...
1
vote
4answers
54 views

find out dimension of object in image in cpp

I have a image which contains object. I have to find out the dimensions of the object (in pixels). Does anyone know how I could calculate that using cpp?
1
vote
0answers
127 views

Image comparison with a database

I would like to know if what I'm trying to do is even possible, or if I'm just trying to do the impossible/ solve an unsolvable problem up to know. My goal is to compare images (They`re going to have ...
1
vote
0answers
100 views

Deformed Template/Image Matching

Well, i've been wondering what would be a good way to go about finding deformed subimages in a image/template. At this moment i'm using cv2.matchTemplate, and it works from time to time, it depends on ...
0
votes
1answer
207 views

What Default Type Mat Image OpenCV4Android?

ImageManipulationsActivity.VIEW_MODE_BINARY: capture.retrieve(mRgba, Highgui.CV_CAP_ANDROID_COLOR_FRAME_RGBA); Mat binary = new Mat(); Imgproc.cvtColor(mRgba,binary, Imgproc.COLOR_RGBA2GRAY, 4); int ...
0
votes
0answers
66 views

python - OpenCV TypeError when using moments with a thresholded image

After manipulating some code found on the net, (http://www.davidhampgonsalves.com/2011/05/OpenCV-Python-Color-Based-Object-Tracking) I am attempting to track coloured objects. While running the code, ...
0
votes
4answers
167 views

GUI to view values in image using OpenCV in ubuntu12.04

Is it possible to simultaneously display an image and the pixel,coordinate values based on the mouse pointer positions? I am asking an OpenCV equivalent of imview function in MATLAB.
0
votes
2answers
589 views

Mirror image in opencv

I need to flip (mirror) a frame received from webcam and I followed a code like this: cv::flip(gray,gray,1); imshow("flipped",gray); gray is cv::Mat format and flipped is a cvNamedWindow. I get ...

1 2 3 4 5 8