我在使用创建的 matlab GUI 中的按钮更新字符串时遇到了很多麻烦。目标是让这个按钮在图像上执行一个函数,其字符串已放置在 GUI 上的文本框中,然后用新图像的字符串替换旧字符串
我遇到的主要问题是我需要文件为 .raw 格式,但我无法弄清楚我将如何做到这一点。我可以将旧字符串替换为 .png 格式的新字符串,并将其添加为指南 GUI 代码,并使用以下代码。
handles.currentImage = imread(get(handles.Textbox1,'string'));
handles.currentImage = Addnoise(handles.currentImage); %addnoise is the function i created.
imwrite(handles.currentImage, 'photonoise', 'png');
pathname = 'C:\Documents and Settings\staff\My Documents\MATLAB\photonoise.png';
set(handles.Textbox1, 'string', fullfile(pathname));
但是我完全不知道如何将字符串格式设为.raw。如果有一些我不知道的代码需要添加到 GUI 或 Addnoise 函数中,请告诉我,我将不胜感激。