- Timestamp:
- Mar 25, 2015, 9:28:10 AM (10 years ago)
- Location:
- trunk/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/series/civ_input.m
r884 r885 322 322 set(handle_title_dx,'Visible','off'); 323 323 end 324 end 325 if isfield(Param.ActionInput,'Civ2') 326 CheckDeformation_Callback(hObject, eventdata, handles) 324 327 end 325 328 end … … 1144 1147 set(handles.ConfigSource,'String','NEW') 1145 1148 set(handles.OK,'BackgroundColor',[1 0 1]) 1146 if get(handles.CheckDeformation,'Value') 1147 set(handles.num_CorrSmooth,'Visible','off') 1148 else 1149 set(handles.num_CorrSmooth,'Visible','on') 1149 handles_CoorSmooth=findobj(get(handles.Civ2,'children'),'Tag','num_CorrSmooth'); 1150 if get(handles.CheckDeformation,'Value') 1151 set(handles_CoorSmooth,'Visible','off') 1152 else 1153 set(handles_CoorSmooth,'Visible','on') 1150 1154 end 1151 1155 -
trunk/src/series/civ_series.m
r883 r885 977 977 if CheckDeformation 978 978 mesh=0.25;%mesh in pixels for subpixel image interpolation (x 4 in each direction) 979 par_civ.CorrSmooth=2;% use SUBPIX2DGAUSS (take into account more points near the max) 979 980 end 980 981 … … 1044 1045 image2_crop=interp2(image2_crop,xi,yi,'*spline'); 1045 1046 image2_crop(isnan(image2_crop))=0; 1046 par_civ.CorrSmooth=2;% use SUBPIX2DGAUSS (take into account more points near the max)1047 1047 end 1048 1048 sum_square=sum(sum(image1_crop.*image1_crop));
Note: See TracChangeset
for help on using the changeset viewer.