资源简介

MATLAB下的 Superpixel Segmentation using Linear Spectral Clustering
实现代码,直接可用。附赠LSC和supp两篇论文

资源截图

代码片段和文件信息

function DisplayLabel(labelname)

    [nRowsnCols]=size(label);
    img=uint8(zeros(nRowsnCols));
    for m=1:nRows
        for n=1:nCols
            L=label(mn);
            count=0;
            minx=max(m-11);
            maxx=min(m+1nRows);
            miny=max(n-11);
            maxy=min(n+1nCols);
            for u=minx:maxx;
                for v=miny:maxy
                    if(label(uv)~=L)
                        count=count+1;
                    end
                    if(count==2)
                        break;
                    end
                end
                if(count==2)
                    break;
                end
            end
            if(count==2)
                img(mn)=255;
            end
        end
    end
    figure;
    imshow(img);
    imwrite(img[name‘label.bmp‘]‘bmp‘)

end


 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件      280875  2014-11-18 16:24  2015-Superpixel segmentation using linear spectral\01.jpg
     文件       30773  2003-11-01 03:54  2015-Superpixel segmentation using linear spectral\02.jpg
     文件      156442  2018-03-29 12:05  2015-Superpixel segmentation using linear spectral\02label.bmp
     文件      463578  2018-03-29 12:05  2015-Superpixel segmentation using linear spectral\02result.bmp
     文件       39120  2003-11-01 03:54  2015-Superpixel segmentation using linear spectral\03.jpg
     文件       47548  2003-11-01 03:54  2015-Superpixel segmentation using linear spectral\04.jpg
     文件        1369  2015-06-30 14:02  2015-Superpixel segmentation using linear spectral\countSuperpixel.h
     文件         878  2014-11-18 10:30  2015-Superpixel segmentation using linear spectral\DisplayLabel.m
     文件         852  2014-11-18 10:30  2015-Superpixel segmentation using linear spectral\DisplaySuperpixel.m
     文件        5468  2015-03-21 08:51  2015-Superpixel segmentation using linear spectral\DoSuperpixel.h
     文件        8693  2014-11-18 00:56  2015-Superpixel segmentation using linear spectral\EnforceConnectivity.h
     文件        2360  2015-03-21 08:59  2015-Superpixel segmentation using linear spectral\Initialize.h
     文件        2557  2015-06-30 11:31  2015-Superpixel segmentation using linear spectral\LSC.h
     文件     9111996  2017-09-21 22:47  2015-Superpixel segmentation using linear spectral\lsc_1.pdf
     文件        1258  2018-03-29 16:03  2015-Superpixel segmentation using linear spectral\LSC_demo.m
     文件        1433  2014-11-18 02:04  2015-Superpixel segmentation using linear spectral\LSC_mex.cpp
     文件       49861  2015-06-30 14:32  2015-Superpixel segmentation using linear spectral\LSC_mex.mexa64
     文件       58340  2015-06-30 14:37  2015-Superpixel segmentation using linear spectral\LSC_mex.mexmaci64
     文件       53248  2015-06-30 14:02  2015-Superpixel segmentation using linear spectral\LSC_mex.mexw64
     文件        1896  2015-06-30 14:35  2015-Superpixel segmentation using linear spectral\myrgb2lab.h
     文件         118  2014-11-17 20:28  2015-Superpixel segmentation using linear spectral\point.h
     文件        1875  2015-03-21 08:54  2015-Superpixel segmentation using linear spectral\preEnforceConnectivity.h
     文件         759  2017-07-10 15:03  2015-Superpixel segmentation using linear spectral\readme.txt
     文件         806  2015-03-21 08:58  2015-Superpixel segmentation using linear spectral\Seeds.h
     文件     9579635  2014-11-19 08:58  2015-Superpixel segmentation using linear spectral\supp273.pdf
     文件      463578  2018-03-29 16:03  2015-Superpixel segmentation using linear spectral\test.bmp

评论

共有 条评论