Friday, June 16, 2017

Cara Membuat GUI MATLAB Untuk GUI Sinyal, Citra, Dan Video Untuk Riset: HAK CIPTA @Dr.Eng R.H Sianipar, S.T, M.Eng






SEMUA EVENT CALLBACK GUI MATLAB:

function varargout = Form_Utama_GUI(varargin)
% FORM_UTAMA_GUI MATLAB code for Form_Utama_GUI.fig
%      FORM_UTAMA_GUI, by itself, creates a new FORM_UTAMA_GUI or raises the existing
%      singleton*.
%
%      H = FORM_UTAMA_GUI returns the handle to a new FORM_UTAMA_GUI or the handle to
%      the existing singleton*.
%
%      FORM_UTAMA_GUI('CALLBACK',hObject,eventData,handles,...) calls the local
%      function named CALLBACK in FORM_UTAMA_GUI.M with the given input arguments.
%
%      FORM_UTAMA_GUI('Property','Value',...) creates a new FORM_UTAMA_GUI or raises the
%      existing singleton*.  Starting from the left, property value pairs are
%      applied to the GUI before Form_Utama_GUI_OpeningFcn gets called.  An
%      unrecognized property name or invalid value makes property application
%      stop.  All inputs are passed to Form_Utama_GUI_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 Form_Utama_GUI

% Last Modified by GUIDE v2.5 16-Jun-2017 13:13:29

% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct('gui_Name',       mfilename, ...
                   'gui_Singleton',  gui_Singleton, ...
                   'gui_OpeningFcn', @Form_Utama_GUI_OpeningFcn, ...
                   'gui_OutputFcn',  @Form_Utama_GUI_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


% --- Executes just before Form_Utama_GUI is made visible.
function Form_Utama_GUI_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 Form_Utama_GUI (see VARARGIN)

% Choose default command line output for Form_Utama_GUI
handles.output = hObject;

% Update handles structure


guidata(hObject, handles);

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


% --- Outputs from this function are returned to the command line.
function varargout = Form_Utama_GUI_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 DCT_LP_Callback(hObject, eventdata, handles)
% hObject    handle to DCT_LP (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run DCT_LP;


% --------------------------------------------------------------------
function SVD_Callback(hObject, eventdata, handles)
% hObject    handle to SVD (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run dekomposisi_nilai_singular;


% --------------------------------------------------------------------
function DDCT_Callback(hObject, eventdata, handles)
% hObject    handle to DDCT (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run fusi_ddct;


% --------------------------------------------------------------------
function Wavelet_Diskret_Callback(hObject, eventdata, handles)
% hObject    handle to Wavelet_Diskret (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run fusicitra;


% --------------------------------------------------------------------
function WDS_Callback(hObject, eventdata, handles)
% hObject    handle to WDS (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run swt_1_2_level_fusi_citra;


% --------------------------------------------------------------------
function DWT_DUAL_TREE_Callback(hObject, eventdata, handles)
% hObject    handle to DWT_DUAL_TREE (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run dwt_kompleks_dual_tree;


% --------------------------------------------------------------------
function Fusi_Gradien_Callback(hObject, eventdata, handles)
% hObject    handle to Fusi_Gradien (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run fusi_ketajaman_gradien;


% --------------------------------------------------------------------
function Untitled_2_Callback(hObject, eventdata, handles)
% hObject    handle to Untitled_2 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)


% --------------------------------------------------------------------
function Morfologi_Deteksi_Tepi_Callback(hObject, eventdata, handles)
% hObject    handle to Morfologi_Deteksi_Tepi (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run morfologi_citra;


% --------------------------------------------------------------------
function Tepi_Konvensional_Callback(hObject, eventdata, handles)
% hObject    handle to Tepi_Konvensional (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run deteksi_tepi_citra;


% --------------------------------------------------------------------
function Retak_Tulang_Callback(hObject, eventdata, handles)
% hObject    handle to Retak_Tulang (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run retak_tulang;


% --------------------------------------------------------------------
function Untitled_3_Callback(hObject, eventdata, handles)
% hObject    handle to Untitled_3 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)


% --------------------------------------------------------------------
function Segmentasi_Komparatif_Callback(hObject, eventdata, handles)
% hObject    handle to Segmentasi_Komparatif (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run studi_komparatif_segmentasi;


% --------------------------------------------------------------------
function Kontur_Aktif_Callback(hObject, eventdata, handles)
% hObject    handle to Kontur_Aktif (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run ActiveCountorsGUI;


% --------------------------------------------------------------------
function Kontur_Region_Callback(hObject, eventdata, handles)
% hObject    handle to Kontur_Region (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run segmentasi_kontur_aktif_region;


% --------------------------------------------------------------------
function Untitled_4_Callback(hObject, eventdata, handles)
% hObject    handle to Untitled_4 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)


% --------------------------------------------------------------------
function Denoising_Wavelet_Callback(hObject, eventdata, handles)
% hObject    handle to Denoising_Wavelet (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run denoising_adaptif_wavelet;


% --------------------------------------------------------------------
function NLEM_Callback(hObject, eventdata, handles)
% hObject    handle to NLEM (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run denoising_nlem__BARU;


% --------------------------------------------------------------------
function Beltrami_Callback(hObject, eventdata, handles)
% hObject    handle to Beltrami (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run denoising_beltrami;


% --------------------------------------------------------------------
function Dekonv_Variasi_Total_Callback(hObject, eventdata, handles)
% hObject    handle to Dekonv_Variasi_Total (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run dekonvolusi_variasi_total;


% --------------------------------------------------------------------
function Bregman_Callback(hObject, eventdata, handles)
% hObject    handle to Bregman (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run variasi_total_isotropis_anisotropis;


% --------------------------------------------------------------------
function Tepi_Semut_Callback(hObject, eventdata, handles)
% hObject    handle to Tepi_Semut (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run denoising_algoritma_semut;


% --------------------------------------------------------------------
function Untitled_5_Callback(hObject, eventdata, handles)
% hObject    handle to Untitled_5 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)


% --------------------------------------------------------------------
function Konvensional_Sinyal_Callback(hObject, eventdata, handles)
% hObject    handle to Konvensional_Sinyal (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run Tapis_Digital_Audio;


% --------------------------------------------------------------------
function Untitled_6_Callback(hObject, eventdata, handles)
% hObject    handle to Untitled_6 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run Inverse_Wiener_Audio;


% --------------------------------------------------------------------
function Harmonisa_STFT_Callback(hObject, eventdata, handles)
% hObject    handle to Harmonisa_STFT (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run waktu_frekuensi_STFT_animasi__FINAL;


% --------------------------------------------------------------------
function Harmonis_Wavelet_Callback(hObject, eventdata, handles)
% hObject    handle to Harmonis_Wavelet (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run waktu_frekuensi_wavelet_animasi;


% --------------------------------------------------------------------
function Bilateral_Callback(hObject, eventdata, handles)
% hObject    handle to Bilateral (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run Restorasi_Citra_TAPIS_BILATERAL;


% --------------------------------------------------------------------
function Untitled_9_Callback(hObject, eventdata, handles)
% hObject    handle to Untitled_9 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)


% --------------------------------------------------------------------
function Wajah_KL_Callback(hObject, eventdata, handles)
% hObject    handle to Wajah_KL (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run Deteksi_Wajah_KL;


% --------------------------------------------------------------------
function Fitur_SIFT_Callback(hObject, eventdata, handles)
% hObject    handle to Fitur_SIFT (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run ekstraksi_fitur_SIFT;


% --------------------------------------------------------------------
function Pembesaran_Citra_Callback(hObject, eventdata, handles)
% hObject    handle to Pembesaran_Citra (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run pembesaran_citra;


% --------------------------------------------------------------------
function Gabor_SVM_Callback(hObject, eventdata, handles)
% hObject    handle to Gabor_SVM (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run ciptakan_gabor;


% --------------------------------------------------------------------
function Jari_Deskriptor_Callback(hObject, eventdata, handles)
% hObject    handle to Jari_Deskriptor (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run sidik_jari_deskriptor;


% --------------------------------------------------------------------
function Retina_Callback(hObject, eventdata, handles)
% hObject    handle to Retina (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run deteksi_vessel_retina_gabor_glm;


% --------------------------------------------------------------------
function Cocok_Citra_SIFT_Callback(hObject, eventdata, handles)
% hObject    handle to Cocok_Citra_SIFT (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run algoritma_SIFT;


% --------------------------------------------------------------------
function Untitled_10_Callback(hObject, eventdata, handles)
% hObject    handle to Untitled_10 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)


% --------------------------------------------------------------------
function Secure_Force_Callback(hObject, eventdata, handles)
% hObject    handle to Secure_Force (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run alg_SFCK__BARU;


% --------------------------------------------------------------------
function Algoritma_SIT_Callback(hObject, eventdata, handles)
% hObject    handle to Algoritma_SIT (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run alg_SIT_BARU;


% --------------------------------------------------------------------
function Untitled_11_Callback(hObject, eventdata, handles)
% hObject    handle to Untitled_11 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)


% --------------------------------------------------------------------
function Tapis_Partikel_Callback(hObject, eventdata, handles)
% hObject    handle to Tapis_Partikel (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run tapis_partikel_objek;


% --------------------------------------------------------------------
function Objek_IDCT_Callback(hObject, eventdata, handles)
% hObject    handle to Objek_IDCT (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run deteksi_pergerakan_objek_IDCT;


% --------------------------------------------------------------------
function Objek_KMEANS_Callback(hObject, eventdata, handles)
% hObject    handle to Objek_KMEANS (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run deteksi_pergerakan_objek_k_means;


% --------------------------------------------------------------------
function Model_Warna_Callback(hObject, eventdata, handles)
% hObject    handle to Model_Warna (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run deteksi_pergerakan_objek_model_warna_adaptif;


% --------------------------------------------------------------------
function Alg_LR_Callback(hObject, eventdata, handles)
% hObject    handle to Alg_LR (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run komparatif_wiener;


% --------------------------------------------------------------------
function Tapis_Citra_Callback(hObject, eventdata, handles)
% hObject    handle to Tapis_Citra (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)


% --------------------------------------------------------------------
function Tapis_Rerata_Callback(hObject, eventdata, handles)
% hObject    handle to Tapis_Rerata (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run Restorasi_Tapis_Rerata_Baru;


% --------------------------------------------------------------------
function Rerata_Harmonis_Callback(hObject, eventdata, handles)
% hObject    handle to Rerata_Harmonis (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run Restorasi_Tapis_Rerata_HARMONIS;


% --------------------------------------------------------------------
function Rerata_Kontra_Harmonis_Callback(hObject, eventdata, handles)
% hObject    handle to Rerata_Kontra_Harmonis (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run Restorasi_Tapis_Rerata_KONTRA_HARMONIS;


% --------------------------------------------------------------------
function Tapis_Domain_Spesial_Callback(hObject, eventdata, handles)
% hObject    handle to Tapis_Domain_Spesial (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run penapisan_citra_domain_spasial;


% --------------------------------------------------------------------
function Tapis_Butterworth_Callback(hObject, eventdata, handles)
% hObject    handle to Tapis_Butterworth (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run Restorasi_Citra_TAPIS_BUTTERWORTH;


% --------------------------------------------------------------------
function Modifikasi_Histogram_Callback(hObject, eventdata, handles)
% hObject    handle to Modifikasi_Histogram (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run modifikasi_Citra_histogram;


% --------------------------------------------------------------------
function Statistika_Callback(hObject, eventdata, handles)
% hObject    handle to Statistika (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run Restorasi_Tapis_STATISTIKA;


% --------------------------------------------------------------------
function Tentang_Callback(hObject, eventdata, handles)
% hObject    handle to Tentang (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run tentang;


% --------------------------------------------------------------------
function HighBoost_UnsharpMasking_Callback(hObject, eventdata, handles)
% hObject    handle to HighBoost_UnsharpMasking (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run Tapis_HighBoost_Unsharp;


% --------------------------------------------------------------------
function Tapis_Chebyshev_Callback(hObject, eventdata, handles)
% hObject    handle to Tapis_Chebyshev (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run Restorasi_Citra_TAPIS_CHEBYSHEV;


% --------------------------------------------------------------------
function Tapis_Elliptik_Callback(hObject, eventdata, handles)
% hObject    handle to Tapis_Elliptik (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run Restorasi_Citra_TAPIS_ELLIPTIK;


% --------------------------------------------------------------------
function Objek_Warna_Callback(hObject, eventdata, handles)
% hObject    handle to Objek_Warna (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)

run Deteksi_Warna;


% --------------------------------------------------------------------
function Wiener_Hunt_Callback(hObject, eventdata, handles)
% hObject    handle to Wiener_Hunt (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)

run Anti_Pengaburan_Wiener_Hunt;


% --------------------------------------------------------------------
function ekualisasi_histogram_Callback(hObject, eventdata, handles)
% hObject    handle to ekualisasi_histogram (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run Pemrosesan_Histogram_Tampering;


% --------------------------------------------------------------------
function grafik_interaktif_Callback(hObject, eventdata, handles)
% hObject    handle to grafik_interaktif (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run grafik_interaktif;


% --------------------------------------------------------------------
function dtmf_Callback(hObject, eventdata, handles)
% hObject    handle to dtmf (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run gui;


% --------------------------------------------------------------------
function Untitled_12_Callback(hObject, eventdata, handles)
% hObject    handle to Untitled_12 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)


% --------------------------------------------------------------------
function Modulasi_Digital_Callback(hObject, eventdata, handles)
% hObject    handle to Modulasi_Digital (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run modulasi_digital;


% --------------------------------------------------------------------
function modulasi_am_Callback(hObject, eventdata, handles)
% hObject    handle to modulasi_am (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run modulasi_am;


% --------------------------------------------------------------------
function pcm_ok_Callback(hObject, eventdata, handles)
% hObject    handle to pcm_ok (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run pcm;


% --------------------------------------------------------------------
function dtmf_ok_Callback(hObject, eventdata, handles)
% hObject    handle to dtmf_ok (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run DTMF;


% --------------------------------------------------------------------
function Sinyal_Sistem_Callback(hObject, eventdata, handles)
% hObject    handle to Sinyal_Sistem (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)

run tipe_runtun_diskret;


% --------------------------------------------------------------------
function Citra_Warna_Callback(hObject, eventdata, handles)
% hObject    handle to Citra_Warna (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)

run GUI_citra_warna;


% --- Executes on button press in pushbutton53.
function pushbutton53_Callback(hObject, eventdata, handles)
% hObject    handle to pushbutton53 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)

run GUI_citra_warna;


% --- Executes on button press in pushbutton54.
function pushbutton54_Callback(hObject, eventdata, handles)
% hObject    handle to pushbutton54 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)

run DCT_LP;


% --- Executes on button press in pushbutton55.
function pushbutton55_Callback(hObject, eventdata, handles)
% hObject    handle to pushbutton55 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)

run tipe_runtun_diskret;


% --- Executes on button press in pushbutton56.
function pushbutton56_Callback(hObject, eventdata, handles)
% hObject    handle to pushbutton56 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run Tapis_HighBoost_Unsharp;


% --- Executes on button press in pushbutton57.
function pushbutton57_Callback(hObject, eventdata, handles)
% hObject    handle to pushbutton57 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run Restorasi_Citra_TAPIS_BUTTERWORTH;


% --- Executes on button press in pushbutton58.
function pushbutton58_Callback(hObject, eventdata, handles)
% hObject    handle to pushbutton58 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run Restorasi_Citra_TAPIS_CHEBYSHEV;


% --- Executes on button press in pushbutton59.
function pushbutton59_Callback(hObject, eventdata, handles)
% hObject    handle to pushbutton59 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run dekomposisi_nilai_singular;


% --- Executes on button press in pushbutton60.
function pushbutton60_Callback(hObject, eventdata, handles)
% hObject    handle to pushbutton60 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run morfologi_citra;


% --- Executes on button press in pushbutton61.
function pushbutton61_Callback(hObject, eventdata, handles)
% hObject    handle to pushbutton61 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run denoising_algoritma_semut;


% --- Executes on button press in pushbutton62.
function pushbutton62_Callback(hObject, eventdata, handles)
% hObject    handle to pushbutton62 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run Restorasi_Citra_TAPIS_BILATERAL;


% --- Executes on button press in pushbutton63.
function pushbutton63_Callback(hObject, eventdata, handles)
% hObject    handle to pushbutton63 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run komparatif_wiener;


% --- Executes on button press in pushbutton64.
function pushbutton64_Callback(hObject, eventdata, handles)
% hObject    handle to pushbutton64 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run dekonvolusi_variasi_total;


% --- Executes on button press in pushbutton65.
function pushbutton65_Callback(hObject, eventdata, handles)
% hObject    handle to pushbutton65 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run waktu_frekuensi_STFT_animasi__FINAL;


% --- Executes on button press in pushbutton66.
function pushbutton66_Callback(hObject, eventdata, handles)
% hObject    handle to pushbutton66 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run waktu_frekuensi_wavelet_animasi;


% --- Executes on button press in pushbutton67.
function pushbutton67_Callback(hObject, eventdata, handles)
% hObject    handle to pushbutton67 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run pembesaran_citra;


% --- Executes on button press in pushbutton68.
function pushbutton68_Callback(hObject, eventdata, handles)
% hObject    handle to pushbutton68 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run alg_SFCK__BARU;


% --- Executes on button press in pushbutton69.
function pushbutton69_Callback(hObject, eventdata, handles)
% hObject    handle to pushbutton69 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run alg_SIT_BARU;


% --- Executes on button press in pushbutton70.
function pushbutton70_Callback(hObject, eventdata, handles)
% hObject    handle to pushbutton70 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)

run Deteksi_Wajah_KL;


% --- Executes on button press in pushbutton71.
function pushbutton71_Callback(hObject, eventdata, handles)
% hObject    handle to pushbutton71 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)

run algoritma_SIFT;

% --- Executes on button press in pushbutton72.
function pushbutton72_Callback(hObject, eventdata, handles)
% hObject    handle to pushbutton72 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run sidik_jari_deskriptor;

% --- Executes on button press in pushbutton73.
function pushbutton73_Callback(hObject, eventdata, handles)
% hObject    handle to pushbutton73 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run deteksi_vessel_retina_gabor_glm;


% --- Executes on button press in pushbutton74.
function pushbutton74_Callback(hObject, eventdata, handles)
% hObject    handle to pushbutton74 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)

run tapis_partikel_objek;

% --- Executes on button press in pushbutton75.
function pushbutton75_Callback(hObject, eventdata, handles)
% hObject    handle to pushbutton75 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run deteksi_pergerakan_objek_k_means;


% --- Executes on button press in pushbutton76.
function pushbutton76_Callback(hObject, eventdata, handles)
% hObject    handle to pushbutton76 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run deteksi_pergerakan_objek_IDCT;

% --- Executes on button press in pushbutton77.
function pushbutton77_Callback(hObject, eventdata, handles)
% hObject    handle to pushbutton77 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
run deteksi_pergerakan_objek_model_warna_adaptif;

No comments: