MATLAB Translating curves in paint to matlab

Click For Summary
SUMMARY

This discussion focuses on converting drawn curves in Paint into MATLAB matrices for further analysis. The user, Tom, utilizes the imread function to read a greyscale BMP image of a circle, which is then represented as a matrix of binary values. The main challenge is to extract the (x, y) coordinates from this matrix and ensure that points remain adjacent to each other for complex shapes. The provided MATLAB function coordinate_generator is intended to achieve this but requires refinement to accurately capture the coordinates of the drawn curve.

PREREQUISITES
  • Familiarity with MATLAB programming and syntax
  • Understanding of image processing concepts, particularly binary images
  • Knowledge of matrix manipulation in MATLAB
  • Basic understanding of interpolation techniques for data smoothing
NEXT STEPS
  • Explore MATLAB's imread documentation for advanced image processing techniques
  • Learn about MATLAB's interpolation functions, such as interp1 and interp2
  • Research methods for ensuring spatial continuity in extracted coordinate data
  • Investigate the use of contour extraction techniques in MATLAB for more complex shapes
USEFUL FOR

MATLAB users, image processing enthusiasts, and developers working on graphical data analysis who need to convert visual shapes into numerical representations for computational tasks.

tom.coyne
Messages
8
Reaction score
0
Hi,
I am currently using MATLAB to do some work on simple closed curves in the plane. In order to make this work quite general I have opted to use a matrix which stores (x,y) coordinates of points on my curve (rather than use a function).

I want to feed some interesting curves into my code but currently this relies on me finding a parametric representation and this tends to mean they are not so exciting.

I would like to be able to draw a closed curve in paint or something and then translate that into a set of coordinates which I can store as a matrix in matlab.

Does anyone know how I might go about this??

Thanks,
Tom
 
Last edited:
Physics news on Phys.org
You can read an image into MATLAB using the imread command. Check the docs for details and examples.
 
Thanks for the tip, however after spending some time trawling the help pages, I'm still not sure how to proceed.

So at the moment I have drawn a circle in paint and saved it as a greyscale bmp. imread will then turn this into a matrix of 1's and 0's. I take it these refer to the pixels a 1 meaning there is something drawn there and a 0 meaning nothing drawn.

How can I convert this matrix into an n x 2 matrix which just describes the x and y coordinate of each point on the curve? Am I going to have to run some kind of for loop?

Thanks,
Tom
 
Yes, just step through the matrix and whenever the element==1 you store that position (indices) in your nx2 matrix.
 
How am I going to make sure that the points remain next to each other?

I can see that it would be easy for a line, but it gets more complex for a circle. Then my aim is to make quite complex snake like shapes. Since I will be integrating this data, it would be best if the data points which were close in the picture remained close in the nx2 matrix.

The good thing is the data points I end up with don't have to accurately represent the curve I drew in paint, so would I be able to interpolate the 'messed up' data to make a smooth curve?

Also, more fundamentally, I think I must be making a mistake somewhere, here is what I got for my circle:

A = imread('circle.bmp', 'bmp');

Then I run this:

function [x,y] = coordinate_generator(A)
z = size(A);
k = 1;
for i = 1:z(2)
for j = 1:z(1)
if A(j,i)==0
x(k) = i;
y(k) = j;
k = k+1;
end
end
end

Attached is the start picture and the picture I got from plotting [x,y]

What am I doing wrong?
 

Attachments

  • circle.bmp
    circle.bmp
    27.1 KB · Views: 652
  • plotted data.jpg
    plotted data.jpg
    21.5 KB · Views: 514

Similar threads

  • · Replies 32 ·
2
Replies
32
Views
4K
  • · Replies 9 ·
Replies
9
Views
4K
  • · Replies 18 ·
Replies
18
Views
6K
  • · Replies 2 ·
Replies
2
Views
3K
  • · Replies 1 ·
Replies
1
Views
12K
  • · Replies 1 ·
Replies
1
Views
3K
  • · Replies 1 ·
Replies
1
Views
3K
  • · Replies 5 ·
Replies
5
Views
3K
  • · Replies 4 ·
Replies
4
Views
1K
  • · Replies 3 ·
Replies
3
Views
7K