-
Notifications
You must be signed in to change notification settings - Fork 1
/
cocovoc.py
49 lines (31 loc) · 1.41 KB
/
cocovoc.py
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
# ================================================================
# MIT License
# Copyright (c) 2021 edwardyehuang (https://github.com/edwardyehuang)
# ================================================================
import os
import tensorflow as tf
import numpy as np
from PIL import Image
INAGE_DIR = "images"
LABEL_DIR = "masks"
SEGMENTATION_TRAIN_FILENAME = "images.txt"
IMAGE_FILE_EXTENSION = ".jpg"
LABEL_FILE_EXTENSION = ".png"
from .dataset import Dataset
class CocoVOC(Dataset):
def __init__(self, dataset_dir):
super(CocoVOC, self).__init__(dataset_dir)
self.ignore_label = 255
self.num_class = 21
self.compress = True
def load_data_paths(self, dataset_dir):
image_dir = os.path.join(dataset_dir, INAGE_DIR)
label_dir = os.path.join(dataset_dir, LABEL_DIR)
train_list_path = os.path.join(dataset_dir, SEGMENTATION_TRAIN_FILENAME)
return self.__get_data_paths(train_list_path, image_dir, label_dir), None
def __get_data_paths(self, names_list_path, images_dir, labels_dir):
with open(names_list_path, "r") as f:
images_names = f.read().split()
images_paths = [os.path.join(images_dir, image_name + IMAGE_FILE_EXTENSION) for image_name in images_names]
labels_paths = [os.path.join(labels_dir, image_name + LABEL_FILE_EXTENSION) for image_name in images_names]
return images_paths, labels_paths