Algorithms which extract and manipulate information from digital images.
1
vote
0answers
9 views
Matlab SVM for Image Classification
I am using SVM function of Matlab to classify images that are read from a folder. What I want to do is first read 20 images from the folder, then use these to train the SVM, and then give a new image ...
0
votes
1answer
16 views
Removing junction points from binary image MATLAB
I have thinned the segmented image and found junction points marked as green points in an image (right image) then I delete junction pixels from image to disconnect each vessel segment but 2 more ...
1
vote
1answer
38 views
What to use : Ipl? or Mat? [closed]
I really don't know what to use for the next projects:
IplImage? or Cv::Mat?
Knowing that I want :
a better performance
considerable speed response regarding the different tools to use ...
0
votes
1answer
22 views
Identifying red dot in JPEG picture in microcontroller
I am starting a project in which i'll have to identify a red dot/ball in a JPEG picture - problem is it has to be done on a microcontroller.
I'm pretty much at the bare bottom, so i am seeking ...
-2
votes
2answers
33 views
how to extract the detected region in opencv?
Everyone. I have shown below my code for tracking objects and it shows background subtraction result also. Here I am using frame differencing method. now my problem is that I have to extract that ...
3
votes
3answers
63 views
when to resize an image?
I am building a online store for hand made jewelry. Of course there is a lot of high quality pictures that i need to show, first in small sizes and when a client clicks on the image, than redirect him ...
3
votes
1answer
45 views
How do I extract the width and height of a PNG from looking at the header in objective c?
I have a need to find the dimensions of images online without downloading them. To accomplish this I do this:
+ (CGSize) getImageDimensions:(NSString *)url {
// Send a synchronous request
...
1
vote
1answer
20 views
javascript - Convert a image(or bitmap) into a two dimensional matrix
I have an image that is initially invisible. When the user hovers his mouse over the image, I want the image to do some sorta animation.
I want to be able to take the pixels within that image and ...
0
votes
0answers
47 views
Find sub image in a large image using JAVA and FAST algorithm
I am very new to image processing and my requirement is to detect whehter the given large image consist the given subimage (small image) using Java and FAST algorithm. I have found the java lib ...
1
vote
1answer
30 views
Comparing two images pixel-wise with PIL (Python Imaging Library)
I need a function which compares two PIL images of the same size. Let's call them A and B. The result is supposed to be a new image of the same size. If a pixels is the same in both A and B it's ...
1
vote
0answers
31 views
HoughCircles gives wrong number of circles and position - iOS
Im using OpenCV to help me detect a coin in an image taken from an iPhone camera. Im using HoughCircles method to help me find them but the results are less than hopeful.
cv::Mat greyMat;
...
0
votes
3answers
44 views
How to detect darts on a dart board using Computer Vision in OpenCV? [closed]
I'm a newbie to the world of Computer Vision. Here's what I need to do. Given an image, pick out and draw a circle around all the locations in the image which contain an object A. In other words, say ...
0
votes
0answers
19 views
Android Garbage Collect Delay
I have a java class that I download from internet.
The code original write to run on pc.
When I run the code on my Android phone, the allocation limit of memory cause
the system need to wait for the ...
0
votes
1answer
29 views
OpenCV: Reading image series from a folder
I am trying to read a series of images from a folder using OpenCV's VideoCapture function. After some search on the internet, my current code is like this:
cv::VideoCapture cap ( ...
0
votes
0answers
21 views
Image server that can write to S3 backend? [closed]
I need to let users of my app upload images. I need to scale images to different sizes and want to write them to an S3 backend.
Is there any existing server/project that provides this functionality? ...
1
vote
0answers
11 views
j2me image processing, emboss effect and sketch effect not working
I am working on j2me, Image processing project. I have managed to give simple effects like sepia, grayscale , negative , posterize etc(which does not involve convolution matrix). Even I have managed ...
0
votes
0answers
48 views
Deallocation error in Open CV?
My code
function(Mat m , ...){
//some code here
vector<Mat> chnls;
split(LA, chnls);
// code to take each channel and find the max in each r and channel
for(unsigned int z = 0 ...
1
vote
2answers
27 views
Issues facing in Opencv cvConvertScale
This is very simple code, But don't know where it Went wrong,where i covert Image from 8 to 32
Same thread as like this
How to convert an 8-bit OpenCV IplImage* to a 32-bit IplImage*?
char * ...
0
votes
1answer
17 views
Convert from Vec3b to Mat3b
I am using BGR to HSV conversion of image using OpenCV. Since I am new to this field and software, I may sound incorrect so please let me know if I am wrong.
Now, in my school project i want to work ...
1
vote
1answer
18 views
Effects of image quality/resolution in feature extraction
I am working on a project which identifies objects after capturing their images on Android platform. For this, I extracted features of sample images such as compactness, rectangularity, elongation, ...
1
vote
1answer
45 views
Isolating Red/Green/Blue Channel in Java BufferedImage
How to isolate red/green/blue channel in BufferedImage: I have following code that does NOT work:`
public static BufferedImage isolateChannel(BufferedImage image,
EIsolateChannel channel)
{
...
0
votes
0answers
24 views
How do I process attachements programatically, from the model, without using forms?
I have a LineItem class that has an images column. It belongs to an Order class. When a line_item is saved, the images column is a list of comma delimited image urls.
I want is to create a collage ...
2
votes
1answer
55 views
Comparing computer vision libraries in python [closed]
I want to decide about a Python computer vision library. I had used OpenCV in C++, and like it very much. However this time I need to develop my algorithm in Python. My short list has three libraries:
...
0
votes
1answer
22 views
downsampling images as a function in Python
I am trying to resample some tiff files from 2000*2000 to 500*500.
I have created a function and I tried for one file and it worked nicely. Now I want to apply it for all the available file I have.
I ...
1
vote
1answer
43 views
Record a video in opencv only for 30 secs
How to record a video in opencv only for 30 seconds. I used the below code but it records video only for 24 seconds? What is the issue?
#include "opencv2/objdetect/objdetect.hpp"
#include ...
0
votes
1answer
19 views
How to calculate median of frames efficient in Matlab?
I'm using median function (http://www.mathworks.com/help/matlab/ref/median.html) in Matlab in order to calculate average value of each pixels from each frame in a video. Here is my code:
[a,b,c,d] = ...
0
votes
0answers
10 views
Can't load javax.imageio.ImageIO lib to Eclipse
I want to save canvas object as image, and for this I want use ImageIO class. I'm using Eclipse, but when I try make import of this lib (import javax.imageio.ImageIO;) Eclipse is shows me an error ...
0
votes
0answers
22 views
Image processing: line detection mistake
I'm processing an image: trying to find an angle of a stripe. The video I capture is YUY2. I'm used this algorithm, more or less to find the equation of the line and then it's angle. The algorithm ...
0
votes
1answer
34 views
how to change the pixel values in a rgb image in matlab
I have a rgb image, I want to change the pixel values greater than (r:175,g:255,b:55) to Nan in matlab, How can I do that. Please let me know
0
votes
0answers
10 views
Couldnt read the video that is captured by JMF framework
I used JMF framework to capture the video from a web cam and storing it to the local directory as ".mov" file. I couldnt play the stored video in other machines, where as I can play the video in my ...
0
votes
3answers
41 views
How to convert IplIImage 8bit to IplImage24Bit in OpenCv?
How to convert IplIImage 8bit to IplImage24Bit in OpenCv ?
I have 8bit Image and i want to convert it to 24Bit IplImage
Suggestions please..
0
votes
0answers
24 views
How can i use scikit image's skeletonization together with mahotas?
I have binary skeletonized images and i use python library mahotas for extracting end-points and branched points.
I do not like mahotas thin function (there are too many little branches) and so i ...
0
votes
2answers
33 views
K means clustering in MATLAB - output image
To perform K means clustering with k = 3 (segments). So I:
1) Converted the RGB img into grayscale
2) Casted the original image into a n X 1, column matrix
3) idx = kmeans(column_matrix)
4) ...
0
votes
0answers
32 views
Compiling with FPU on ARM board
I am using mini6410 ARM 1176 board to run image processing application using OpenCV. I am using ARM toolchain 4.5.1 as supplied by the manufacturer of the board with certain options that may be of ...
1
vote
1answer
33 views
Get Laplacian pyramid using opencv
I'm trying to get a layer of the Laplacian pyramid using the opencv functions: pyrUp and pyrDown.
In the documentation and in more detail in this book, I found that the i-th Laplacian layer should be ...
0
votes
1answer
43 views
Rotating a 2D pixel array by 90 degrees
I have an array of pixel data for an image. The image I am getting is already rotated to 270 degrees. So I am trying to rotate it again by 90 degrees to have the correct image. I've tried a transpose ...
0
votes
0answers
10 views
Accelerate framework - convert vImageBuffer to a UIImage
I am currently trying to learn image processing using vImage.
I am able to process the image to get a vImageBuffer output, however, I would like to be able to convert the vImageBuffer to a UIImage so ...
0
votes
2answers
41 views
Error while finding differences in frames from camera
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()) {
...
0
votes
1answer
47 views
People Detection and Tracking
I want to do pedestrian detection and tracking.
Input: Video Stream from CCTV camera.
Output:
# people going from left to right
# people going from right to left
# No. of people in the middle
...
4
votes
2answers
51 views
Get interest area of a Histogram (Int Array)
I have an int array full of values (0-255) and I need to extract two indexes.
The indexes to be found will represent the Interesting Area I want to focus on.
The values of this area are always ...
-1
votes
0answers
20 views
Laplacian Pyramid for radiography contrast enhancement [closed]
I've read that the Laplacian Pyramid can be used to enhance the contrast of radiographies. I've read what is this kind of pyramid about and also that it can be used to reconstruct an unsampled image ...
0
votes
0answers
26 views
Papers on High Dynamic Range Imaging (HDRI) with applications in computer vision?
I would like to know some application (industrial, preferably) based papers (journal/conference) on HDR, something related with: welding, surveillance, illumination normalization or any application ...
1
vote
1answer
46 views
EMGU/OpenCV FFT of image not yielding expected results
I'm trying to visualize the FFT of an image with EMGU. Here's the image I'm processing:
Here's the expected result:
Here's what I get:
Here's my code:
Image<Gray, float> image = new ...
0
votes
2answers
38 views
SURF feature detectors
Maybe this is not a good question but I am confused with one thing. I am using SURF features in OpenCV where the input images are converted to GRAY image.
cvtColor(object, object, CV_RGB2GRAY);
...
1
vote
0answers
10 views
Blobs, ArrayBuffers and ArrayBufferViews in Internet Explorer 9?
I'm developing a little web application, which fetches binary image data encapsulated in XML nodes by XHR. My current web application is using ArrayBuffers, ArrayBufferViews and Blobs to generate blob ...
1
vote
2answers
58 views
A good approach for detecting lines in an image?
I've written some code that uses OpenCV libraries to detect white lines painted on grass. I need someone's opinion on the approach I used (as I'm sure there's a much better way than mine). Also, the ...
0
votes
0answers
33 views
Extract text from a captured image [closed]
I have an image like this:
I want to extract all information in this area:
I did research on this for 2 days, and got some luck with following tutorials:
...
1
vote
1answer
62 views
Person counting for a store using image processing techniques in OpenCV
I am new to image processing and am writing a small application in which I need to count the number of people entering a store. The entry point is fixed and there are 4 camera feeds in the same video ...
0
votes
2answers
36 views
OpenCv Mat initialization from array not working
I am initializing a Mat object with an array like this
int data[4] = {111,2,3,4};
Mat A = Mat(2, 2, CV_8UC1, data);
Now when I am printing the value at (1,1) which should be 4
cout<<"\n ...
5
votes
2answers
104 views
Algorithm for finding visually similar photos from a database?
TinEye, Google and others offer a "reverse image search" -- you can upload a photo and within seconds it will find similar photos.
Is there an open-source version of these algorithms?
I know about ...





