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

📄 demonature.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_Nature_Object_40 subset
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

clear; close all;

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

D = LHIdatabase(HOMEANNOTATIONS);

[db,j] = LHIquery(D, 'folder', 'horse');

LHIdbshowscenes(db, HOMEIMAGES, HOMELABELMAPS,1,[2,2]); % this shows all the 

% 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 + -