Algorithms which extract and manipulate information from digital images.

learn more… | top users | synonyms

0
votes
0answers
9 views

Can I use node-gm to resize an image in memory or do I need to save it first?

I'm allowing users to upload avatars, but I want to resize them as they are uploaded. Right now, it appears that gm makes me save the file to disk first before it resizes it. Is it possible to just ...
0
votes
2answers
16 views

how to obtain a single channel value image from HSV image in opencv 2.1?

I am a beginner in opencv. I am using opencv v2.1. I have converted an RGB image to HSV image. Now I want to obtain single channels Hue, Value and Saturation separately. What should I do? I have seen ...
1
vote
1answer
11 views

OpenCV traincascade for LBP training

I am trying to create head detector using LBP features in OpenCV, using traincascade utility. The head detector, I hope, will result in something similar to OpenCV's profileface created by Vladim ...
0
votes
1answer
19 views

Removing border lines and keeping plain text in a scanned image form

I have no of scanned forms and what I want to do is remove lines which separate various fields. The color of the form is black and white.(background white and the text and lines are black) I want to ...
1
vote
2answers
18 views

opencv sift algorithm, how to get confidence from findHomography

I am trying to create an application for iPhone, but I am a new developer for both openCV and iOS. I have more than 50 object images, I have one scene image from camera. In each time I have one of ...
1
vote
1answer
17 views

change detection on video frames

I have a sequence of actions taking place on a video like, say "zooming in and zooming out" a webpage. I want to catch the frames that had a visual change from a some previous frame and so on. ...
0
votes
1answer
38 views

Subtract and Merging Images

There are some component for Image processing operations like Subtraction, Merging, Get Difference and etc. . Just Imagine, we have two images and wants to subtract them from each other. And this ...
3
votes
0answers
36 views

Find contour of difference between images

I am trying to find the contours of one or several differences between two images. Suppose you have two identical images. Then add an opaque square and triangle to one of the images at random ...
0
votes
2answers
30 views

Using javascript to analyse image level of contrast

I'm wondering if it is possible to analyse an image from an api call to find out if the image has a high or low level of contrast. I know there is resemble.js which finds the differences between two ...
2
votes
0answers
21 views

Comparing two faces in android

I was developing an app which compare the face which is stored in SD card and the image shown in camera preview with the help of Surface view. I wrote code to detect the face and created a bitmap ...
0
votes
1answer
22 views

Rectangle over an existing image and then display the image

I am currently working on zk framework which is been provided by zkoss, I am able to display image in a web page, but I want to put red lined rectangles over some fields. I am trying this : // draws ...
0
votes
1answer
18 views

How to find object height from an image when distance from an object is given but camera is stationary and tilted

I know this formula. distance to object (mm) = focal length (mm) * real height of the object (mm) * image height (pixels) / object height (pixels) * sensor height (mm) But it is applicable when ...
3
votes
1answer
43 views

replace all red pixels in apple image with green green, including gradient red ios [duplicate]

I am doing change color of my apple shown below: to change all red colors to green and all yellow to orange. My problem is how to select all kind of red color and how to select all kind of yellow ...
0
votes
1answer
24 views

rotation precision of known object

I would like to use OpenCV to find a QR-Code in an image and to get the rotation angle of it. How to find the object is shown in the Features2D + Homography to find a known object example of the ...
-5
votes
1answer
46 views

How to combine low and high frequencies of two images in Matlab [closed]

I would like to combine two images A and B in the following way: 1) I want to take a Fourier transform of both of them 2) For image A I want to apply a weighted filter, which gives more emphasis ...
1
vote
2answers
19 views

PHP - Save watermarked image to directory

Hi there I'm using the following script, and it works perfectly. My problem is, how do I replace the original image with the watermarked one leaving the same filename and extension? $stamp = ...
2
votes
2answers
24 views

How to position a car in image processing (computer vision)?

I would like to locate a car (front center point x,y) using a high resolution single camera. The camera setup is fixed at 1-2m high, and tilted around 25 degrees. The camera can provide images in ...
0
votes
0answers
34 views

point extraction in opencv

for an ellipse in binary image i applied this code for(int j=0;j<poi.cols;j++) { for(int i=0;i<poi.rows;i++) { if(poi.at<uchar>(j,i)==255 && n==0) { ...
0
votes
2answers
36 views

How to manipulate BufferedImage

Processing has a class named PImage from which you can get an array of int that contains values for all pixels. Then, you manipulate this array and call updatePixels() and viola you have applied an ...
0
votes
1answer
36 views

how to refine or blur or smooth just the edges?

Is it possible to refine or blur just the edges in an image with the white background ? I was thinking to get an edge mask of the image ( i already got it). After that use that mask to apply blur or ...
1
vote
0answers
13 views

Library similar to aviary for offline usage

Does anyone know of any alternatives to Aviary for android. I am looking for a library that works similar to Aviary but in an offline mode for android. I know about opencv but it still needs me to ...
0
votes
1answer
26 views

Histogram of Oriented Gradients object detection

HOG is popular in human detection. Can it be used for detecting objects like cup in the image for example. I am sorry for not asking programming question, but I mean to get the idea if i can use hog ...
1
vote
1answer
12 views

PHP Imagick Images getting truncated on download, but only some of the time

When I am using PHP Imagick() to resize and offer up an image for download, the resulting image is often truncated. I can't diagnose when this happens, but it happens enough that it is a problem. In ...
0
votes
0answers
34 views

detect largest region and draw it on video in matlab

I have this piece of code which detects the largest region and draws a rectangle around it. I want to make it read from a video as VideoReader rather than from a camera. Changing the videoinput to ...
2
votes
1answer
49 views

Matlab: How to vectorize a nested loop over a 2D set of vectors

I have a function in the following form: function Out = DecideIfAPixelIsWithinAnEllipsoidalClass(pixel,means,VarianceCovarianceMatrix) ellipsoid = ...
-1
votes
1answer
24 views

How does ''(integrated) intensity profiles'' matlab script work?

I am interested in plotting the intensity along a line, using Matlab. I have found 2 functions to do this: improfile and integrated intensity profiles . What is the difference? And on which ...
0
votes
0answers
16 views

Imagemagick: scaling up or scaling down

I am programming a script that enables the user to rotate, skew and scale an image with Javascript. Afterwards it's rendered with the convert and composite commands of imagemagick. The original image ...
0
votes
0answers
27 views

Model based clustering of features for classification [closed]

I am new in statistical modelling and so please pardon if the question appears trivial. I have a set of multi- dimensional data (T) where each dimension represents features (fi) for video based ...
-1
votes
0answers
18 views

How can I use the erosion or dilation functions within vImage?

At the moment, I have a binary image that is being displayed in a UIImageVIew. I want to use vImage from the Accelerate framework to apply an erosion operation to this image, using the function ...
0
votes
1answer
19 views

Bulk creation + edit images

I currently use photoshop + datasets to automatically create CTA buttons for testing on a clients website. The dataset often contains text and other changes like underline or background colour, as ...
1
vote
2answers
44 views

Image processing techniques to stand out white tape on the floor with opencv

I have the following image: And I'd like to obtain a thresholded image where only the tape is white, and the whole background is black.. so far I've tried this: Mat image = ...
0
votes
0answers
22 views

OpenCV Error: image step is wrong in array.cpp, line 928

I am using Microsoft Visual Studio 2012, with OpenCV 2.4.5 version. What I want to do is to read .jpg images from a folder using VideoCapture function, then do face detection, then write the detected ...
0
votes
0answers
16 views

Rescale a transform on an image of higher resolution

I would like to know why I do not get the same transform image when I change the size of the matrix? a1 = ones(50); a2 = ones(400); HsRt = [0.9 -0.01 0; 0.01 0.98 0; -2.4 5.3 1] HupScale = [8 0 0; 0 ...
0
votes
1answer
25 views

Display range for RGB colors for imtool function in Matlab

In a normal situation ,when I use, l = imread('football.jpg'); First I separate the bands of colors i = l(:,:,1); j = l(:,:,2); k = l(:,:,3); Then I attach them back. im(:,:,1) = i; im(:,:,2) = ...
0
votes
1answer
21 views

Android - Curve on Top Left Corner in Image

I have a 4 sharp cornered image to display it my android application. But i want that image to be little curved from Top Left Corner. There should be no animation, nothing. Just an Image with a Curve ...
0
votes
0answers
16 views

one image is a subset of another image

The scenario is, There are two images and we are required to say whether one image is a subset of another image. In other words, image A is present within or part of image B. We tried to use ...
0
votes
1answer
34 views

error in for loop when rewriting values

I used the following method to convert the input image to grayscale and threshold: UIImage *image = self.imageView.image; // Create image rectangle with current image width/height CGRect ...
2
votes
0answers
30 views

Support Vector Machine image Classifier openCV

I am developing a image classifier using SVM. Just for development and debugging reasons I am using 16 images at the moment 8 each of 2 different classes. The problem in my program is that when i ...
0
votes
0answers
18 views

How to set 'nmixures' and 'bShadowDetection' values in 'BackgroundSubtractorMOG2'?

Please have a look at the following code #include <iostream> #include <opencv2/core/core.hpp> #include <opencv2/imgproc/imgproc.hpp> #include <opencv2/highgui/highgui.hpp> ...
-1
votes
0answers
14 views

Image Sequence data feature extraction

How to perform orientation feature extraction from image sequences for gesture recognition? how about the preprocessing? should I convert the image sequences to matrix before feature extraction? ...
1
vote
1answer
32 views

How to get the average output of two consecutive frames?

Please have a look at the following code #include <iostream> #include <opencv2/core/core.hpp> #include <opencv2/highgui/highgui.hpp> #include <opencv2/imgproc/imgproc.hpp> ...
0
votes
2answers
38 views

Exaggerating colors in GIMP/Python

I have images such as the one below from which I need to count the prominent white spots. Unfortunately my object counting algorithm is becoming confused due to those "fuzzy" white areas. It can ...
0
votes
1answer
30 views

Choosing an area on the image for classification

If anybody is familiar with classification in remote sensing you know at first we should choose a region on the image and use information on this region to extract statistical parameters. how can I ...
1
vote
1answer
30 views

Taking too long time to compelete an operation and using lots of physical memory

I have this piece of code: function Plot2DScatter(img1,img2) n = size(img1,1); m = size(img2,1); axis([0 280 0 280]) hold on for i=1:n for j=1:m x = img1(i,j); y = ...
0
votes
1answer
32 views

Color to transparency - programmatically

you might know the "Color to transparency" effect of professional image editing programs like Photoshop. How is this effect done? I want to add some transparency to my images programmatically with ...
0
votes
1answer
41 views

“Median color” of a Image in Matlab

I'm doing some basic image processing in matlab (2010a) and I want to display some standard information of different pictures like the histogram etc. Is there a way to get the "median color" of a ...
0
votes
2answers
27 views

Applying various effects to images

I know how to apply two effects to images -- blurring and making them grayscale. However, I would like to expand my knowledge further and learn more things of this nature. I decided to Google them ...
0
votes
1answer
35 views

Cuda and/or OpenGL for geometric image transformation

My question concerns the most efficient way of performing geometric image transformations on the GPU. The goal is essentially to remove lens distortion from aquired images in real time. I can think of ...
-6
votes
1answer
36 views

how to extract the text in an image and find its position? [closed]

I have been working for a project where I need to extract the text in an image and find its location, using C#. Can anyone help me how to achieve that and any books to recommend? I don't have any ...
-1
votes
2answers
51 views

Canny: Lot of unwanted edges are detected

please have a look at the following code #include <iostream> #include <opencv2/core/core.hpp> #include <opencv2/highgui/highgui.hpp> #include <opencv2/imgproc/imgproc.hpp> ...

1 2 3 4 5 203