当我尝试使用Matlab制作亮度程序时发生错误

时间:2019-04-01 10:27:35

标签: matlab matlab-figure matlab-guide

我想用matlab制作亮度gui程序,但是代码不起作用,我认为我的代码是正确的,有人可以告诉我我的代码有什么问题吗?

在互联网上搜索并阅读我的书

   function radiobutton24_Callback(hObject, eventdata, handles) 
   try
   B=handles.gray;
   brigthVal = 135;
   guidata(hObject,handles);
 for i=1:275
   for j=1:183          
     handles.gaul(i,j,1) = B(i,j,1) + brigthVal;  
     handles.gaul(i,j,2) = B(i,j,2) + brigthVal;  
     handles.gaul(i,j,3) = B(i,j,3) + brigthVal; 
   end      
   end      
  guidata(hObject,handles);
 axes(handles.axes3);
 imshow(handles.gaul);
  catch ME
   h=msgbox('tidak ada gambar','warning');
  end

我希望它能起作用

0 个答案:

没有答案