搜索资源列表
MATLAB图像处理源程序
- 程序代码说明 P0201:MATLAB赋值 P0202:MATLAB中的for循环 P0203:MATLAB中的for循环和if条件 P0205:MATLAB图像处理的基本操作 P0206:MATLAB高级图像处理操作 P0207:根据RGB图像创建一幅灰度图像 P0208:二值图像的取反操作 P0209:用imshow函数显示图像 P0210:在同一个窗口内显示两幅图像 2.rar (15.23k) 程序代码说明 P0301:数字图像矩阵数据的显示及其傅立叶变换 P0
多元无约束极值matlab
- 内含牛顿法、梯度法、共轭梯度法
科学计算中的共轭梯度法解对称正定线性方程组
- 科学计算中的共轭梯度法解对称正定线性方程组.,Scientific Computing in the conjugate gradient method symmetric positive definite solution of linear equations.
ImageProcessing.rar
- 用matlab编写界面,实现直方图均衡化、平均滤波、梯度滤波、Laplacian滤波、Kirsch滤波、Sobel滤波、Prewitt滤波、高频提升等多种功能,Matlab prepared to use interface, the realization of histogram equalization, the average filter, Gradient filter, Laplacian filter, Kirsch filter, Sobel filter, Prewitt f
最速梯度法
- 在MATLAB中开发的最速梯度法算例-in MATLAB development of the steepest gradient method counting cases
imageevaluation
- 图像质量评价,熵、平均梯度、边缘强度、方差等-Image quality evaluation, entropy, average gradient, edge strength, variance, etc.
CGandlu
- CG共轭梯度法迭代解矩阵方程,Hhestens和Stiefel给出,-Conjugate gradient method CG iterative matrix equation solution, Hhestens and Stiefel given
matlab
- 利用梯度算法--最快下降梯度算法进行图像的边缘检测-Gradient algorithm- the fastest decline in the gradient algorithm for image edge detection
grad
- 求RGB 的梯度值以及梯度方向 to obtain gradient magnitude and orientation of an RGB image-to obtain gradient magnitude and orientation of an RGB image
UnwellLineEquSet-matlab
- 病态线性方程组的计算题,涉及Gauss消元法、雅可比迭代法、高斯-赛德尔迭代法、最速下降法和共轭梯度法。每一个方法,都编写一个m文件,封装成函数的形式。然后通过总的HilbLineEquSet.m文件来调用执行,画出误差曲线图,得到运行结果。总的Matlab程序流程,如下所示: 病态方程组的计算包括:HilbLineEquSet.m、gauss.m、jacobi.m、gauss_seidel.m、fastest_descend.m和conjugated_grad.m六个文件。 程序执行结
matlab
- 【1】随机序列产生程序 【2】白噪声产生程序 【3】M序列产生程序 【4】二阶系统一次性完成最小二乘辨识程序 【5】实际压力系统的最小二乘辨识程序 【6】递推的最小二乘辨识程序 【7】增广的最小二乘辨识程序 【8】梯度校正的最小二乘辨识程序 【9】递推的极大似然辨识程序 【10】Bayes辨识程序 【11】改进的神经网络MBP算法对噪声系统辨识程序 【12】多维非线性函数辨识程序的Matlab程序 【13】模糊神经网络解耦M
Renyi
- 实现图像的清晰分割,效果明显,基于图像灰度-梯度构造的二维直方图,在此基础上计算目标与背景的二维Renyi熵-It can handle more types of images and get more accurate shape of the image edgee that pixels gradient information in combination with parameter of Renyi entropy which is adjustable
MATLAB最优化设计程序
- 包含SQP法,非线性最小二乘问题 线搜索技术 乘子发 共轭梯度法 信赖域法 二次规划法 拟牛顿法 最速下降法的MATLAB程序
matlab Conjugate gradient method
- 通过使用matlab求解共轭梯度法和牛顿法。熟悉经典优化方法。(Solve the conjugate gradient method and the Newton method by using matlab. Familiar with the classic optimization method.)
共轭梯度反演----非线性源代码
- matlab源代码解决非线性共轭梯度,很好的参考(Matlab source code to solve nonlinear conjugate gradient reference)
求平均距离算法、水算法、梯度算法
- 使用matlab的分水岭算法对骨关节图像进行分割,基于梯度下降的方法进行优化(The MATLAB watershed algorithm is used to segment the bone and joint images, and the gradient descent method is used to optimize the segmentation)
GradientProjectionMethod
- 好东西,可以计算梯度投影,自己写的,能用的(Good things, you can calculate gradient projection, write their own, can be used)
MATLAB实用源代码
- 1.图像反转 2.灰度线性变换 3.非线性变换 4.直方图均衡化 5. 线性平滑滤波器 6.中值滤波器 7.用Sobel算子和拉普拉斯对图像锐化:8.梯度算子检测边缘 9.LOG算子检测边缘 10.Canny算子检测边缘 11.边界跟踪 (bwtraceboundary函数)12.Hough变换 13.直方图阈值法 14. 自动阈值法:Otsu法 15.膨胀操作 16.腐蚀操作 17.开启和闭合操作 18.开启和闭合组合操作 19.形态学边界提取 20.形态学骨架提取 21.直接提取四个顶点坐标
matlab
- 实用共轭梯度法MATLAB源代码,最速下降法MATLAB源代码,MATLAB语言(Practical conjugate gradient method MATLAB source code)
基于backtracking和0.618的两种梯度下降直线搜索算法
- 本算法为凸优化中的常用优化算法:梯度下降算法。本程序由matlab编写,内含有注释,分别用非精确直线搜索和精确直线搜索两种方法实现了梯度下降算法。