• Tidak ada hasil yang ditemukan

Yang bertanda tangan di bawah ini :

Nama : Prof. Dr.rer.nat Wahyu Hardyanto, M.Si

NIP : 196011241984031002

Pangkat/golongan : Pembina Tk. I / IVB Jabatan Fungsional : Profesor

Dengan ini menyatakan bahwa proposal penelitian saya dengan judul Perekayasaan Densitometer Digital Berbasis Matlab Untuk Mendukung Unnes Berwawasan Konservasi yang diusulkan dalam skema Penelitian Peningkatan Bidang Konservasi FMIPA Unnes untuk tahun anggaran 2016 bersifat original dan belum pernah dibiayai oleh lembaga / sumber dana lain.

Bilamana di kemudian hari ditemukan ketidaksesuaian dengan pernyataan ini, maka saya bersedia dituntut dan diproses sesuai dengan ketentuan yang berlaku dan mengembalikan seluruh biaya penelitian yang sudah diterima ke kas negara.

Demikian pernyataan ini dibuat dengan sesungguhnya dan dengan sebenar-benarnya.

Semarang, 20 Oktober 2016 Mengetahui,

Dekan FMIPA UNNES Yang Menyatakan

Prof. Dr. Zaenuri, S.E., M.Si., Akt. Prof. Dr.rer.nat Wahyu Hardyanto, M.Si

Lampiran 3:

function varargout = Image_Analysis_DO(varargin)

% IMAGE_ANALYSIS_DO M-file for Image_Analysis_DO.fig

% IMAGE_ANALYSIS_DO, by itself, creates a new IMAGE_ANALYSIS_DO or raises the existing

% singleton*. %

% H = IMAGE_ANALYSIS_DO returns the handle to a new IMAGE_ANALYSIS_DO or the handle to

% the existing singleton*. %

% IMAGE_ANALYSIS_DO('CALLBACK',hObject,eventData,handles,...) calls the local

% function named CALLBACK in IMAGE_ANALYSIS_DO.M with the given input arguments.

%

% IMAGE_ANALYSIS_DO('Property','Value',...) creates a new IMAGE_ANALYSIS_DO or raises the

% existing singleton*. Starting from the left, property value pairs are

% applied to the GUI before Image_Analysis_DO_OpeningFcn gets called. An

% unrecognized property name or invalid value makes property application

% stop. All inputs are passed to Image_Analysis_DO_OpeningFcn via varargin.

%

% *See GUI Options on GUIDE's Tools menu. Choose "GUI allows only one

% instance to run (singleton)". %

% See also: GUIDE, GUIDATA, GUIHANDLES

% Edit the above text to modify the response to help Image_Analysis_DO % Last Modified by GUIDE v2.5 31-Oct-2016 21:11:57

% Begin initialization code - DO NOT EDIT gui_Singleton = 1;

gui_State = struct('gui_Name', mfilename, ...

'gui_Singleton', gui_Singleton, ...

'gui_OpeningFcn', @Image_Analysis_DO_OpeningFcn, ...

'gui_OutputFcn', @Image_Analysis_DO_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

% --- Executes just before Image_Analysis_DO is made visible.

function Image_Analysis_DO_OpeningFcn(hObject, eventdata, handles,

varargin)

% This function has no output args, see OutputFcn. % hObject handle to figure

% eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATA)

% varargin command line arguments to Image_Analysis_DO (see VARARGIN) % Choose default command line output for Image_Analysis_DO

handles.output = hObject;

set([handles.axes1,handles.axes2,handles.axes3,handles.axes4,handles.axes5 ],'XTick',[],'YTick',[],'box','on')

% Update handles structure guidata(hObject, handles);

% UIWAIT makes Image_Analysis_DO wait for user response (see UIRESUME) % uiwait(handles.figure1);

% --- Outputs from this function are returned to the command line.

function varargout = Image_Analysis_DO_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;

function edit2_Callback(hObject, eventdata, handles)

% hObject handle to edit2 (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATA) % Hints: get(hObject,'String') returns contents of edit2 as text

% str2double(get(hObject,'String')) returns contents of edit2 as a double

% --- Executes during object creation, after setting all properties.

function edit2_CreateFcn(hObject, eventdata, handles)

% hObject handle to edit2 (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB

% handles empty - handles not created until after all CreateFcns called % Hint: edit controls usually have a white background on Windows.

if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))

set(hObject,'BackgroundColor','white');

end

function edit3_Callback(hObject, eventdata, handles)

% hObject handle to edit3 (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATA) % Hints: get(hObject,'String') returns contents of edit3 as text

% str2double(get(hObject,'String')) returns contents of edit3 as a double

% --- Executes during object creation, after setting all properties.

function edit3_CreateFcn(hObject, eventdata, handles)

% hObject handle to edit3 (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB

% handles empty - handles not created until after all CreateFcns called % Hint: edit controls usually have a white background on Windows.

% See ISPC and COMPUTER.

if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))

set(hObject,'BackgroundColor','white');

end

% --- Executes on button press in pushbutton1.

function pushbutton1_Callback(hObject, eventdata, handles)

% hObject handle to pushbutton1 (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATA) img=getappdata(handles.figure1,'img');

axes(handles.axes1) rect = getrect; gh=find(rect); hold on

rectangle('Position',rect,'EdgeColor','r','LineWidth',1) imcb=imcrop(img,rect); mb=mean2(imcb); set(handles.edit2,'string',mb) sdb = std2(imcb); set(handles.edit4,'string',sdb) axes(handles.axes2) imshow(imcb) axes(handles.axes4) imhist(imcb)

setappdata(handles.figure1,'imcb',imcb) setappdata(handles.figure1,'mb',mb) setappdata(handles.figure1,'sdb',sdb)

function pushbutton2_Callback(hObject, eventdata, handles) % hObject handle to pushbutton2 (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATA) img=getappdata(handles.figure1,'img');

axes(handles.axes1) rect = getrect; gh=find(rect); hold on

rectangle('Position',rect,'EdgeColor','b','LineWidth',1) imcf=imcrop(img,rect); mf=mean2(imcf); set(handles.edit3,'string',mf) axes(handles.axes3) imshow(imcf) axes(handles.axes5) imhist(imcf)

setappdata(handles.figure1,'imcf',imcf) setappdata(handles.figure1,'mf',mf)

function edit4_Callback(hObject, eventdata, handles)

% hObject handle to edit4 (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATA) % Hints: get(hObject,'String') returns contents of edit4 as text

% str2double(get(hObject,'String')) returns contents of edit4 as a double

% --- Executes during object creation, after setting all properties.

function edit4_CreateFcn(hObject, eventdata, handles)

% hObject handle to edit4 (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB

% handles empty - handles not created until after all CreateFcns called % Hint: edit controls usually have a white background on Windows.

% See ISPC and COMPUTER.

if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))

set(hObject,'BackgroundColor','white');

end

% --- Executes on button press in pushbutton3.

function pushbutton3_Callback(hObject, eventdata, handles)

% hObject handle to pushbutton3 (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATA) [filename,path]=uigetfile('*.jpg','Load Image');

if isequal(filename,0)

return end

img=imcomplement(img); axes(handles.axes1) imshow(img)

setappdata(handles.figure1,'img',img)

% --- Executes on button press in pushbutton4.

function pushbutton4_Callback(hObject, eventdata, handles)

% hObject handle to pushbutton4 (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATA) %% Hitung DO

mb=getappdata(handles.figure1,'mb'); % Background mf=getappdata(handles.figure1,'mf'); % Foreground sdb=getappdata(handles.figure1,'sdb');

DO=log10(mb/mf); % Persamaan DO set(handles.edit5,'string',DO)

function edit5_Callback(hObject, eventdata, handles)

% hObject handle to edit5 (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATA) % Hints: get(hObject,'String') returns contents of edit5 as text

% str2double(get(hObject,'String')) returns contents of edit5 as a double

% --- Executes during object creation, after setting all properties.

function edit5_CreateFcn(hObject, eventdata, handles)

% hObject handle to edit5 (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB

% handles empty - handles not created until after all CreateFcns called % Hint: edit controls usually have a white background on Windows.

% See ISPC and COMPUTER.

if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))

set(hObject,'BackgroundColor','white');

end

% --- Executes on button press in pushbutton5.

function pushbutton5_Callback(hObject, eventdata, handles)

% hObject handle to pushbutton5 (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATA) img=getappdata(handles.figure1,'img');

axes(handles.axes1) imshow(img)

Dokumen terkait