91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

  • 大小: 1.56MB
    文件類型: .7z
    金幣: 1
    下載: 0 次
    發布日期: 2023-11-06
  • 語言: Matlab
  • 標簽: matlab??superpixel??

資源簡介

文件中包括代碼,測試圖片,以及代碼使用的詳細方法。

資源截圖

代碼片段和文件信息

%======================================================================
%?DBSCAN?demo?in?TIP?2016
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%?%?J.?Shen?X.?Hao?Z.?Liang?Y.?Liu?W.?Wang?and?L.?Shao?
%?%?Real-time?Superpixel?Segmentation?by?DBSCAN?Clustering?Algorithm?
%?%?IEEE?Trans.?on?Image?Processing?25(12):5933-5942?2016?
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%?Copyright?(C)?2016??Beijing?Laboratory?of?Intelligent?Information?Technology
%?Any?further?questions?please?send?email?to:?shenjianbing@bit.edu.cn??or?shenjianbingcg@gmail.com
%======================================================================
%Input?parameters?are:?
%[1]?8?bit?images?(color)
%[2]?Number?of?required?superpixels?(optional?default?is?200)
%[3]?post?processing(1?is?need0?is?not)
%Ouputs?are:
%[1]?labels?(in?raster?scan?order)

%NOTES:
%[1]?number?of?returned?superpixels?may?be?different?from?the?input
%number?of?superpixels.
%[2]?you?should?compile?the?cpp?file?using?visual?studio?2008?or?later?version
%?--?mex?DBscan_mex.cpp?
%======================================================================
clear?all;
close?all;
currentFolder?=?pwd;
addpath(genpath(currentFolder))
addpath(‘code‘);
addpath(‘imgs‘);
name=‘van_assign‘;
im?=?imread([name‘.png‘]);
post=1;
img?=?uint8(im);
number_superpixels?=900;
tic;?
label?=?DBscan_mex(imgnumber_superpixelspost);
toc;
SuperpixelSave(labelimname);
DisplaySuperpixel(labelimname);
%?end

評論

共有 條評論