source: trunk/src/set_object.m @ 1071

Last change on this file since 1071 was 1071, checked in by g7moreau, 4 years ago
  • Update COPYRIGHT
File size: 36.7 KB
RevLine 
[204]1%'set_object': GUI to edit a projection object
2%------------------------------------------------------------------------
3% function hset_object= set_object(data, PlotHandles,ZBounds)
4% associated with the GUI set_object.fig
5%
6% OUTPUT:
7% hset_object: handle of the GUI figure
8%
[445]9% INPUT:u
[204]10% data: structure describing the object properties
11%    .Style=...
12%    .ProjMode
13%    .CoordType: 'phys' or 'px'
[379]14%    .num_DX,.num_DY,.num_DZ : mesh along each dirction
[204]15%    .RangeX, RangeY
16%    .Coord(j,i), i=1, 2, 3,  components x, y, z of j=1...n position(s) characterizing the object components
17% PlotHandles: handles for projection plots NO MORE USED
18% Zbounds: bounds on Z ( 3D case)
[809]19
20%=======================================================================
[1071]21% Copyright 2008-2020, LEGI UMR 5519 / CNRS UGA G-INP, Grenoble, France
[809]22%   http://www.legi.grenoble-inp.fr
23%   Joel.Sommeria - Joel.Sommeria (A) legi.cnrs.fr
[204]24%
25%     This file is part of the toolbox UVMAT.
[809]26%
[204]27%     UVMAT is free software; you can redistribute it and/or modify
[809]28%     it under the terms of the GNU General Public License as published
29%     by the Free Software Foundation; either version 2 of the license,
30%     or (at your option) any later version.
31%
[204]32%     UVMAT is distributed in the hope that it will be useful,
33%     but WITHOUT ANY WARRANTY; without even the implied warranty of
34%     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
[809]35%     GNU General Public License (see LICENSE.txt) for more details.
36%=======================================================================
[204]37
38function varargout = set_object(varargin)
39
[970]40% Last Modified by GUIDE v2.5 09-Nov-2016 15:46:04
[204]41
[680]42% Begin initialization code - DO NOT REFRESH
[204]43gui_Singleton = 1;
44gui_State = struct('gui_Name',       mfilename, ...
45                   'gui_Singleton',  gui_Singleton, ...
46                   'gui_OpeningFcn', @set_object_OpeningFcn, ...
47                   'gui_OutputFcn',  @set_object_OutputFcn, ...
48                   'gui_LayoutFcn',  [] , ...
49                   'gui_Callback',   []);
50if nargin & ischar(varargin{1})
51    gui_State.gui_Callback = str2func(varargin{1});
52end
53
54if nargout
55    [varargout{1:nargout}] = gui_mainfcn(gui_State, varargin{:});
56else
57    gui_mainfcn(gui_State, varargin{:});
58end
[680]59% End initialization code - DO NOT REFRESH
[204]60%------------------------------------------------------------------------
61%------------------------------------------------------------------------
62% --- Executes just before set_object is made visible.
63%INPUT:
64% handles: handles of the set_object interface elements
65%'IndexObj': NON USED ANYMORE (To suppress) index of the object (on the UvData list) that set_object will modify
66%        if =[] or absent: index still undefined (create mode in uvmat)
[680]67%        if=0; no associated object (used for series), the button 'REFRESH' is  then unvisible
[204]68%'data': read from an existing object selected in the interface
[379]69%      .Name : class of object ('POINTS','LINE',....)
70%      .num_DX,num_DY,num_DZ; meshes for regular grids
[204]71%      .Coord: object position coordinates
72%      .ParentButton: handle of the uicontrol object calling the interface
73% PlotHandles: set of handles of the elements contolling the plotting of the projected field:
[680]74%  if =[] or absent, no refresh (mask mode in uvmat)
[204]75% parameters on the uvmat interface (obtained by 'get_plot_handle.m')
76function set_object_OpeningFcn(hObject, eventdata, handles, data, PlotHandles,ZBounds)
77%-------------------------------------------------------------------
78% Choose default command line output for set_object
79handles.output = hObject;
80% Update handles structure
81guidata(hObject, handles);
82
[613]83%% position
[657]84set(0,'Unit','pixels')
[613]85ScreenSize=get(0,'ScreenSize');% get the size of the screen, to put the fig on the upper right
[705]86PosGUI=get(handles.set_object,'Position');% fig width in pixels
87Width=PosGUI(3);%width of the gui set_object in pixels
88Height=PosGUI(4);
[613]89Left=ScreenSize(3)- Width-40; %right edge close to the right, with margin=40
90Bottom=ScreenSize(4)-Height-40; %put fig at top right
[657]91set(handles.set_object,'Unit','pixels')
[613]92set(handles.set_object,'Position',[Left Bottom Width Height])
93
[204]94%default
[206]95if ~exist('ZBounds','var')
96    ZBounds=0; %default
[204]97end
[309]98set(hObject,'WindowButtonDownFcn',{'mouse_down'})%set mouse click action function
[402]99set(hObject,'DeleteFcn',{@closefcn})
[204]100
101% fill the interface as set in the input data:
102if exist('data','var')
[967]103    if isfield(data,'Coord')
104        set(handles.Coord,'Data',data.Coord)
105        if size(data.Coord,2)==3
[379]106        set(handles.z_slider,'Visible','on')
[967]107        end
[379]108    else
[204]109        set(handles.z_slider,'Visible','off')
110    end
[387]111    if isfield(data,'TypeMenu')
112        set(handles.Type,'String',data.TypeMenu)
113    end
114    if isfield(data,'ProjModeMenu')
115        set(handles.ProjMode,'UserData',data.ProjModeMenu)% data.ProjModeMenu as default menu (used in Type_Callback)
[954]116    end     
[591]117    errormsg=fill_GUI(data,handles.set_object);
[410]118    if ~isempty(errormsg)
119        msgbox_uvmat('ERROR','bad data input in set_object')
120        return
121    end
[387]122    Type_Callback(hObject, eventdata, handles)% update the GUI set_object depending on the object type   
[681]123    set(handles.REFRESH,'BackgroundColor',[1 0 0])
[955]124    if isfield(data,'RangeZ')
[379]125        set(handles.num_RangeZ_2,'String',num2str(max(data.RangeZ),3))
[955]126        if length(ZBounds) >= 2
127            DZ=max(data.RangeZ);%slider step
128            if ~isnan(ZBounds(1)) && ZBounds(2)~=ZBounds(1)
129                rel_step(1)=min(DZ/(ZBounds(2)-ZBounds(1)),0.2);%must be smaller than 1
130                rel_step(2)=0.1;
131                set(handles.z_slider,'Visible','on')
132                set(handles.z_slider,'Min',ZBounds(1))
133                set(handles.z_slider,'Max',ZBounds(2))
134                set(handles.z_slider,'SliderStep',rel_step)
135                set(handles.z_slider,'Value',(ZBounds(1)+ZBounds(2))/2)
136            end
[204]137        end
138    end
[954]139    if isfield(data,'RangeX')&& ~strcmp(data.Type,'plane_z')%TODO: generalise
[204]140        if ischar(data.RangeX)
141            data.RangeX=str2num(data.RangeX);
142        end
[379]143        set(handles.num_RangeX_2,'String',num2str(max(data.RangeX),3))
144        set(handles.num_RangeX_1,'String',num2str(min(data.RangeX),3))
[204]145    end
[954]146    if isfield(data,'RangeY')&& ~strcmp(data.Type,'plane_z')%TODO: generalise
[204]147        if ischar(data.RangeY)
148            data.RangeY=str2num(data.RangeY);
149        end
[379]150        set(handles.num_RangeY_2,'String',num2str(max(data.RangeY),3))
151        set(handles.num_RangeY_1,'String',num2str(min(data.RangeY),3))
[204]152    end
[954]153    if isfield(data,'RangeZ')&& ~strcmp(data.Type,'plane_z')%TODO: generalise
[204]154        if ischar(data.RangeZ)
155            data.RangeZ=str2num(data.RangeZ);
156        end
[379]157        set(handles.num_RangeZ_2,'String',num2str(max(data.RangeZ),3))
[204]158        if numel(data.RangeZ)>=2
[379]159            set(handles.num_RangeZ_1,'String',num2str(min(data.RangeZ),3))
[204]160        end
161    end 
[625]162    if ~isfield(data,'Angle')
[965]163        data.Angle=[0 0];
[625]164    end
165%     if isfield(data,'Angle') && isequal(numel(data.Angle),3)
[379]166         set(handles.num_Angle_1,'String',num2str(data.Angle(1)))
[1060]167%          set(handles.num_Angle_2,'String',num2str(data.Angle(2)))
[961]168%         set(handles.num_Angle_3,'String',num2str(data.Angle(3)))
[625]169%     end
[204]170end
[625]171set(get(handles.set_object,'children'),'enable','off')
172set(handles.SAVE,'enable','on')
[680]173% set(handles.REFRESH,'enable','off')
[204]174
[625]175
[204]176%------------------------------------------------------------------------
177% --- Outputs from this function are returned to the command line.
178function varargout = set_object_OutputFcn(hObject, eventdata, handles)
179%------------------------------------------------------------------------
180% Get default command line output from handles structure
181varargout{1} = handles.output;
182varargout{2}=handles;
183
184%------------------------------------------------------------------------
[402]185% executed when closing the GUI set_object
186function closefcn(gcbo,eventdata)
187%------------------------------------------------------------------------
188huvmat=findobj(allchild(0),'Tag','uvmat');%find the current uvmat interface handle
189if ~isempty(huvmat)
190    hhuvmat=guidata(huvmat);
[650]191    set(hhuvmat.CheckViewObject,'value',0)%
192    set(hhuvmat.CheckEditObject,'Value',0)% desactivate the edit option
[402]193    % deselect the object in ListObject when view_field is closed
194    if isempty(findobj(allchild(0),'Tag','view_field'))
195        ObjIndex=get(hhuvmat.ListObject,'Value');
196        ObjIndex=ObjIndex(1);%keep only the first object selected
197        set(hhuvmat.ListObject,'Value',ObjIndex)
198        % draw all object colors in blue (unselected) in uvmat
[511]199        hother=[findobj(hhuvmat.PlotAxes,'Tag','proj_object');findobj(hhuvmat.PlotAxes,'Tag','DeformPoint')];%find all the proj object and deform point representations
[402]200        for iobj=1:length(hother)
201            if isequal(get(hother(iobj),'Type'),'rectangle')||isequal(get(hother(iobj),'Type'),'patch')
202                set(hother(iobj),'EdgeColor','b')
203                if isequal(get(hother(iobj),'FaceColor'),'m')
204                    set(hother(iobj),'FaceColor','b')
205                end
206            elseif isequal(get(hother(iobj),'Type'),'image')
207                Acolor=get(hother(iobj),'CData');
208                Acolor(:,:,1)=zeros(size(Acolor,1),size(Acolor,2));
209                set(hother(iobj),'CData',Acolor);
210            else
211                set(hother(iobj),'Color','b')
212            end
213            set(hother(iobj),'Selected','off')
214        end
215    end
216end
217hseries=findobj(allchild(0),'Name','series');%find the current series interface handle
218if ~isempty(hseries)
219    hhseries=guidata(hseries);
[667]220    set(hhseries.EditObject,'Value',0)
[402]221end
222
223
224%------------------------------------------------------------------------
[379]225% --- Executes on selection change in Type.
226function Type_Callback(hObject, eventdata, handles)
[204]227%------------------------------------------------------------------------
[681]228
[379]229ListType=get(handles.Type,'String');
230Type=ListType{get(handles.Type,'Value')};
[204]231% make correspondance between different object styles
[379]232Coord=get(handles.Coord,'Data');
233
234%% set the number of lines in the Coord table depending on object type
235switch Type
[987]236    case {'line'}
[379]237        if size(Coord,1)<2
238            if isequal(size(Coord,2),3)
239                Coord=[Coord; 0 0 0];%add a line for edition (3D case)
240            else
241                Coord=[Coord; 0 0]; %add a line for edition (2D case)
242            end
243        else
244            Coord=Coord(1:2,:);
245        end
[987]246    case {'rectangle','ellipse','plane','volume'}
[379]247        Coord=Coord(1,:);
[204]248end
[379]249set(handles.Coord,'Data',Coord)
[204]250
[379]251%% set the projection menu and the corresponding options
[387]252if isempty(get(handles.ProjMode,'UserData'))
253    switch Type
[648]254        case 'polyline'
255            menu_proj={'interp_lin';'interp_tps';'none'};
[387]256        case {'polygon','rectangle','ellipse'}
[648]257            menu_proj={'inside';'outside';'mask_inside';'mask_outside';'interp_lin';'interp_tps';'none'};
[387]258        case 'volume'
[581]259            menu_proj={'interp_lin';'none'};
[387]260        otherwise
[581]261            menu_proj={'projection';'interp_lin';'interp_tps';'none'};%default
[387]262    end
263else
264    menu_proj=get(handles.ProjMode,'UserData');
265end
[410]266ProjModeList=get(handles.ProjMode,'String');
267menu_index=find(strcmp(ProjModeList{get(handles.ProjMode,'Value')},menu_proj));
268if isempty(menu_index)
269    menu_index=1;%
[204]270end
[410]271set(handles.ProjMode,'Value',menu_index);% value index must not exceed the menu length
[204]272set(handles.ProjMode,'String',menu_proj)
273ProjMode_Callback(hObject, eventdata, handles)
[379]274
[204]275%------------------------------------------------------------------------
276% --- Executes on selection change in ProjMode.
[675]277%------------------------------------------------------------------------
[681]278function ProjMode_Callback(hObject, eventdata, handles)
[675]279
[681]280set(handles.REFRESH,'BackgroundColor',[1 0 1])
[204]281menu=get(handles.ProjMode,'String');
282value=get(handles.ProjMode,'Value');
283ProjMode=menu{value};
[379]284menu=get(handles.Type,'String');
285value=get(handles.Type,'Value');
[204]286ObjectStyle=menu{value};
[379]287%%%%%%%%% TODO
[955]288test3D=strcmp(ObjectStyle,'plane_z'); %TODO: generalize
[379]289%%%%%%%%%
[204]290%default setting
[379]291set(handles.num_Angle_1,'Visible','off')
292set(handles.num_Angle_2,'Visible','off')
[961]293%set(handles.num_Angle_3,'Visible','off')
[379]294set(handles.num_RangeX_1,'Visible','off')
295set(handles.num_RangeY_1,'Visible','off')
[1062]296% if isequal(ProjMode,'interp_lin')|| isequal(ProjMode,'interp_tps')
297%     set(handles.num_RangeY_2,'Visible','off')
298% else
299%     set(handles.num_RangeY_2,'Visible','on')
300
[379]301set(handles.num_RangeZ_1,'Visible','off')
302set(handles.num_RangeZ_2,'Visible','off')
303set(handles.num_DX,'Visible','off')
304set(handles.num_DY,'Visible','off')
305set(handles.num_DZ,'Visible','off')
[1062]306%default
307                set(handles.num_RangeX_2,'Visible','off')
308         set(handles.num_RangeY_2,'Visible','off')
[204]309switch ObjectStyle
310    case 'points'
[1062]311        set(handles.num_RangeInterp,'TooltipString','num_RangeY_2: range of projection around each point')
[379]312%         set(handles.XObject,'TooltipString','XObject: set of x coordinates of the points')
313%         set(handles.YObject,'TooltipString','YObject: set of y coordinates of the points')
314%         set(handles.ZObject,'TooltipString','ZObject: set of z coordinates of the points')
[204]315    case {'line','polyline','polygon'}
[1062]316        set(handles.num_RangeX_2,'Visible','off')
317         set(handles.num_RangeY_2,'Visible','off')
318        %set(handles.num_RangeY_2,'TooltipString','num_RangeY_2: range of projection around the line')
[379]319         set(handles.Coord,'TooltipString','Coord: table of x,y, z coordinates defining the line')
320%         set(handles.YObject,'TooltipString','YObject: set of y coordinates defining the line')
321%         set(handles.ZObject,'TooltipString','ZObject: set of z coordinates defining the line')
[581]322        if isequal(ProjMode,'interp_lin')|| isequal(ProjMode,'interp_tps')
[379]323            set(handles.num_DX,'Visible','on')
324            set(handles.num_DX,'TooltipString','num_DX: mesh for the interpolated field along the line')
[912]325            set(handles.num_RangeInterp,'Visible','on')
[204]326        end       
327    case {'rectangle','ellipse'}
[1062]328                set(handles.num_RangeX_2,'Visible','on')
329         set(handles.num_RangeY_2,'Visible','on')
[675]330        set(handles.num_RangeX_2,'TooltipString',['num_RangeX_2: half length of the ' ObjectStyle])
331        set(handles.num_RangeY_2,'TooltipString',['num_RangeY_2: half width of the ' ObjectStyle])
[1062]332        if isequal(ProjMode,'interp_lin')|| isequal(ProjMode,'interp_tps')
333            set(handles.num_DX,'Visible','on')
334            set(handles.num_DX,'TooltipString','num_DX: mesh for the interpolated field along the line')
335            set(handles.num_RangeInterp,'Visible','on')
336        end       
[954]337    case {'plane','plane_z'} 
[1060]338        set(handles.num_Angle_1,'Visible','on')
[379]339        set(handles.num_RangeX_1,'Visible','on')
340        set(handles.num_RangeX_2,'Visible','on')
341        set(handles.num_RangeY_1,'Visible','on')
[1063]342        set(handles.num_RangeY_2,'Visible','on')
[379]343        set(handles.num_RangeZ_2,'TooltipString','num_ZMax: range of projection normal to the plane')
[204]344        if test3D
[379]345            set(handles.num_Angle_2,'Visible','on')
346            set(handles.num_Angle_1,'Visible','on')
[961]347            set(handles.num_Angle_1,'String','90')
[967]348            %set(handles.Coord,'Data',[0 0 0])
[379]349            set(handles.num_RangeZ_2,'Visible','on')
[204]350        end
[581]351        if isequal(ProjMode,'interp_lin')|| isequal(ProjMode,'interp_tps')
[379]352            set(handles.num_DX,'Visible','on')
353            set(handles.num_DY,'Visible','on')
[912]354            set(handles.num_RangeInterp,'Visible','on')
[204]355        else
[379]356            set(handles.num_DX,'Visible','off')
357            set(handles.num_DY,'Visible','off')
[204]358        end
[912]359%         if  isequal(ProjMode,'interp_lin')
360%             set(handles.num_DZ,'Visible','on') 
361%         end
[204]362     case {'volume'} 
[379]363        set(handles.num_RangeX_1,'Visible','on')
364        set(handles.num_RangeX_2,'Visible','on')
365        set(handles.num_RangeY_1,'Visible','on')
366        set(handles.num_RangeY_2,'Visible','on')
[204]367        set(handles.XObject,'TooltipString',['XObject:  x coordinate of the axis origin for the ' ObjectStyle])
368        set(handles.YObject,'TooltipString',['YObject:  y coordinate of the axis origin for the ' ObjectStyle])
[379]369        set(handles.num_Angle_1,'Visible','on')
370        set(handles.num_Angle_2,'Visible','on')
[965]371        %set(handles.num_Angle_3,'Visible','on')
[379]372        set(handles.num_RangeZ_1,'Visible','on')
373        set(handles.num_RangeZ_2,'Visible','on')
[581]374        if isequal(ProjMode,'interp_lin')|| isequal(ProjMode,'interp_tps')
[379]375            set(handles.num_DX,'Visible','on')
376            set(handles.num_DY,'Visible','on')
377            set(handles.num_DZ,'Visible','on')
[204]378        else
[379]379            set(handles.num_DX,'Visible','off')
380            set(handles.num_DY,'Visible','off')
381            set(handles.num_DZ,'Visible','off')
[204]382        end
383end
[864]384% set default values read in the plot of uvmat to initiate the mesh
385if isequal(ProjMode,'interp_lin')|| isequal(ProjMode,'interp_tps')
[1001]386    huvmat=findobj('Tag','uvmat');%find the current uvmat interface handle
387    if ~isempty(huvmat)
[912]388        UvData=get(huvmat,'UserData');%Data associated to the current uvmat interface
[1001]389        if isempty(str2num(get(handles.num_DX,'String')))||isempty(str2num(get(handles.num_DY,'String')));
390            if  isfield(UvData.Field,'CoordMesh')&&~isempty(UvData.Field.CoordMesh)
391                set(handles.num_DX,'String',num2str(UvData.Field.CoordMesh))
392                set(handles.num_DY,'String',num2str(UvData.Field.CoordMesh))
393                set(handles.num_RangeX_1,'String',num2str(UvData.Field.XMin))
394                set(handles.num_RangeX_2,'String',num2str(UvData.Field.XMax))
395                set(handles.num_RangeY_1,'String',num2str(UvData.Field.YMin))
396                set(handles.num_RangeY_2,'String',num2str(UvData.Field.YMax))
397            end
398            if isempty(get(handles.CoordUnit,'String'))&& isfield(UvData.Field,'CoordUnit')
399                set(handles.CoordUnit,'String',UvData.Field.CoordUnit)
400            end
[864]401        end
402    end
[922]403    if isempty(str2num(get(handles.num_RangeInterp,'String'))) && isfield(UvData,'Field')
[1001]404        set(handles.num_RangeInterp,'String',num2str(3*UvData.Field.CoordMesh))% default interpolationlength= 3 meshes
[912]405    end
[864]406end
407
[204]408%------------------------------------------------------------------------
409
410%------------------------------------------------------------------------
[379]411function num_Angle_1_Callback(hObject, eventdata, handles)
[204]412update_slider(hObject, eventdata,handles)
413%------------------------------------------------------------------------
414%------------------------------------------------------------------------
[379]415function num_Angle_2_Callback(hObject, eventdata, handles)
[204]416update_slider(hObject, eventdata,handles)
417%------------------------------------------------------------------------
418function update_slider(hObject, eventdata,handles)
419%rotation angles
[379]420PlaneAngle(1)=str2num(get(handles.num_Angle_1,'String'));%first  angle in degrees
421PlaneAngle(2)=str2num(get(handles.num_Angle_2,'String'));%second  angle in degrees
[965]422%PlaneAngle(3)=str2num(get(handles.num_Angle_3,'String'));%second  angle in degrees
[1060]423% om=norm(PlaneAngle);%norm of rotation angle in radians
424% OmAxis=PlaneAngle/om; %unit vector marking the rotation axis
425cos_om1=cos(pi*PlaneAngle(1)/180);
426sin_om1=sin(pi*PlaneAngle(1)/180);
427cos_om2=cos(pi*PlaneAngle(2)/180);
428sin_om2=sin(pi*PlaneAngle(2)/180);
[212]429%components of the unity vector norm_plane normal to the projection plane
[1060]430% norm_plane(1)=OmAxis(1)*coeff+OmAxis(2)*sin_om;
431% norm_plane(2)=OmAxis(2)*coeff-OmAxis(1)*sin_om;
432% norm_plane(3)=OmAxis(3)*coeff+cos_om;
[204]433huvmat=findobj('Tag','uvmat');%find the current uvmat interface handle
434UvData=get(huvmat,'UserData');%Data associated to the current uvmat interface
[912]435if isfield(UvData,'X') && isfield(UvData,'Y') && isfield(UvData,'Z')
[1060]436    Z=sin_om2*(cos_om1*(UvData.X)+sin_om1*(UvData.Y))+cos_om2*(UvData.Z);
[204]437    set(handles.z_slider,'Min',min(Z))
438    set(handles.z_slider,'Max',max(Z))
439    ZMax_Callback(hObject, eventdata, handles)
440end
441%------------------------------------------------------------------------
[379]442function num_DX_Callback(hObject, eventdata, handles)
[204]443%------------------------------------------------------------------------
444%------------------------------------------------------------------------
[379]445function num_DY_Callback(hObject, eventdata, handles)
[204]446%------------------------------------------------------------------------
447%------------------------------------------------------------------------
[379]448function num_DZ_Callback(hObject, eventdata, handles)
[204]449%------------------------------------------------------------------------
450
451
452%------------------------------------------------------------------------
[680]453% --- Executes on button press in REFRESH: refresh the current object , refresh the object and its projected field
454%------------------------------------------------------------------------
455function REFRESH_Callback(hObject, eventdata, handles)
[204]456
[681]457set(handles.REFRESH,'BackgroundColor',[1 1 0])% indicate activation of REFRESH
[508]458drawnow
459
[630]460%% update the object in the GUI series if relevant
461if strcmp(get(handles.set_object,'Name'),'edit_object_series')
462    hseries=findobj(allchild(0),'Tag','series');
463    if ~isempty(hseries)
464        SeriesData=get(hseries,'UserData');
465    SeriesData.ProjObject=read_GUI(handles.set_object);%read the parameters defining the object in the GUI set_object
466    set(hseries,'UserData',SeriesData);
467    end
[680]468    set(handles.REFRESH,'BackgroundColor',[1 0 0])
[630]469    return
470end
471
[410]472%% read the object parameters in the GUI set_object
[388]473ObjectData=read_GUI(handles.set_object);%read the parameters defining the object in the GUI set_object
[871]474if isfield(ObjectData,'CoordLine')% remove CoordLine (not used as object feature)
475    ObjectData=rmfield(ObjectData,'CoordLine');
476end
[397]477if iscell(ObjectData.Coord)%check for empty line
478    ObjectData.Coord=[0 0 0];
479    hhset_object=guidata(handles.set_object);
480    set(hhset_object.Coord,'Data',ObjectData.Coord)
481end
[388]482checknan=isnan(sum(ObjectData.Coord,2));%check for NaN lines
483if ~isempty(checknan)
484    ObjectData.Coord(checknan,:)=[];%remove the NaN lines
485end
[402]486ObjectName=ObjectData.Name;%name of the current object defined in set_object
[309]487if isempty(ObjectName)
[432]488     ObjectName=ObjectData.Type;% name the object by the object type type by default
[204]489end
[413]490
[432]491%% read the current object selection in the GUI uvmat
[413]492huvmat=findobj('tag','uvmat');%find the current uvmat GUI handle
493UvData=get(huvmat,'UserData');%Data associated to the GUI uvmat
494hhuvmat=guidata(huvmat);%handles of the objects children of the  GUI uvmat
[432]495ListObject=get(hhuvmat.ListObject,'String');% list of objects displayed in uvmat
[625]496
[650]497if isequal(get(hhuvmat.CheckEditObject,'Value'),0) %we append a new object
[625]498    ListObject=[ListObject;{''}];
499    IndexObj=length(ListObject);
500    set(hhuvmat.ListObject,'String',ListObject)
501    set(hhuvmat.ListObject,'Value',IndexObj)
502    UvData.ProjObject{IndexObj}=[]; %create a new empty object
503    UvData.ProjObject{IndexObj}.DisplayHandle.uvmat=hhuvmat.PlotAxes; % axes for plot_object
504    UvData.ProjObject{IndexObj}.DisplayHandle.view_field=[]; %no plot handle before plot_field operation
[630]505else   
[625]506    IndexObj=get(hhuvmat.ListObject,'Value');% index of the selected object for display in uvmat
507end
508
[630]509%set or modify(edit mode) the name of the currently selected object
[445]510detectname=1;
511ObjectNameNew=ObjectName;
512vers=0;% index of the name
513ListOther=ListObject;
514ListOther(IndexObj)=[];
515while ~isempty(detectname)
516    detectname=find(strcmp(ObjectNameNew,ListOther),1);%test the existence of the proposed name in the list
517    if detectname% if the object name already exists
518        indstr=regexp(ObjectNameNew,'\D');%indices of non number characters
519        if indstr(end)<length(ObjectNameNew) %object name ends by a number
520            vers=str2double(ObjectNameNew(indstr(end)+1:end))+1;
521            ObjectNameNew=[ObjectNameNew(1:indstr(end)) num2str(vers)];
522        else
523            vers=vers+1;
524            ObjectNameNew=[ObjectNameNew(1:indstr(end)) '_' num2str(vers)];
[204]525        end
526    end
[445]527end
528ObjectName=ObjectNameNew;
529set(handles.Name,'String',ObjectName)% display the default name in set_object
530ListObject{IndexObj}=ObjectName;
531set(hhuvmat.ListObject,'String',ListObject);%complement the object list
[625]532set(hhuvmat.ListObject_1,'String',ListObject);%complement the object list
[650]533set(hhuvmat.CheckViewObject,'Value',1)% indicate that the currently selected objected is viewed on set_object
[622]534check_handle=isfield(UvData.ProjObject{IndexObj},'DisplayHandle') && isfield(UvData.ProjObject{IndexObj}.DisplayHandle,'uvmat')...
535    && ~isempty(UvData.ProjObject{IndexObj}.DisplayHandle.uvmat) && ishandle(UvData.ProjObject{IndexObj}.DisplayHandle.uvmat);
[445]536if check_handle
[622]537    obj_handle=UvData.ProjObject{IndexObj}.DisplayHandle.uvmat;
[445]538end
[622]539UvData.ProjObject{IndexObj}=ObjectData;%record the current object properties in uvmat
[445]540if check_handle
[622]541    UvData.ProjObject{IndexObj}.DisplayHandle.uvmat=obj_handle; %preserve the object plot handle if valid
[445]542else
[622]543    UvData.ProjObject{IndexObj}.DisplayHandle.uvmat=hhuvmat.PlotAxes; %axes taken as object display handle by defualt
[204]544end
[309]545
[680]546%% refresh the field projected on the object
[432]547hview_field=[];%default
[445]548IndexObj_1=get(hhuvmat.ListObject_1,'Value');
[388]549if strcmp(ObjectData.ProjMode,'mask_inside')||strcmp(ObjectData.ProjMode,'mask_outside')||strcmp(ObjectData.ProjMode,'none')
550    PlotType='text';
551else
[581]552    % create tps coeff if needed for ProjMode 'interp_tps'
[586]553    if strcmp(ObjectData.ProjMode,'interp_tps')&&~isfield(UvData.Field,'Coord_tps')
554        %UvData.Field=calc_tps(UvData.Field,1);
555        [UvData.Field,errormsg]=tps_coeff_field(UvData.Field,1);
556        if ~isempty(errormsg)
557            msgbox_uvmat('ERROR', ['set_object/tps_coeff_field/' errormsg])
[680]558            set(handles.REFRESH,'enable','on')
[586]559            return
560        end
[508]561    end
[388]562    [ProjData,errormsg]= proj_field(UvData.Field,ObjectData);%project the current field of uvmat on ObjectData
563    if ~isempty(errormsg)
[586]564        msgbox_uvmat('ERROR', ['set_object/proj_field/' errormsg])
[680]565        set(handles.REFRESH,'enable','on')
[388]566        return
[586]567    end
[445]568    if isequal(IndexObj_1,IndexObj) % if  the projection is in uvmat
[586]569        PlotType=plot_field(ProjData,hhuvmat.PlotAxes,read_GUI(get(hhuvmat.PlotAxes,'parent')));%update the current uvmat plot
[491]570    else  % if the projection is in view_field
[413]571        hview_field=findobj(allchild(0),'tag','view_field');
572        if isempty(hview_field)
[429]573            hview_field=view_field(ProjData); %open the view_field GUI for plot
[413]574        else
575            hhview_field=guidata(hview_field);
[511]576            [PlotType,PlotParam]=plot_field(ProjData,hhview_field.PlotAxes,read_GUI(hview_field));%update an existing  plot in view_field
[591]577            errormsg=fill_GUI(PlotParam,hview_field);
[569]578            if ~isempty(errormsg)
579                msgbox_uvmat('ERROR',errormsg)
580                return
581            end
[586]582            %     write_plot_param(hhview_field,PlotParam); %update the display of plotting parameters for the current object
[413]583        end
[429]584        haxes=findobj(hview_field,'tag','axes3');
585        Data=get(hview_field,'UserData');
586        if strcmp(get(haxes,'Visible'),'off')%sempty(PlotParam.Coordinates)% case of no plot display (pure text table)
587            h_TableDisplay=findobj(hview_field,'tag','TableDisplay');
588            pos_table=get(h_TableDisplay,'Position');
589            pos=get(hview_field,'Position');
590            set(hview_field,'Position',[pos(1)+pos(3)-pos_table(3) pos(2)+pos(4)-pos_table(4) pos_table(3) pos_table(4)])
591            drawnow
592            set(hview_field,'UserData',Data);% restore the previously stored GUI position after GUI resizing
593        else
594            set(hview_field,'Position',Data.GUISize)
595        end
[388]596    end
[227]597end
[429]598
[680]599%% update the object refresh
[622]600hobject=UvData.ProjObject{IndexObj}.DisplayHandle.uvmat;
[445]601% if we are editing the object used for projection in uvmat
602if isequal(IndexObj_1,IndexObj)
603    %update the representation of the current object for projection field represented in view_field
[622]604    for iobj=1:numel(UvData.ProjObject)
605        UvData.ProjObject{iobj}.DisplayHandle.uvmat=...
606            plot_object(UvData.ProjObject{iobj},UvData.ProjObject{IndexObj_1},UvData.ProjObject{iobj}.DisplayHandle.uvmat,'b');
[432]607    end
[445]608else %  we are editing the object used for projection field represented in view_field
609    %update the representation of the current object in uvmat
[622]610    UvData.ProjObject{IndexObj}.DisplayHandle.uvmat=...
611             plot_object(UvData.ProjObject{IndexObj},UvData.ProjObject{IndexObj_1},UvData.ProjObject{IndexObj}.DisplayHandle.uvmat,'m');
[680]612    %indicate the object index in the user data of the object refresh (needed for further mouse editing)
[622]613    ObjectInfo=get(UvData.ProjObject{IndexObj}.DisplayHandle.uvmat,'UserData');
[445]614    ObjectInfo.IndexObj=IndexObj;
[622]615    set(UvData.ProjObject{IndexObj}.DisplayHandle.uvmat,'UserData',ObjectInfo)
[445]616    % update the representation of all objects in view_field
[622]617    for iobj=1:numel(UvData.ProjObject)
[729]618        if isfield(UvData.ProjObject{iobj},'DisplayHandle') && isfield(UvData.ProjObject{iobj}.DisplayHandle,'view_field')
[622]619            UvData.ProjObject{iobj}.DisplayHandle.view_field=...
620                plot_object(UvData.ProjObject{iobj},UvData.ProjObject{iobj},UvData.ProjObject{iobj}.DisplayHandle.view_field,'b');
[445]621        end
[432]622    end
623end
624set(huvmat,'UserData',UvData)
625
[204]626%% update the GUI uvmat
[650]627set(hhuvmat.CheckEditObject,'Value',1) % set uvmat to object edit mode to allow further object update
628set(hhuvmat.CheckViewField,'Value',1)
[681]629
[680]630set(handles.REFRESH,'BackgroundColor',[1 0 0])
[681]631set(handles.num_RangeY_2,'BackgroundColor',[1 1 1])
632
[772]633% --- Executes on button press in DisplayCoord.
634function DisplayCoord_Callback(hObject, eventdata, handles)
[738]635global Coord
636Coord=get(handles.Coord,'Data');
637evalin('base','global Coord')%make Coord global in the workspace
638display('object coordinates:')
639evalin('base','Coord') %display Coord in the workspace
640commandwindow; %brings the Matlab command window to the front
641
[204]642%----------------------------------------------------
[379]643function num_RangeY_1_Callback(hObject, eventdata, handles)
[204]644%------------------------------------------------------------------------
645
[379]646function num_RangeZ_1_Callback(hObject, eventdata, handles)
[204]647%------------------------------------------------------------------------
648
[379]649function num_RangeZ_2_Callback(hObject, eventdata, handles)
650DZ=str2num(get(handles.num_RangeZ_2,'String'));
[204]651ZMin=get(handles.z_slider,'Min');
652ZMax=get(handles.z_slider,'Max');
653if ~isequal(ZMax-ZMin,0)
654    rel_step(1)=DZ/(ZMax-ZMin);
655    rel_step(2)=0.2;
656    set(handles.z_slider,'SliderStep',rel_step)
657end
658%------------------------------------------------------------------------
[379]659function num_RangeY_2_Callback(hObject, eventdata, handles)
[204]660%------------------------------------------------------------------------
661
[379]662function num_RangeX_1_Callback(hObject, eventdata, handles)
[204]663%------------------------------------------------------------------------
664
[379]665function num_RangeX_2_Callback(hObject, eventdata, handles)
[681]666
[204]667%------------------------------------------------------------------------
668%------------------------------------------------------------------------
669function SAVE_Callback(hObject, eventdata, handles)
670% ------------------------------------------------------
[379]671Object=read_GUI(handles.set_object);
[871]672if isfield(Object,'CoordLine')% remove CoordLine (not used as object feature)
673    Object=rmfield(Object,'CoordLine');
674end
[204]675huvmat=findobj('Tag','uvmat');
676if isempty(huvmat)
677    huvmat=findobj(allchild(0),'Name','series');
678end
679hchild=get(huvmat,'Children');
680hrootpath=findobj(hchild,'Tag','RootPath');
681if isempty(hrootpath)
682    RootPath='';
683else
684    RootPath=get(hrootpath,'String');
685    if iscell(RootPath)
686        RootPath=RootPath{1};
687    end
688end
689title={'object name'};
[667]690dir_save=uigetfile_uvmat('select the folder for the new xml object file:',RootPath,'uigetdir');
691if ~isempty(dir_save)
692    ObjectName=get(handles.Name,'String');
693    if ~isempty(ObjectName)&&~strcmp(ObjectName,'')
[675]694        def=[ObjectName '.xml'];
[667]695    else
[675]696        def=[Object.Style '.xml'];
[667]697    end
[705]698    displ_txt={['save object in' dir_save]; 'with file name (.xml):'};%default display
[667]699    menu=get(handles.ProjMode,'String');
700    value=get(handles.ProjMode,'Value');
701    ProjMode=menu{value};
702    if strcmp(ProjMode,'mask_inside')||strcmp(ProjMode,'mask_outside')
[745]703        displ_txt=[displ_txt; '(note: to create a mask image, use ''Tools/make mask'' on the upper bar menu of uvmat)'];
[667]704    end
[675]705    answer=msgbox_uvmat('INPUT_TXT',displ_txt,def);
[705]706    if ischar(answer)
707        FullName=fullfile(dir_save,answer);
[667]708        t=struct2xml(Object);
709        t=set(t,1,'name','ProjObject');
[912]710        try
711            save(t,FullName)
712            msgbox_uvmat('CONFIRMATION',[FullName  ' saved'])
713        catch ME
714            msgbox_uvmat('ERROR',ME.message)
715        end
[667]716    end
[204]717end
[227]718
[204]719%------------------------------------------------------------------------
720% --- Executes on slider movement.
721function z_slider_Callback(hObject, eventdata, handles)
722%---------------------------------------------------------
723Z_value=get(handles.z_slider,'Value');
724%rotation angles
[965]725PlaneAngle=[0 0];
[227]726norm_plane=[0 0 1];
727cos_om=1;
728sin_om=0;
729
[379]730PlaneAngle(1)=str2double(get(handles.num_Angle_1,'String'));%first  angle in degrees
731PlaneAngle(2)=str2double(get(handles.num_Angle_2,'String'));%second  angle in degrees
[964]732%PlaneAngle(3)=str2double(get(handles.num_Angle_3,'String'));%second  angle in degrees
[227]733PlaneAngle=(pi/180)*PlaneAngle;
[964]734M2=[cos(PlaneAngle(2)) sin(PlaneAngle(2)) 0;-sin(PlaneAngle(2)) cos(PlaneAngle(2)) 0;0 0 1];
735M1=[1 0 0;0 cos(PlaneAngle(1)) sin(PlaneAngle(1));0 -sin(PlaneAngle(1)) cos(PlaneAngle(1))];
736M=M1*M2;
737norm_plane=M*[0 0 1]';
738
739% om=norm(PlaneAngle);%norm of rotation angle in radians
740% if isequal(om,0)
741%     norm_plane=[0 0 1];
742% else
743%     OmAxis=PlaneAngle/om; %unit vector marking the rotation axis
744%     cos_om=cos(om);
745%     sin_om=sin(om);
746%     coeff=OmAxis(3)*(1-cos_om);
747%     %components of the unity vector norm_plane normal to the projection plane
748%     norm_plane(1)=OmAxis(1)*coeff+OmAxis(2)*sin_om;
749%     norm_plane(2)=OmAxis(2)*coeff-OmAxis(1)*sin_om;
750%     norm_plane(3)=OmAxis(3)*coeff+cos_om;
751% end
[747]752Coord=get(handles.Coord,'Data');
753Coord(3)=Z_value;
754set(handles.Coord,'Data',Coord)
[204]755
[388]756% update graph
[680]757REFRESH_Callback(hObject, eventdata, handles)
[227]758
[204]759%------------------------------------------------------------------------
760% --- Executes on button press in HELP.
761function HELP_Callback(hObject, eventdata, handles)
[227]762%------------------------------------------------------------------------
[773]763web('http://servforge.legi.grenoble-inp.fr/projects/soft-uvmat/wiki/UvmatHelp#ProjObject')
[204]764
[850]765%------------------------------------------------------------------------
[674]766% --- Executes when selected cell(s) is changed in ListCoord.
[850]767%------------------------------------------------------------------------
[674]768function Coord_CellSelectionCallback(hObject, eventdata, handles)
769if ~isempty(eventdata.Indices)
770    iline=eventdata.Indices(1);% selected line number
[850]771    set(handles.CoordLine,'String',num2str(iline))
[674]772end
[379]773
[681]774
[965]775% function num_Angle_3_Callback(hObject, eventdata, handles)
776%
777% %------------------------------------------------------------------------
778% % --- Executes on key press with selection of a uicontrol
779% %------------------------------------------------------------------------
780% function KeyPressFcn(hObject, eventdata, handles)
781% set(handles.REFRESH,'BackgroundColor',[1 0 1])% se REFRESH to magenta color, indicates that refresh needs to be done
782% if strcmp(get(hObject,'Tag'),'num_Angle_3')
783%     set(handles.num_RangeX_1,'String','')
784%     set(handles.num_RangeX_2,'String','')
785%         set(handles.num_RangeY_1,'String','')
786%     set(handles.num_RangeY_2,'String','')
787% end
[681]788
[674]789%------------------------------------------------------------------------
[681]790% --- Executes on key press with focus on Coord and none of its controls.
791%------------------------------------------------------------------------
792function Coord_KeyPressFcn(hObject, eventdata, handles)
793
794set(handles.REFRESH,'BackgroundColor',[1 0 1])
[674]795xx=double(get(handles.set_object,'CurrentCharacter')); %get the keyboard character
[680]796if ismember(xx,[127 31])% delete, or downward
[674]797    Coord=get(handles.Coord,'Data');
[850]798    iline=str2double(get(handles.CoordLine,'String'));
[674]799            if isequal(xx, 31)
800                if isequal(iline,size(Coord,1))% arrow downward
801                Coord=[Coord;zeros(1,size(Coord,2))];
802                end
803            else
804    Coord(iline,:)=[];% suppress the current line
805            end
806    set(handles.Coord,'Data',Coord);
807end
[850]808
809%------------------------------------------------------------------------
810% --- Executes on button press in clear_line.
811%------------------------------------------------------------------------
812function clear_line_Callback(hObject, eventdata, handles)
813
814Coord=get(handles.Coord,'Data');
815iline=str2double(get(handles.CoordLine,'String'));
816if isempty(iline)
817    msgbox_uvmat('WARNING','no line suppressed, select a line in the table')
818else
819    Coord(iline,:)=[];
820    set(handles.REFRESH,'BackgroundColor',[1 0 1])
821    set(handles.Coord,'Data',Coord);
822    set(handles.CoordLine,'String','')
823    REFRESH_Callback(hObject,eventdata,handles)
824end
[911]825
826
827
828function num_RangeInterp_Callback(hObject, eventdata, handles)
[966]829
830
[970]831%
[966]832
833
[970]834% --- Executes on key press with focus on num_RangeX_2 and none of its controls.
835function suggest_refresh(hObject, eventdata, handles)
836set(handles.REFRESH,'BackgroundColor',[1 0 1])
Note: See TracBrowser for help on using the repository browser.