How to create a GUI in matlab?
6 次查看(过去 30 天)
显示 更早的评论
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 个评论
回答(1 个)
Image Analyst
2022-9-13
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 个评论
Image Analyst
2022-9-15
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.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Environment and Settings 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!