forked from shelhamer/fcn.berkeleyvision.org
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PASCAL VOC: include more data details, rename layers -> voc_layers
- Loading branch information
Showing
7 changed files
with
48 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# PASCAL VOC and SBD | ||
|
||
PASCAL VOC is a standard recognition dataset and benchmark with detection and semantic segmentation challenges. | ||
The Semantic Boundary Dataset (SBD) is a further annotation of the PASCAL VOC data that provides more semantic segmentation and instance segmentation masks. | ||
|
||
PASCAL VOC has a private test set and [leaderboard for semantic segmentation](http://host.robots.ox.ac.uk:8080/leaderboard/displaylb.php?challengeid=11&compid=6). | ||
|
||
The train/val/test splits of PASCAL VOC segmentation challenge and SBD diverge. | ||
Most notably VOC 2011 segval intersects with SBD train. | ||
Care must be taken for proper evaluation by excluding images from the train or val splits. | ||
|
||
We train on the 8,498 images of SBD train. | ||
We validate on the non-intersecting set defined in the included `seg11valid.txt`. | ||
|
||
Refer to `classes.txt` for the listing of classes in model output order. | ||
Refer to `../voc_layers.py` for the Python data layer for this dataset. | ||
|
||
See the dataset sites for download: | ||
|
||
- PASCAL VOC 2012: http://host.robots.ox.ac.uk/pascal/VOC/voc2012/ | ||
- SBD: http://www.cs.berkeley.edu/~bharath2/codes/SBD/download.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
background | ||
aeroplane | ||
bicycle | ||
bird | ||
boat | ||
bottle | ||
bus | ||
car | ||
cat | ||
chair | ||
cow | ||
diningtable | ||
dog | ||
horse | ||
motorbike | ||
person | ||
pottedplant | ||
sheep | ||
sofa | ||
train | ||
tvmonitor | ||
|
||
and 255 is the ignore label that marks pixels excluded from learning and | ||
evaluation by the PASCAL VOC ground truth. |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.