-1
votes
0answers
29 views

Identifying clothes in opencv [closed]

I know OpenCV can detect humans. Now I need to know whether it can be used to identify set of uniforms they wear, which the uniform images are stored in database or something. What kind of technique ...
0
votes
0answers
26 views

which one the following centroid is the centroid of object in image?

I want to get mass center of circle shape from binary image, but the output give more then one mass center. I'm using code from opencv web tutorial document about image moment and modified little bit. ...
1
vote
0answers
11 views

Internal thinning

Given the outcome of applying a canny edge detector into an image using cv2 python library, I want to dilate the edges only from the internal part of the convex boundaries by using morphological ...
1
vote
1answer
45 views

Process on curve/path skeleton binary image

I am trying to develop a code that can process on path/curve of a skeleton of an image . I want to have a vector of points from the skeleton between two points . This code ends after adding some ...
0
votes
0answers
21 views

Comparision of different Opencv implementations [duplicate]

How would you compare Opencv in C Vs. C++ Vs. Python for developing commercial Image processing applications. A few points for comparision maybe speed, ease of maintenance, applying updates etc. Thank ...
0
votes
1answer
23 views

Visible Light Communication with Android camera Approach

I have a circle which changes colors according to a data encoding scheme. For example I want to encode the message "Hello" in the color changes of that circle. That means something like a transition ...
0
votes
1answer
18 views

Unhandeled exception error while subtracting frame from live video

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()) { //cerr << "can not open camera ...
2
votes
2answers
54 views

Differences between two images

Using this image as a refernce I want to find the dirty spot at the bottom of this image. I was able to turn second image to the same scale and orientation and now trying fo find the spot using ...
0
votes
1answer
21 views

How to choose stable area for template matching with OpenCV?

I am using OpenCV for some project. I want to use part of a planar appearance to track this planar with template matching. Is there some method to choose stabler patches for template matching? Any ...
0
votes
1answer
33 views

image processing for quality control

I am working on a college project where I have to use image processing using opencv to detect manufacturing defects in cookies. The program must be able to detect oversized, undersized, distorted ...
0
votes
1answer
19 views

gamma correction in opencv hog.cpp

I dont understand the code of the gamma correction in hog.cpp in opencv, i went through some links here which doesnt match with the code in opencv hog.cpp Mat_<float> _lut(1, 256); const ...
0
votes
2answers
37 views

How to get coordinates of pixel after shape was rectified?

I'm using EmguCV wrapper for OpenCV and I'm rectifing this shape: with help of this code: public Image<Bgr,byte> Rectify() { try { Image<Bgr, byte> ...
-1
votes
0answers
34 views

TextExtraction on food packaging [closed]

For a new development project, I need to implement a program to detect and extract texts from food packaging. Images will be taken through smartphones. I tried a lots of algorithm with OpenCV to ...
2
votes
2answers
24 views

OpenCV accumulatedWeight error (assertion fails on comparison of channels and size)

I am running the following code to calculated the Running Average of a collection of images read from a video on OpenCV. EDIT: (Code updated) #include <iostream> #include <string> ...
0
votes
1answer
36 views

display image full screen with opencv

I'm working with opencv for android sdk. I can't display image on full screen.: I'm using: mRgba = Utils.loadResource(MainActivity.this,R.drawable.images,Highgui.CV_LOAD_IMAGE_COLOR); Bitmap bmp = ...
2
votes
2answers
28 views

OpenCV Capture from Camera Results in Noisy-like Image

I am using OpenCV on an embedded target board (FriendlyARM mini6410, processor arm 1176 running linux kernel 2.6.38). I compiled OpenCV 2.4.4 library using toolchain provided for the board, found in ...
2
votes
2answers
47 views

Binarisation of image for OCR

I want to turn scanned images into black and white images, the goal is to reduce the file size before the images are transferred over the internet for OCR. The normal binarisation/ black and white ...
0
votes
2answers
51 views

Format of High-Dynamic Range (HDR) images and how to process them?

I have some questions regarding High-Dynamic Range (HDR) images. First, can somebody please tell me about how these images are stored, I mean in which format? and how many bits per pixel? Second, is ...
0
votes
0answers
25 views

Camera Calibration and 3d Reconstruction [duplicate]

the result of 3d reprojection using StereoSGBM (in opencv) algorithm is the X,Y,Z coordinates of each pixel in the depth image. points = PointCollection.ReprojectImageTo3D(disparityMap, Q); ...
0
votes
1answer
38 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
0answers
13 views

Using inpaint for stitching

I'm capturing bio-cells in high magnification using 5MP camera. As the cells are "swimming" in glycerine not on the same level, I'm making a stack of images in range of +/- 5u around the focus ...
0
votes
1answer
38 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
4answers
57 views

Pixels in YUV image

I am using opencv to achieve object tracking. I read that YUV image is better option to use than RGB image. My problem is that I fail to understand about the YUV format although i spend much time read ...
0
votes
0answers
69 views

Face Recognition code using emgu cv and C# and it returns a black image and unknown/unrecognized label all time

I was working on Face Recognition project. After training the database and calling EigenObjectRecognizer, the result is a black image with unrecognized label.When the code runs, it looks like the ...
-1
votes
0answers
22 views

Error in an c++ implementation of bwlabel function of matlab?

#include <stdio.h> #include <cv.h> #include <highgui.h> #include <ctime> #include <vector> #include <map> #include <iostream> using namespace std; int ...
0
votes
1answer
40 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 ...
2
votes
3answers
52 views

OpenCv crashes when calling from android activity

i have this code in which i use openCV to launch a camera. The code is given below. If this class "MainActivity" is used as the main class then every thing works fine but if i use it from another ...
0
votes
1answer
32 views

Opencv Mat create Image

I am trying to load BGR image and than copy some pixels that certifies some condition to a new image which i created using the loaded images width, height and type. The type is CV_8UC3. Mat ...
0
votes
1answer
39 views

Changing Pixel values in Mat opencv

I am trying to work with am RGB image in Opencv. From the image i only want to keep the red pixels and the rest i want to set to white. I am unsure how to do this logic in opencv. The image is read as ...
-1
votes
0answers
59 views

Detecting a filled glass object in openCV [closed]

As someone in the comments suggested, a single picture is worth thousand times the words. Therefore i am adding the picture examples of what i'm trying to achieve and then the old text description ...
0
votes
1answer
25 views

Copy Float point data to Mat

I am new to opencv, I am trying to read pixel values from a text file. Which I am reading and storing it in a floating point vector. vector<float> iArray; I want to create a image from that ...
2
votes
2answers
56 views

Saturation, Value remapping to compensate for lighting

I have the same object that is shot in two different lighting conditions by the same camera. Suppose I take the saturation of a red colored component A, which becomes A' in the second picture. If I ...
0
votes
0answers
31 views

opencv2.framework/opencv2(surf.o) duplicate symbols for architecture armv7

I am integrating opencv2.framework with my project. I did the following steps for completion. Added opencv2.framework to "Linked Frameworks and Libraries" Added libc++.dylib to "Linked Frameworks ...
1
vote
2answers
47 views

Convertion Between cv::Mat and XnDepthPixel*

i am working with OpenNI 1.5.4.0 and OpenCV 2.4.5, plus Qt for visualization purpose (only RGB images). Basically, i am retrieving the depth and rgb frames from a Kinect and store them on the hard ...
-4
votes
0answers
32 views

What is the best API for Human Anatomy Detection in images? [closed]

I am looking to recognize certain parts of the human anatomy in a relatively clean image environment. I have looked into openCV & Haar Object Detection as they seem to be very viable options, ...
0
votes
0answers
42 views

Haar Object Detection patent issue

I would like to know if all of the Haar Object Detection Api (Python) in OpenCV patent protected? As I understand it SIFT, SURF, & Haar Cascade are patented, but I am not really clear as to what ...
2
votes
2answers
60 views

Graph based image segmentation

how could I transform an image into undirected graph in order to segment it ?I am using c++ and Opencv . Many thanks in advance.
0
votes
1answer
36 views

C++:openCV error

hi all i am trying to get the RGB for a pixel in an image using C++ openCV 2.4.5 but i get this error when i compile . it loads the image will but the exception arise when i am trying to get the ...
0
votes
1answer
72 views

Harris corner using Emgu CV

Im trying to apply Harris corners using Emgu CV Wrapper, and I'm learning from a book titled "Open CV 2, Computer Vision Application Cook Book" , the book examples are based on C++, below is their ...
4
votes
2answers
52 views

Highlight only the creases (primary lines and wrinkles) in a palm print image

I have a palm print image taken using ink and paper which looks like below (a). What I need is to highlight the creases of it preserving the width and orientation of them see figure (b). I tried ...
0
votes
2answers
47 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
1answer
39 views

create image histogram from 3 different histogram

I have a images 3 frames which slight variation in each. Each frame has its own histogram in RGB space. I am trying to form one histogram from the 3 histogram of the original frame. Is it possible to ...
-3
votes
0answers
47 views

Opencv and ios to detect peak values of ECG Graph [closed]

Hi I am doing my final year project and I need help with understanding image processing and its implementation with ios, the input will be in the form of image like this: given this input the ...
2
votes
2answers
57 views

From IPLImage to Mat

I am well acquainted with the IPL-image format used in OpenCV 1.1. However i am using the latest 2.4 version and want to switch to the C++ interface of OpenCV. Here is the method by which i access the ...
1
vote
3answers
68 views

Vector insufficient memory while pushing the video file into the vector?

I use the below piece of code to read each frame from the camera and pushing it to a vector. Am doing this to process all the collected frames in the vector at later point. I used the below code to ...
-2
votes
1answer
27 views

Perspective Transform on A4 taken by camera [closed]

I would like to process an image of the music sheet taken from camera by using OpenCV. I'm trying to perform perspective transform to get straight image of the music sheet by identifying the 4 corners ...
1
vote
2answers
94 views

Pre-processing before digit recognition with KNN classifier

Right now I'm trying to create digit recognition system using OpenCV. There are many articles and examples in WEB (and even on StackOverflow). I decided to use KNN classifier because this solution is ...
0
votes
1answer
34 views

Draw a circle in an Emgu ConvolutionKernelF

I want to convolute my image with a kernel that has the shape of a circle (not filled) using Emgu. I found the ConvolutionKernelF which suits my needs (Gaussian Noise in emgucv). Does anybody know ...
0
votes
1answer
48 views

How to save the next and the current frame from video

I want to subtract the current frame of video from the previous frame of same video , and do the same thing for all video and than write those frame as seprate video , I am confusing at saving the ...
2
votes
1answer
44 views

OpenCV: How to detect thick red lines and their contours from the picture provided

What solution you could suggest to detect thick red lines and their contours from the pictures attached? I use OpenCV. Thank you in advance!

1 2 3 4 5 33