-
HoughObject
Circles
We can extend the Hough transform to other shapes that can be expressed parametrically. For example, a circle of
fixed radius can be described fully by the location of its center (x, y).
Think of each feature (edge) point on the circle as saying, ”if I’m on the circle, the center must be in one of these
places”. It turns out that the locus of these votes is itself a circle.
But what about circles of unknown size? In this case, we need a third parameter: the radius of the circle. So, we can
parameterize circles of arbitrary size by (x, y, r). Instead of casting votes in a circular pattern into a two-dimensional
accumulator, we cast votes in circles of successively larger size in a three-dimensional accumulator.
- 2010-03-09 06:46:32下载
- 积分:1
-
simulation--of-PEMFC
说明: 质子交换膜燃料电池系统的建模与仿真,采用Matlab中simulink进行模块搭建(Simulation of PEMFC)
- 2020-12-21 15:49:10下载
- 积分:1
-
Bilateral-Filtering
Bilateral Filtering软件经过本人认真调试,能够直接使用。希望大家喜欢。(Bilateral Filtering software after I carefully debugging, can be used directly. Hope you like it.)
- 2011-12-01 20:01:37下载
- 积分:1
-
4
高斯赛德尔和雅克比迭代求解方程的matlab程序(the Jacobi and GaussSediel )
- 2014-01-06 19:53:47下载
- 积分:1
-
HW3
MATLAB Garch using example
- 2014-02-06 02:20:09下载
- 积分:1
-
4
说明: matlab科学计算继续上传,一共10个章节,由浅入深,几乎包括了绝大部分的科学计算方法以及仿真。本人把部分算法做了优化,更为完善(matlab scientific computing continue to upload a total of 10 chapters, easy-to-digest, almost, including most of the scientific method of calculation and simulation. I have done a part of algorithm optimization, a more perfect)
- 2008-12-25 16:29:03下载
- 积分:1
-
Levelingnetworkadjustment
matlab编写的水准网平差程序,由测量数据可计算水准网平差结果,得到不错的水准网数据(levelling network computation by use of surveying datas and TSL application)
- 2011-01-01 15:49:43下载
- 积分:1
-
turbo
说明: 常用的编码 差错控制能力很强大的turbo码
用matlab实现的编码。(Commonly used error control coding capacity is very powerful turbo code with matlab coding to achieve.)
- 2008-11-21 14:14:12下载
- 积分:1
-
moving_average_v3.1
Smooths a matrix (with/without NaN s) via recursive moving average method and eliminates data gaps.
(MOVING_AVERAGE(X,F) smooths the vector data X with a boxcar window of size 2F+1, i.e., by means of averaging each element with the F elements at his right and the F elements at his left. The extreme elements are also averaged but with less data, obviously. Leaving the edges intact. The method is really fast.
MOVING_AVERAGE2(X,M,N) smooths the matrix X with a boxcar window of size (2M+1)x(2N+1), i.e., by means of averaging each element with its surrounding elements that fits in the mentioned box centered on it. This one is also really fast. The elements at the edges are averaged too, but the corners are left intact.
NANMOVING_AVERAGE(X,F) or NANMOVING_AVERAGE(X,F,1) accept NaN s elements in the vector X the latter interpolates also those NaN s elements surrounded by numeric elements.
NANMOVING_AVERAGE2(X,M,N) or NANMOVING_AVERAGE2(X,M,N,1) accept elements NaN s in the matrix X the latter interpolates also those NaN elements surrounded by numeric elements.)
- 2009-03-06 23:10:07下载
- 积分:1
-
matlab_round
用matlab编写中点画圆算法的程序,原理是:先从(0,R)点画第二个八分之一圆,再利用圆的八对称性,可画出其余七个八分之一圆。( Compiles the center point makeing a circle algorithm with matlab the procedure )
- 2010-10-26 23:39:58下载
- 积分:1