搜索资源列表
膨胀运算源程序
- 这段程序实现了对图像的膨胀运算,针对的都是黑色点。参数中有一个BOOL变量,为真时,表示在水平方向进行膨胀运算,即结构元素B为(1 ,1. ,1)否则在竖直方向上进行膨胀运算,即结构元素B为1 1.1 。-this program for the expansion of computing image has been aimed at Black Point. Parameters have a BOOL variable to t
膨胀运算源程序
- 这段程序实现了对图像的膨胀运算,针对的都是黑色点。参数中有一个BOOL变量,为真时,表示在水平方向进行膨胀运算,即结构元素B为(1 ,1. ,1)否则在竖直方向上进行膨胀运算,即结构元素B为1 1.1 。-this program for the expansion of computing image has been aimed at Black Point. Parameters have a BOOL variable to t
Dilation
- 形态学图像边缘检测运算。结构元素为水平方向或垂直方向的三个点,中间点位于原点-morphological image edge detection operators. Structural elements of the vertical or horizontal direction of the three points at the mid-point of origin
gradient_program
- 给出几种形态学梯度算法,包括但尺度梯度,多尺度梯度,多结构元素梯度等-Several morphological gradient algorithm is given, including, but gradient-scale, multi-scale gradient, multi-structural elements, such as gradient
morph
- 该函数用于对图像进行腐蚀运算。结构元素为水平方向或垂直方向的三个点,中间点位于原点。-The function used for computing the corrosion images. Structural elements for the horizontal direction or vertical direction of the three points, between points located at the o
DataStructure
- 我的数据结构实验指导与练习题,非常经典的哈!《数据结构》是计算机几相关专业的一门核心基础课程,也是很多高校考研专业课之一。它主要介绍线性结构、树型结构、图状结构三种逻辑结构元素的存储实现,在此基础上介绍一些典型算法及时、空效率分析。这门课程的主要任务是培养学生的算法设计能力及良好的程序设计习惯。-Data Structure of Computer Algorithmic Language Experiment ,very nice t
ex5_061221015
- 1)编制通用的二值形态学运算(腐蚀和膨胀、开、闭和击中击不中变换 )函数。 2)函数可以处理不同的变换形式和不同类型的结构元素。-1) the preparation of a universal binary morphological operations (erosion and expansion of open and close, and hit-miss transform) function. 2) functi
morphology
- 对图像进行形态学操作,主要是开运算和闭运算,都是用任意结构元素膨胀图像。-Of the image morphology operations, is dominated by open operation and closing operation, are structural elements with arbitrary expansion of the image.
zishiying
- 通过均衡腐蚀和均衡膨胀的一次开运算对指定椒盐噪声强度的图像进行去噪操作,自适应选择结构元素大小的选择,包含与中值滤波效果的比较-Corrosion by a balanced expansion of an open and balanced operation of the specified strength of salt and pepper noise image denoising operation, adaptive s
pso
- 对不同噪声强度的加噪图像,用粒子群优化算法优化结构元素,找到最优结构元素,对图像进行去噪操作,使恢复的图像达到最大峰值信噪比-Noise intensity for different images with noise, using particle swarm optimization algorithm to optimize the structure elements, find the optimal structure e
11
- MATLAB编程实现如何分解结构元素,以及腐蚀与膨胀运算,内含具体源程序,且已运行成功-MATLAB programming to breakdown structure elements, and corrosion and expansion of operations includes the specific source, and has been running successfully
5107600数据结构配套光盘
- 实现对任意给定的二叉树(顶点数自定)建立它的二叉链表存贮结构,并利用栈的五种基本运算(置空栈、进栈、出栈、取栈顶元素、判栈空)实现二叉树的先序、中序、后序三种遍历,输出三种遍历的结果。((Any given realization of the binary tree (self-Vertices) the establishment of its chain store binary structure, and use the fi
xingtaixue
- 能够对信号进行虑波处理,程序自带三角形和余弦形结构元素(Can take care of the signal wave, the program comes with triangular and cosine structure elements)
结构体
- C语言结构体的部分程序实例( 定义一个表示向量(vector,即整数序列)的结构体类型,编写程序完成下列任务: * (1) 创建一个向量; * (2) 修改给定元素的值; * (3) 向量和变量的乘;)(Some program instances of C language structure)
第二节 数据结构(线性表)
- 课件 线性表的逻辑结构及基本运算 在线性表 a[1],a[2],……,a[n]中找元素x(begin for i:=1 to n do if a[i]=x then exit(i); exit(0); end;)
数据结构-c++-栈的验证-实验报告
- 1.实验目的及要求 1.1 实验目的: 1.掌握栈的顺序存储结构 2.验证顺序栈及其基本操作的实现 3.验证栈的操作特性 1.2 实验要求: 1.建立一个空栈 2.对已建立的栈进行插入、删除、取栈顶元素等基本操作(1. the purpose and requirements of the experiment 1.1 the purpose of the experiment: 1. the sequent
数据结构第一次实验
- 1、 定义单链表类、链式栈类、顺序队列类。 2、 实验验证如下算法的正确性、各种功能及指标: 1)单链表插入操作:在第 i 个元素之后插入值为 x 的结点; 2)单链表删除操作:删除表头结点、表尾结点; 3)查找操作:查找值为 x 的元素在单链表中出现的位置(是链表中的第几个元素); 4)压栈和弹栈操作; 5)出队和入队操作。 3、 为便于观察程序的运行结果,设计的输出函数能在输出设备上以图形或
高级数据结构
- c++实现以下题目(可以用visio2015编译) 1.序列和的前n小元素(优先队列) 2.破译密文(并查集) 3.逆序对(树状数组) 4.郁闷的出纳员(伸展树) 5.星际争霸(Treap)(C++ implements the following topics (can be compiled with visio2015) 1. sequence and the former n small elements (p
数据结构实验1
- 用C实现数据结构顺序表的基本功能,包括顺序表的创建、插入、删除顺序表中的元素等功能(Implementing the basic functions of a data structure sequence table with C)
数据结构上机指导说明书与代码
- 数据结构描述了非数值问题的数据元素及组织关系,包含逻辑结构、物理结构与数据运算。(Data structure describes the data elements and organizational relationships of non - numerical problems, including logical structure, physical structure and data operation.)