资源简介

一个很好的马尔科夫随机场(MRF)模型应用实例。

资源截图

代码片段和文件信息

% noisyImage = addNoise(image pFlip); 
% add noise (ie include noise; it need not be additive) to image.

function [noisyImage] = addNoise(image pFlip); 

if size(image3) == 1
    flipImage = rand(size(image)) < pFlip;
    noisyImage = xor(flipImage image);
end

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2011-12-21 20:26  MRF(matlab)\
     文件         276  2003-10-06 07:20  MRF(matlab)\addNoise.m
     文件         823  2003-10-05 18:20  MRF(matlab)\computeBeliefs.m
     文件         233  2003-10-09 20:59  MRF(matlab)\gaussplot.m
     文件         387  2003-10-08 08:55  MRF(matlab)\getCliqueProb.m
     文件         722  2003-10-11 16:52  MRF(matlab)\getLogProb.m
     文件         209  2003-10-05 14:52  MRF(matlab)\getPropMat.m
     文件         690  2003-10-11 16:39  MRF(matlab)\getRasterNeighbors.m
     文件         445  2003-10-08 22:28  MRF(matlab)\ICM.m
     文件         398  2003-10-05 20:54  MRF(matlab)\initBPMessages.m
     文件         215  2003-10-07 21:25  MRF(matlab)\initICM.m
     文件         913  2003-10-06 07:22  MRF(matlab)\initLocalEvidence.m
     文件        1926  2003-10-05 14:58  MRF(matlab)\initMRF.m
     文件        2027  2003-09-03 10:52  MRF(matlab)\initNodes.m
     文件         324  2003-07-16 19:14  MRF(matlab)\initPaths.m
     文件        1395  2003-10-11 07:52  MRF(matlab)\ipf.m
     文件         249  2003-10-05 20:21  MRF(matlab)\marginals2image.m
     文件         220  2003-09-03 16:49  MRF(matlab)\multMessages.m
     文件        2058  2003-10-07 20:51  MRF(matlab)\oneIterBP.m
     文件         682  2003-09-03 17:12  MRF(matlab)\runBP.m
     文件        3765  2003-02-10 12:50  MRF(matlab)\showIm.m
     文件         339  2003-10-07 21:34  MRF(matlab)\states2image.m
     文件        2249  2005-04-03 22:06  MRF(matlab)\testMRF.m
     文件        1027  2003-02-10 12:50  MRF(matlab)\utAxisAngleToRotmat.m
     文件         632  2003-03-27 15:19  MRF(matlab)\utCropImageToPowerOfTwo.m
     文件         928  2003-02-10 12:50  MRF(matlab)\utFilename.m
     文件         282  2003-02-10 12:50  MRF(matlab)\utIf.m
     文件         184  2003-02-10 12:50  MRF(matlab)\utIsScalarBoolean.m
     文件         214  2003-02-10 12:50  MRF(matlab)\utIsScalarInteger.m
     文件         131  2003-02-10 12:50  MRF(matlab)\utIsScalarReal.m
     文件         172  2003-02-10 12:50  MRF(matlab)\utIsSingleString.m
............此处省略8个文件信息

评论

共有 条评论