VOC2012-Segmentation
VOC2012-Segmentation copied to clipboard
A tool to use Pascal VOC 2012 dataset for Semantic Segmentation
I used `voc2012.read_all_data_and_save()` to load the segmentation dataset. But after printing the length of `voc2012.train_images` and `voc2012.val_images` I get 1464 and 1449. This number seems to be way smaller than...
Thank you for your share. But when I run through command like: "voc2012 = VOC2012('e:/VOC2012/', 'e:/VOC2012/SegmentationClassAug/', image_size=(513, 513)) batch_images, batch_labels = voc2012.get_batch_aug_fast(batch_size=8) cv2.imshow('image', batch_images[4]) cv2.imshow('label', batch_labels[4]) cv2.waitKey(0)" I will find...