资源简介
该程序是霍夫变换,是MATLAB程序,学习图像处理和机器视觉的同学很有帮助。
代码片段和文件信息
function DrawLines_2Ends(lineseg varargin)
%Draw line segments parameterized as (x1 x2 y1 y2) on graph
%
% DrawLines_2Ends(lineseg varargin)
% A simple function for drawing line segments on graph. Made as an
% auxiliary tool for function ‘[...] = Hough_Grd(...)‘.
%
% INPUT: (lineseg properties)
% lineseg: Parameters (x1 x2 y1 y2) of line segments to draw.
% Is a Ns-by-4 matrix with each row contains the parameters
% (x1 x2 y1 y2) that define the two ends of a line
% segment. The output ‘lineseg‘ from the function
% ‘[...] = Hough_Grd(...)‘ can be put here directly.
% properties: (Optional)
% A string of line drawing properties. Will be transferred
% to function ‘plot‘ without modification for line drawing.
%
% OUTPUT: None
%
% BUG REPORT:
% Please send your bug reports comments and suggestions to
% pengtao@glue.umd.edu . Thanks.
% Author: Tao Peng
% Department of Mechanical Engineering
% University of Maryland College Park Maryland 20742 USA
% pengtao@glue.umd.edu
% Version: alpha Revision: Dec. 02 2005
hold on;
for k = 1 : size(lineseg 1)
% The image origin defined in function ‘[...] = Hough_Grd(...)‘ is
% different from what is defined in Matlab off by (0.5 0.5).
if nargin > 1
plot(lineseg(k1:2)+0.5 lineseg(k3:4)+0.5 varargin{1});
else
plot(lineseg(k1:2)+0.5 lineseg(k3:4)+0.5 ‘LineWidth‘ 2);
end
end
hold off;
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2018-11-23 21:12 基于霍夫变换的MATLAB程序代码\
文件 1584 2005-12-03 01:45 基于霍夫变换的MATLAB程序代码\DrawLines_2Ends.m
文件 3174 2005-12-03 01:56 基于霍夫变换的MATLAB程序代码\DrawLines_Polar.m
文件 22599 2005-12-06 06:04 基于霍夫变换的MATLAB程序代码\Hough_Grd.m
文件 144780 2005-11-29 07:05 基于霍夫变换的MATLAB程序代码\TestHT_Arch.png
文件 46511 2005-12-03 01:31 基于霍夫变换的MATLAB程序代码\TestHT_Box1.jpg
文件 345920 2005-12-02 11:12 基于霍夫变换的MATLAB程序代码\TestHT_Chkbd1.bmp
文件 212242 2005-11-29 07:06 基于霍夫变换的MATLAB程序代码\TestHT_Pentagon.png
文件 2122 2018-10-06 16:18 基于霍夫变换的MATLAB程序代码\extr.m
文件 1329 2009-08-11 23:47 基于霍夫变换的MATLAB程序代码\license.txt
- 上一篇:V2G充电桩Simuli
nk仿真 - 下一篇:投影寻踪-遗传算法MATLAB程序
相关资源
- 投影寻踪-遗传算法MATLAB程序
- 电力电子AC-AC变换器MATLAB仿真.rar
- matlab图形取点程序
- 凯斯西储大学轴承故障特征频率计算
- 电力系统机组组合优化问题
- 二维傅里叶变换二维峰值检索MATLAB代
- bp神经网络的matlab实现.m文件
- matlab电池模型
- matlab车牌识别字符模版
- STBC-code.zip
- MIMO-OFDM.zip
- ARMA功率谱估计
- 单点经纬度转换坐标
- 永磁同步电机模型预测控制仿真模型
- GALLAGER校验矩阵详细构造代码
- Matlab 由轨道根数计算地心惯性坐标系
-
MATLAB-创建simuli
nk - GA遗传算法matlab程序
- 基于ATO的列车速度曲线优化
- matlab将视频变成一帧一帧的图片,然
-
matlab simuli
nk交通信号灯模型 - JPEG 压缩和解压 matlab 代码
- Final_grid.slx.r2016b
- Broyden方法求解非线性方程组的Matlab实
- 利用Matlab查找两幅图片的不同之处
- BFGS算法的Matlab实现
- matlab仿真6自由度puma机器人
- 最优化的matlab代码设计
- 模拟退火算法解决0-1背包问题
- 基于密度的聚类MATLAB代码
评论
共有 条评论