How to transfer graph data into MATLAB using image processing?
显示 更早的评论
回答(2 个)
Asad Mirza
2019-2-25
0 个投票
5 个评论
Sam
2019-2-25
Asad Mirza
2019-2-25
编辑:Asad Mirza
2019-2-25
I believe the GRABIT link has all the code for the GUI so you could investigate it and see how it does the image processing and then reverse engineer it for your own code?
As far as an algorithim to get the graph on your own here is an idea.
- Denoise the image using a median filter or something similar.
- Find the ROI of the graph from the entire image, easier to work on a smaller area.
- Binarize the image with imbinarize
- Since you are lucky your graph has little skew so you could figure out all the vertical and horizontal black in the ROI and set them to white.
- Ideally whatever is left over should just be the data and the background. You could use find() on the image and get the xy positions of all the black data points.
Walter Roberson
2019-2-25
There are a number of File Exchange Contributions with tag:digitize that approach the problem in various ways.
Sam
2019-2-26
Asad Mirza
2019-2-26
编辑:Asad Mirza
2019-2-26
Easiest way is find the gradient of the image and then set a threshold value to what counts as a verticle line. But it's a quick and dirty way and prone to errors.
im=imread('image.jpeg');
im=rgb2gray(im);
[gx gy]=imgradientxy(im);
Verts=gx>800; %% gx for verticle lines or gy for horizontal lines
imshow(Verts);
Image Analyst
2019-2-26
If it were me, and it was just this one picture (not hundreds of pictures), I'd
- bring it into Photoshop
- Crop the image to the bounding box
- Resize the image to 2100 pixels high.
- Enlarge the canvass to 2400 pixels by extending out the bottom
- Paint white over all the non-signal parts using the paintbrush tool(this is the only time-consuming part)
- Save it out as a PNG image
- Bring the image into MATLAB and scan the image column by column looking for the last black pixel
I'm attaching a rough estimate of what I get through Step 6. Of course this is a very very low resolution image so it's very difficult to determine what is signal and what is grid or numbers. It's essentially a judgment call so that's why I chose to do pre-processing manually in Photoshop.
For Step 7:
for col = 1 : columns
rowOfSignal(col) = find(grayImage(:, col) < 128, 1, 'last');
end
% Convert to range 300 - 2400
signalValue = 2400 - rowOfSignal;
类别
在 帮助中心 和 File Exchange 中查找有关 Images 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
