登录
首页 » matlab » MRF(matlab)

MRF(matlab)

于 2011-12-21 发布 文件大小:21KB
0 89
下载积分: 1 下载次数: 205

代码说明:

  一个很好的马尔科夫随机场(MRF)模型应用实例。(Examples for the application of markov random field.)

文件列表:

MRF(matlab)
...........\addNoise.m,276,2003-10-06
...........\computeBeliefs.m,823,2003-10-05
...........\gaussplot.m,233,2003-10-09
...........\getCliqueProb.m,387,2003-10-08
...........\getLogProb.m,722,2003-10-11
...........\getPropMat.m,209,2003-10-05
...........\getRasterNeighbors.m,690,2003-10-11
...........\ICM.m,445,2003-10-08
...........\initBPMessages.m,398,2003-10-05
...........\initICM.m,215,2003-10-07
...........\initLocalEvidence.m,913,2003-10-06
...........\initMRF.m,1926,2003-10-05
...........\initNodes.m,2027,2003-09-03
...........\initPaths.m,324,2003-07-16
...........\ipf.m,1395,2003-10-11
...........\marginals2image.m,249,2003-10-05
...........\multMessages.m,220,2003-09-03
...........\oneIterBP.m,2058,2003-10-07
...........\runBP.m,682,2003-09-03
...........\showIm.m,3765,2003-02-10
...........\states2image.m,339,2003-10-07
...........\testMRF.m,2249,2005-04-03
...........\utAxisAngleToRotmat.m,1027,2003-02-10
...........\utCropImageToPowerOfTwo.m,632,2003-03-27
...........\utFilename.m,928,2003-02-10
...........\utIf.m,282,2003-02-10
...........\utIsScalarBoolean.m,184,2003-02-10
...........\utIsScalarInteger.m,214,2003-02-10
...........\utIsScalarReal.m,131,2003-02-10
...........\utIsSingleString.m,172,2003-02-10
...........\utNormalize.m,270,2003-02-10
...........\utParseArgs.m,3646,2003-02-10
...........\utReadPnm.m,2204,2003-02-23
...........\utRotmatToAxisAngle.m,1289,2003-02-10
...........\utSafeInverse.m,264,2003-02-10
...........\utSafeMult.m,428,2003-02-10
...........\utSigmoid.m,96,2003-02-10
...........\utWritePnm.m,2534,2003-02-23

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • MyFFT1
    VC和MATLAB混合编程实现快速傅立叶变换(VC and MATLAB programming Fast Fourier Transform Mixed)
    2021-03-04 19:09:32下载
    积分:1
  • skeleton-extraction
    一种细化的骨架提取算法 可以提高徐璈的处理厚重图像(sgsdgsdgsdgggs skeleton extraction)
    2017-05-14 13:32:11下载
    积分:1
  • test2
    运动方向未知的运动模糊图像盲复原,包括移动像素和角度 (Movement direction of the motion-blurred images unknown blind rehabilitation, including moving pixels and angle)
    2009-05-29 18:32:56下载
    积分:1
  • spiht_5
    image compression using sphit algorithm
    2012-02-15 19:59:27下载
    积分:1
  • edge_detection
    本代码比较全面地给出了图像边缘检测常用的各种算法的代码,包括:基于LoG算子边缘检测、基于Canny算子的边缘检测、基于SUSAN算子的边缘检测、基于小波变换模极大值的边缘检测、利用有限冲击响应来提取不同方向边缘、采用灰度形态学膨胀和腐蚀,对图像进行单尺度和多尺度的形态学边缘检测(This code gives a more comprehensive variety of commonly used edge detection algorithm code, including: LoG operator based on edge detection, based on Canny operator edge detection based on SUSAN operator edge detection based on wavelet transform modulus maxima edge detection values ​ ​ using finite impulse response to extract edges in different directions, using grayscale morphological dilation and erosion, the image of the single-scale and multi-scale morphological edge detection)
    2014-06-12 13:55:28下载
    积分:1
  • sfm_chanvese_demo
    一种snake算法实现轮廓跟踪,可用于图像分割、目标识别等图像处理相关领域。(Of a snake contour tracking algorithm can be used for image segmentation, object recognition and other image processing related fields.)
    2009-10-07 16:32:34下载
    积分:1
  • FCM_Sparse
    FCM和稀疏场水平集用于分割医学图像分割(FCM and sparse field level set for segmentation of medical image segmentation)
    2016-04-19 18:18:56下载
    积分:1
  • MPPT_on_SMCONTROL
    利用滑模变控制去实现风机的最大功率跟踪。基本原理是控制tip-speed ratio(The use of Sliding Mode Variable fan control to achieve maximum power tracking. The basic principle is to control the tip-speed ratio)
    2014-02-19 18:14:34下载
    积分:1
  • Bayer2RGB
    用Matlab写的Bayer插值与白平衡算法,包含双线性和边缘检测两种插值算法以及White Patch自动白平衡算法(Bayer Interpolation and white balance algorithm implemented with matlab.)
    2012-02-12 20:14:34下载
    积分:1
  • matlab.thresholding-master
    在计算机视觉中,图像分割是将图像分成多个片段的过程。这使我们能够通过以比原始图像更简单的表示方式来更好地分析图像。一种用于分割图像的方法是阈值分割;也就是说,将强度值低于阈值的所有像素设置为背景值,而将高于阈值的其他像素设置为前景值。最简单的阈值处理形式是对所有像素使用全局阈值,而自适应阈值处理根据像素及其周围环境动态改变阈值。典型地,阈值处理从灰度图像开始,并输出二进制图像以清晰地描绘图像中的片段。在本实验中,我们开发了一种自适应阈值算法,并将其与更简单的算法进行了比较。 此外,我们还开发了逆运动学证明来将机械臂移动到给定的x,y,z坐标。这一证明涉及三种命名身份,并获得了对机械臂设计的更好理解。(Image threshold segmentation)
    2019-04-14 15:41:02下载
    积分:1
  • 696518资源总数
  • 104269会员总数
  • 31今日下载