i am using mrilab. but i am encountering some error

11 views (last 30 days)
Farhan
Farhan on 17 Oct 2024
Answered: Manikanta Aditya on 12 Nov 2024 at 11:06
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
Cris LaPierre
Cris LaPierre on 17 Oct 2024
Do you have the image processing toolbox installed?
Note that imrect is not recommended. See here.

Sign in to comment.

Answers (1)

Manikanta Aditya
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:
I hope this helps.

Categories

Find more on Migrate GUIDE Apps in Help Center and File Exchange

Tags

Products


Release

R2024a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!