i am using mrilab. but i am encountering some error
11 views (last 30 days)
Show older comments
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 Comment
Answers (1)
Manikanta Aditya
on 12 Nov 2024 at 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 Comments
See Also
Categories
Find more on Migrate GUIDE Apps in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!