刚学会MATLAB时的一点小作品。 使用方法: 打开matlab软件,用matlab打开untitled.m文件。 点击绿色的三角标,运行这个代码,untitled.fig会被自动执行。 使用时,先按开始,再按号码,之后点击拨号。在右端选择接收。 完成模拟后记得点击挂断。
2022-01-13 12:02:11 1.07MB DTMF GUI MATLAB 双音多频
1
我完全自己做的gui 在图像滤波的基础上增加了 、 人脸识别 摄像头采集等功能
2022-01-10 17:18:51 766KB matlab gui 图像滤波 人脸识别
1
一个Matlab GUI设计案例,目的为读取“.txt”文件,并绘图,且保存“.txt”文件数据。本压缩文件包含操作说明、“.m”、“.exe”所有相关文件,包括解决文件。
function varargout = net1(varargin) % NET1 M-file for net1.fig % NET1, by itself, creates a new NET1 or raises the existing % singleton*. % % H = NET1 returns the handle to a new NET1 or the handle to % the existing singleton*. % % NET1('CALLBACK',hObject,eventData,handles,...) calls the local % function named CALLBACK in NET1.M with the given input arguments. % % NET1('Property','Value',...) creates a new NET1 or raises the % existing singleton*. Starting from the left, property value pairs are % applied to the GUI before net1_OpeningFunction gets called. An % unrecognized property name or invalid value makes property application % stop. All inputs are passed to net1_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 % Last Modified by GUIDE v2.5 02-Aug-2009 23:24:02 % Begin initialization code - DO NOT EDIT gui_Singleton = 1; gui_State = struct('gui_Name', mfilename, ... 'gui_Singleton', gui_Singleton, ... 'gui_OpeningFcn', @net1_OpeningFcn, ... 'gui_OutputFcn', @net1_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 net1 is made visible. function net1_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 net1 (see VARARGIN) % Choose de
2022-01-02 09:03:33 9KB MATLAB GUI 鼠标画图 动态画图
本系统共有八个部分,共有三十个功能。功能分别为:文件的打开、保存、退出。编辑部分的图像旋转,添加高斯、椒盐、乘法、泊松噪声,图像初始化。图像变换部分的傅里叶变换、离散余弦变换。边缘检测部分具有Roberts、sobel、prewitt、log、canny方法。图像类型转换部分有原图-灰度、原图-二值、灰度-二值功能。图像滤波部分具有中值滤波、自适应滤波、均值滤波功能。图像形态学处理部分具有形态学骨架提取、区域填充、对角线特征提取功能。图像灰度变换部分具有灰度曲线变换、直方图显示、直方图均衡化、显示均衡化后图像的功能。
2021-12-31 19:08:10 901KB matlab GUI 图像处理
Matlab GUI用于实现图像的灰度映射(LUT),实现对灰度图像的增强处理。
2021-12-31 14:30:59 5.82MB Matlab
1