-
Notifications
You must be signed in to change notification settings - Fork 22
/
demo_instanceTrainId_to_dets.m
53 lines (44 loc) · 1.79 KB
/
demo_instanceTrainId_to_dets.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
% ------------------------------------------------------------------------
% Copyright (C)
% Torr Vision Group (TVG)
% University of Oxford - UK
%
% Qizhu Li <[email protected]>
% August 2018
% ------------------------------------------------------------------------
% This file is part of the weakly-supervised training method presented in:
% Qizhu Li*, Anurag Arnab*, Philip H.S. Torr,
% "Weakly- and Semi-Supervised Panoptic Segmentation,"
% European Conference on Computer Vision (ECCV) 2018.
% Please consider citing the paper if you use this code.
% ------------------------------------------------------------------------
% This script demos extracting bounding box information from Cityscapes
% instance ground truth (*_gtFine_instanceTrainIds.png files) for
% generation of iterative ground truths for weakly-supervised experiments
% ------------------------------------------------------------------------
clearvars;
addpath utils
addpath scripts
instanceTrainId_file_path = 'data/Cityscapes/gtFine/train/aachen/aachen_000000_000019_gtFine_instanceTrainIds.png';
label = imread(instanceTrainId_file_path);
% set is_panoptic flag to include image-level stuff class dets
is_panoptic = true;
% set incl_grps flag to include thing groups present in Cityscapes
% annotation
incl_grps = true;
% trainId of stuff classes
stuff_classes = 0:10;
% trainId of thing classes
thing_classes = 11:18;
% class names
load objectName19.mat
% ignore label
ignore_label = 255;
% run the extraction
dets = instanceTrainId_to_dets(label, is_panoptic, incl_grps, ...
stuff_classes, thing_classes, objectNames, ignore_label);
save_dir = 'data/Cityscapes/gtFine_bboxes/train/panoptic';
if ~exist(save_dir, 'dir')
mkdir(save_dir);
end
save(fullfile(save_dir, 'aachen_000000_000019_leftImg8bit.mat'), 'dets');