Clim Change to help slider
    조회 수: 7 (최근 30일)
  
       이전 댓글 표시
    
hello everyone do not know how slider can change the value Clim [0 b]. The property inspectr axes I have not found the box for the callback.
function varargout = books(varargin)
% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct('gui_Name',       mfilename, ...
                 'gui_Singleton',  gui_Singleton, ...
                 'gui_OpeningFcn', @books_OpeningFcn, ...
                 'gui_OutputFcn',  @books_OutputFcn, ...
                 'gui_LayoutFcn',  [] , ...
                 'gui_Callback',   []);
if nargin && ischar(varargin{1})
  gui_State.gui_Callback = str2func(varargin{1});
end
if nargout
  [varargout{1:nargout}] = gui_mainfcn(gui_State, varargin{:});
else
  gui_mainfcn(gui_State, varargin{:});
end
% End initialization code - DO NOT EDIT
function books_OpeningFcn(hObject, eventdata, handles, varargin)
handles.output = hObject;
guidata(hObject, handles);
function varargout = books_OutputFcn(hObject, eventdata, handles) 
varargout{1} = handles.output;
function slider1_Callback(hObject, eventdata, handles)
set(handles.edit1,'String',...
  num2str(get(handles.slider1,'Value')));
I = imread('cameraman.tif');
imshow(I)
function slider1_CreateFcn(hObject, eventdata, handles)
if isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
  set(hObject,'BackgroundColor',[.9 .9 .9]);
end
function edit1_Callback(hObject, eventdata, handles)
val=str2double(get(handles.slider1,'Slider'));
  if isnumeric(val) & length(val)==1 & ...
          val >= get(handles.slider1,'Min') & ...
          vas <= get(handles.slider1,'Max')
          set(handles.slider1,'Value',val);
  else
          handles.numberOfErrors = handles.numberOfErrors + 1;
          set(handles.edit1,'CLim',...
          [handles.errorCLim,num2str(handsles.numberOfErrors)]);
          guidata(gcbo, handles);
  end
function edit1_CreateFcn(hObject, eventdata, handles)
if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
  set(hObject,'BackgroundColor','white');
end
댓글 수: 0
채택된 답변
  Adam
 2012년 3월 2일
        댓글 수: 1
  Walter Roberson
      
      
 2012년 3월 2일
				The period after min_val does not appear to have any purpose in the set() line.
추가 답변 (4개)
  Walter Roberson
      
      
 2012년 3월 1일
        Clim needs to be set to a pair of numeric values (an array of 2 elements). When you get() the Value of a slider, you only get one numeric value.
댓글 수: 0
  Adam
 2012년 3월 2일
        댓글 수: 3
  Walter Roberson
      
      
 2012년 3월 2일
				CD = get(handles.I,'CData');
max_val = max(CD(:));
This will work whether the CD is 2 dimensional (indexed image) or 3 dimensional (RGB image). Your previous code would fail on RGB images because max(max()) would only reduce 2 of the 3 dimensions.
참고 항목
카테고리
				Help Center 및 File Exchange에서 Graphics Object Properties에 대해 자세히 알아보기
			
	제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

