How to create a GUI in matlab?
1 view (last 30 days)
Show older comments
Hello everybody,
i am not very experienced in matlab.
I have to create a GUI that a gui that should make me enter:
input: a file (of any extension) and the numerical values of some variables (ex: x coordinates, y coordinates, size_map)
output: an .hdr file that contains these numeric values associated with the input file
i'm using gdal in matlab
How can I do?
4 Comments
Answers (1)
Image Analyst
on 13 Sep 2022
You forgot to attach your input file, probably because you never read the community guidelines or this link:
So if the file is a binary image, you can do
mask = imread(filename);
[rows, columns] = find(mask);
x_min = min(columns);
x_max = max(columns);
y_min = min(rows);
y_max = max(rows);
To get the pixel size you're going to have to get that somehow, like from spatial calibration or the header of the image. Otherwise, any spatial analysis will just give you results in pixels, which really doesn't have a size, or maybe you just want to consider it as 1. But if you want real world units, you have to calibrate like shown in my attached demo.
9 Comments
Image Analyst
on 15 Sep 2022
It should be. Write a small demo that proves this to me. Here are the steps you should do:
% Read your existing table.
t = readtable(filename)
% Now alter one field to have a different value.
t.Whatever(1) = someNewValue;
% Now call write table and save to a different text file.
filename2 = 'answers.txt'
writetable(t, filename2)
Then attach the code and both text files with the paperclip icon.
See Also
Categories
Find more on Environment and Settings in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!