⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 demomanmade.m

📁 This code can parse any image in matlab. Very elaborate code
💻 M
字号:
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% This script contains a number of examples about how to use the
% LHI_Manmade_Object_75s subset
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

clear; close all;

% Set default folers
HOMEIMAGES = 'http://yoshi.cs.ucla.edu/yao/data/LHI_Manmade_Object_75/Images'; % you can set here your default folder
HOMEANNOTATIONS = 'http://yoshi.cs.ucla.edu/yao/data/LHI_Manmade_Object_75/Annotations'; % you can set here your default folder
HOMELABELMAPS = 'http://yoshi.cs.ucla.edu/yao/data/LHI_Manmade_Object_75/LabelMaps';

D = LHIdatabase(HOMEANNOTATIONS);

%find object from subfolder clock 
[db,j] = LHIquery(D, 'folder', 'clock');
% 
LHIdbshowscenes(db, HOMEIMAGES, HOMELABELMAPS,1, [6, 5]); % this will shows the sketches

% Show image hierarchy
i = 1; % i could be any integer from 1 to length(db)
LHIdbshowimage(db, i, HOMEIMAGES); % this shows all the 

% Show object statistics
[a,b,c,d,e]=LHIobjectstats(D, HOMEIMAGES, HOMELABELMAPS);

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -