i am using mrilab. but i am encountering some error
11 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Unrecognized function or variable 'imrect'.
Error in DoDispFOV (line 156)
handles.AxialFOV=imrect(handles.Axial_axes, [handles.ISO(1)-xsize/(2*VObj.XDimRes)...
Error in SimuPanel>View_pushbutton_Callback (line 533)
DoDispFOV(handles,[]);
Error in gui_mainfcn (line 95)
feval(varargin{:});
Error in SimuPanel (line 94)
gui_mainfcn(gui_State, varargin{:});
Error in matlab.graphics.internal.figfile.FigFile/read>@(hObject,eventdata)SimuPanel('View_pushbutton_Callback',hObject,eventdata,guidata(hObject))
Error while evaluating UIControl Callback.
Unrecognized field name "SagittalFOV".
Error in SimuPanel>Update_pushbutton_Callback (line 603)
delete(handles.SagittalFOV);
Error in gui_mainfcn (line 95)
feval(varargin{:});
Error in SimuPanel (line 94)
gui_mainfcn(gui_State, varargin{:});
Error in matlab.graphics.internal.figfile.FigFile/read>@(hObject,eventdata)SimuPanel('Update_pushbutton_Callback',hObject,eventdata,guidata(hObject))
Error while evaluating UIControl Callback.
1 comentario
Respuestas (1)
Manikanta Aditya
el 12 de Nov. de 2024 a las 11:06
I understand that you are having issue with usage of 'imrect' object.
As mentioned by Cris above, imrect is not recommended. Use the new 'Rectangle' ROI object instead. You can also use the new ROI convenience function 'drawrectangle'. Try to update your code with told changes and retry and see if you encounter any issue.
Refer to the following documentation to know more about:
- Rectangle: https://www.mathworks.com/help/images/ref/images.roi.rectangle.html
- drawrectangle : https://www.mathworks.com/help/images/ref/drawrectangle.html
I hope this helps.
0 comentarios
Ver también
Categorías
Más información sobre Migrate GUIDE Apps en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!