-
Kalman and Wiener filter design and the use of collateral source code
卡尔曼和维纳滤波器的设计及使用 附带源代码-Kalman and Wiener filter design and the use of collateral source code
- 2022-02-22 10:58:09下载
- 积分:1
-
本程序是VC++数字图像识别技术典型案例一书的所有程序,很有参考价值...
本程序是VC++数字图像识别技术典型案例一书的所有程序,很有参考价值-This procedure is the VC++ digital image recognition technology a typical case of a book all the procedures, the valuable
- 2022-04-06 10:53:28下载
- 积分:1
-
3*3 中值滤波的verilog代码实现,已经调试通过!欢迎提出宝贵意见!...
3*3 中值滤波的verilog代码实现,已经调试通过!欢迎提出宝贵意见!-3* 3 filtering to achieve the verilog code has been adopted debugging! Welcomed the valuable advice!
- 2022-01-26 01:41:05下载
- 积分:1
-
matlab in image processing applications, including blur, sharpening, image enhan...
matlab在图像处理中的应用,包括模糊,锐化,图像增强-matlab in image processing applications, including blur, sharpening, image enhancement, etc.
- 2022-04-21 07:06:00下载
- 积分:1
-
这是一个比较另类的图像库,它本身并不提供对图像对象的封装,只以类似插件的形式为您提供图像处理算法的封装和进度显示,而图像对象的封装则需由用户来提供。
本图像...
这是一个比较另类的图像库,它本身并不提供对图像对象的封装,只以类似插件的形式为您提供图像处理算法的封装和进度显示,而图像对象的封装则需由用户来提供。
本图像库平台无关,理论上它可以应用于任何已有的C++图像类上。
-This is a rather different type of image library, it does not provide the image object package, only the form of a similar plug-ins for your image processing algorithms to provide packaging and progress display, and image package should be targeted by user to provide. The image database platform-independent, in theory, it can be applied to any existing C++ Image category.
- 2022-07-02 21:22:01下载
- 积分:1
-
利用最大类间方差法(OTSU)求出对图像进行二值化处理的最佳阈值,从而进行图像二值化处理。...
利用最大类间方差法(OTSU)求出对图像进行二值化处理的最佳阈值,从而进行图像二值化处理。
-Using the maximum between-class variance method (OTSU) obtained image binarization best treatment threshold, and thus image binarization treatment.
- 2022-09-09 17:20:02下载
- 积分:1
-
MATLAB least squares ellipse fitting problem, able to detect the coordinates of...
MATLAB最小二乘法椭圆拟和的问题,能够根据检测点的坐标拟合出椭圆方程-MATLAB least squares ellipse fitting problem, able to detect the coordinates of points of elliptic equations fitting
- 2023-06-10 00:10:13下载
- 积分:1
-
实现了序列图像的柱面全景图拼接,采用的块匹配法,顺序进行块匹配功能,找到最佳匹配位置,进行线性融合法进行拼接。...
实现了序列图像的柱面全景图拼接,采用的块匹配法,顺序进行块匹配功能,找到最佳匹配位置,进行线性融合法进行拼接。-Achieved a series of cylindrical panoramic image stitching, using a block matching method, in order to block-matching function to find the best match position, a linear fusion splicing method.
- 2022-04-26 12:59:01下载
- 积分:1
-
awimg = rgb2gray(IM1)
awimg=rgb2gray(im1)
tic
[accum, circen, cirrad] = CircularHough_Grd(rawimg, [20 30],5,50)
circen
toc
figure(1) imagesc(accum) axis image
title( Accumulation Array from Circular Hough Transform )
figure(2) imagesc(rawimg) colormap( gray ) axis image
hold on
plot(circen(:,1), circen(:,2), r+ )
for k = 1 : size(circen, 1),
DrawCircle(circen(k,1), circen(k,2), cirrad(k), 32, b- )
end
hold off
title([ Raw Image with Circles Detected , ...
(center positions and radii marked) ])
figure(3) surf(accum, EdgeColor , none ) a
- 2022-02-04 17:38:42下载
- 积分:1
-
系统约定:行编辑命令由“命令关键字 命令参数”组成。其中,命令关键字都是单一的字母,命令与参数之间使用一个空格进行分割,当命令参数为多个时采用“/”作为参数的分...
系统约定:行编辑命令由“命令关键字 命令参数”组成。其中,命令关键字都是单一的字母,命令与参数之间使用一个空格进行分割,当命令参数为多个时采用“/”作为参数的分隔符,如果在命令的参数中间出现符号“/”,则用“/”表示。我们将“”定义为转义符。
现在,行编辑器具有如下编辑命令:
行插入:i #/串
在指定行号(>0)插入一个新行,新行的内容就是命令中给出的“串”。若插入的行超过了已有的行数,则在最后一行的后面插入一个新行。
文本替换:c 被替换串/替换串
将整个文本中全部[被替换串]替换为[替换串]。
行删除:d #
其中#为指定的行号
行合并:f #1/#2/#3...
将行号为 #2 和 #3...的行连接到行号为 #1 的行的后面,取消原来的 #2 行和#3等,合并后#2行和#3等原来的内容不存在了,被后面的行抵补替代。若指定行号超出正文的范围,则放弃操作。
输入:
这段文本用[Text]......[/Text]的形式描述,之后是一串操作命令如:
[Text]
1 222 33 44
2 333 45 d b g 3
3 444 56 333 54
[/Text]
c 333/zhang
d 1
-系统约定:行编辑命令由“命令关键字 命令参数”组成。其中,命令关键字都是单一的字母,命令与参数之间使用一个空格进行分割,当命令参数为多个时采用“/”作为参数的分隔符,如果在命令的参数中间出现符号“/”,则用“/”表示。我们将“”定义为转义符。
现在,行编辑器具有如下编辑命令:
行插入:i#/串
在指定行号(>0)插入一个新行,新行的内容就是命令中给出的“串”。若插入的行超过了已有的行数,则在最后一行的后面插入一个新行。
文本替换:c 被替换串/替换串
将整个文本中全部[被替换串]替换为[替换串]。
行删除:d#
其中#为指定的行号
行合并:f#1/#2/#3...
将行号为#2 和#3...的行连接到行号为#1 的行的后面,取消原来的#2 行和#3等,合并后#2行和#3等原来的内容不存在了,被后面的行抵补替代。若指定行号超出正文的范围,则放弃操作。
输入:
这段文本用[Text]......
- 2022-03-03 09:48:33下载
- 积分:1