필터 지우기
필터 지우기

How to transfer graph data into MATLAB using image processing?

조회 수: 8 (최근 30일)
Sam
Sam 2019년 2월 25일
답변: Image Analyst 2019년 2월 26일

답변 (2개)

Asad Mirza
Asad Mirza 2019년 2월 25일
What you need is is either GRABIT or WebPlotDigitizer.
  댓글 수: 5
Sam
Sam 2019년 2월 26일
Hi, can suggest a solution to filter the vertical and horizontal line?
Asad Mirza
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
Image Analyst 2019년 2월 26일
If it were me, and it was just this one picture (not hundreds of pictures), I'd
  1. bring it into Photoshop
  2. Crop the image to the bounding box
  3. Resize the image to 2100 pixels high.
  4. Enlarge the canvass to 2400 pixels by extending out the bottom
  5. Paint white over all the non-signal parts using the paintbrush tool(this is the only time-consuming part)
  6. Save it out as a PNG image
  7. 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;

카테고리

Help CenterFile Exchange에서 Image Processing Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by