필터 지우기
필터 지우기

How to store values in cell array?

조회 수: 15 (최근 30일)
sara sar
sara sar 2018년 10월 13일
댓글: Image Analyst 2018년 10월 16일
I made a GUI that allows the user to determine regions in an image by using ROI object. the ROI object return its position as a matrix. I want to save the positions in a cell array when ever the user determine region in the image.
How can I do that?

답변 (2개)

madhan ravi
madhan ravi 2018년 10월 13일
편집: madhan ravi 2018년 10월 13일
An example:
A = {rand(4)} %stores the matrix as a cell array if you use curly braces
you can access the elements like a normal one
A{1}(1,1) %first element is obtained
  댓글 수: 6
sara sar
sara sar 2018년 10월 15일
In fact I'm beginner with using matlab.. could you please explain where should I write what you wrote?
I have this function who is already initialized when I created the GUI:
% --- Outputs from this function are returned to the command line.
function varargout = untitled_OutputFcn(hObject, eventdata, handles)
% varargout cell array for returning output args (see VARARGOUT);
% hObject handle to figure
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)% Get default command line output from handles structure
varargout{1} = handles.output;
Then I created a button that allow the user to specify region using ROI object:
% --- Executes on button press in rect.
function rect_Callback(hObject, eventdata, handles)
% hObject handle to rect (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% determine the positions
h = imrect;
position = getPosition(h);
SafeAreas = {position}
I do not understand where should I make the changes that suggested by you @stephen
Thank you so much!
Stephen23
Stephen23 2018년 10월 15일
편집: Stephen23 2018년 10월 16일
@sara sar: if you want to pass data between callback function then use guidata (if you are unfortunately using GUIDE) or use nested functions (if you are happily writing your own GUI):
Note that callback functions do not return any output arguments, so there is no point in defining varargout.
If you want to return data from the GUI to the base workspace then either follow what I explained in my last comment, or if you are using GUIDE then use the OutputFcn:
Note that you can use waitfor inside the OutputFcn.

댓글을 달려면 로그인하십시오.


Image Analyst
Image Analyst 2018년 10월 13일
편집: Image Analyst 2018년 10월 13일
You don't need a cell array. See attached demo.
The best way to save the coordinates of a segmented image is as a binary image, or as boundaries (after using bwboundaries()).
You can use imwrite() to save the binary image in a .PNG disk file, or use save() to save the boundaries in a .mat file on disk if you need to.
  댓글 수: 4
sara sar
sara sar 2018년 10월 16일
I want to put the coordinates in the cells. The user can specify more than one region using ROI objects. for example: there are 3 cars in the image. the user want to specify 2 of them, then the system will calculate the distance between the cars -that specified by the user- . So, I want to allow the user to specify many regions in the image, then I will store the coordinates of the ROI objects in cell array, after that the system will calculate the distance between them.
Image Analyst
Image Analyst 2018년 10월 16일
See my attached spatial calibration demo.

댓글을 달려면 로그인하십시오.

Community Treasure Hunt

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

Start Hunting!

Translated by