资源简介
基于SLIC方法的超像素分割算法代码,纯MATLAB编写。
代码片段和文件信息
function labedge = DetectLabEdge(labimg)
L = labimg(::1);
A = labimg(::2);
B = labimg(::3);
[M N] = size(L);
s = M*N;
temp = L;
temp(1 :) = [];
L_rise = [temp; L(M :)];
temp = L;
temp(M :) = [];
L_fall = [L(1 :); temp];
temp = L;
temp(: N) = [];
L_right = [L(: 1) temp];
temp = L;
temp(: 1) = [];
L_left = [temp L(: N)];
L_edge = abs(L_fall-L_rise)+abs(L_right-L_left);
temp = A;
temp(1 :) = [];
A_rise = [temp; A(M :)];
temp = A;
temp(M :) = [];
A_fall = [A(1 :); temp];
temp = A;
temp(: N) = [];
A_right = [A(: 1) temp];
temp = A;
temp(: 1) = [];
A_left = [temp A(: N)];
A_edge = abs(A_fall-A_rise)+abs(A_right-A_left);
temp = B;
temp(1 :) = [];
B_rise = [temp; B(M :)];
temp = B;
temp(M :) = [];
B_fall = [B(1 :); temp];
temp = B;
temp(: N) = [];
B_right = [B(: 1) temp];
temp = B;
temp(: 1) = [];
B_left = [temp B(: N)];
B_edge = abs(B_fall-B_rise)+abs(B_right-B_left);
labedge = L_edge + A_edge + B_edge;
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 2412 2014-11-01 00:46 EnforceLabelConnectivity.m
文件 3269 2014-10-31 22:34 PerformSuperpixelSLIC.m
文件 1920 2014-11-01 10:55 SLIC_main.m
文件 1004 2014-10-28 21:45 DetectLabEdge.m
文件 684 2014-10-31 21:34 DrawContoursAroundSegments.m
文件 740 2014-11-01 10:02 DrawContoursAroundSegments_EX.m
----------- --------- ---------- ----- ----
10029 6
相关资源
- 模式分析的核方法中文版和英文版合
- zw_qq_41143492-10381309-学生考试系统.zip
- zw_feifan50-9720417-MissionPlanner1.3.32PlayUA
- zw_weixin_42810059-10567648-数学分析考研笔
- 刺客.rar
- zw_DXF转G代码.zip
- 彩票开发源码.zip
- 斯坦福-IntroductiontoRobotics.zip
- zw_gephi-0.8.2-beta.setup.zip
- zw_嵌入式网络那些事(完整中文版)
- zw_WINDOWSAPI程序设计参考大全.zip
- zw_ssm-crm-new.zip
- zw_SolidWorks2014中文版基础教程.zip
- zw_Altera官方元件封装库.zip
- zw_AutofacIOC.zip
- zw_ionicDemo.zip
- Location虚拟定位ios12.1破解版.zip
- 流体模拟插件NextLimitRealFlowC4D2.6.5.00
- 老虎淘宝客v6.0.15.zip
- iSkysoft Video Converter Ultimate 5.1简体中文
- 20180704全彩种彩票网站源码.rar
- 暗影2MAC12系统安装clover.zip
- fdt_4_09_03.exe
- pkg-win.zip
- PRML最全资料集合.zip
- 数据可视化驾驶舱.zip
- 李晓峰通信原理.zip
- 图解西门子S71200PLC入门到实践(清晰
- AI拓客商家联盟V2.1.3前端+后端.rar
- echarts大数据领导仓demo.rar
评论
共有 条评论