File size: 6,953 Bytes
646f45c | 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 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 | from torchvision.transforms import ColorJitter
from data import transform as transform
from utils import utils
from torch.utils.data import Dataset
from PIL import Image
import itertools
import os
import skimage
import torch
import numpy as np
def SameTrCollate(batch, args):
images, labels = zip(*batch)
images = [Image.fromarray(np.uint8(images[i][0] * 255))
for i in range(len(images))]
# Apply data augmentations with 90% probability
if np.random.rand() < 0.5:
images = [transform.RandomTransform(
args.proj)(image) for image in images]
if np.random.rand() < 0.5:
kernel_h = utils.randint(1, args.dila_ero_max_kernel + 1)
kernel_w = utils.randint(1, args.dila_ero_max_kernel + 1)
if utils.randint(0, 2) == 0:
images = [transform.Erosion((kernel_w, kernel_h), args.dila_ero_iter)(
image) for image in images]
else:
images = [transform.Dilation((kernel_w, kernel_h), args.dila_ero_iter)(
image) for image in images]
if np.random.rand() < 0.5:
images = [ColorJitter(args.jitter_brightness, args.jitter_contrast, args.jitter_saturation,
args.jitter_hue)(image) for image in images]
# Convert images to tensors
image_tensors = [torch.from_numpy(
np.array(image, copy=True)) for image in images]
image_tensors = torch.cat([t.unsqueeze(0) for t in image_tensors], 0)
image_tensors = image_tensors.unsqueeze(1).float()
image_tensors = image_tensors / 255.
return image_tensors, labels
class myLoadDS(Dataset):
def __init__(self, flist, dpath, img_size=[512, 32], ralph=None, fmin=True, mln=None, dataset=None):
self.fns = get_files(flist, dpath)
self.tlbls = get_labels(self.fns)
self.img_size = img_size
if ralph is not None:
self.ralph = ralph
elif dataset is not None:
if dataset == 'iam':
self.ralph = {
idx: char for idx, char in enumerate(
' !"#&\'()*+,-./0123456789:;?ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'
)
}
elif dataset == 'lam':
self.ralph = {
idx: char for idx, char in enumerate(
' !"#%&\'()+,-./0123456789:;=?ABCDEFGHIJKLMNOPQRSTUVWXZabcdefghijlmnopqrstuvwxyz|°·ÈÉàèéìòù–'
)
}
elif dataset == 'read2016':
self.ralph = {
idx: char for idx, char in enumerate(
' ()+,-./0123456789:<>ABCDEFGHIJKLMNOPQRSTUVWYZ[]abcdefghijklmnopqrstuvwxyz¾Ößäöüÿāēōūȳ̄̈—'
)
}
elif dataset == 'vnondb':
self.ralph = {
idx: char for idx, char in enumerate(
' !"%&()*,-./0123456789:;?ABCDEFGHIJKLMNOPQRSTUVWXYabcdefghijklmnopqrstuvxyzÀÁÂÔÚÝàáâãèéêìíòóôõùúýĂăĐđĩũƠơƯưạẢảẤấẦầẩẫậắằẳẵặẹẻẽếỀềỂểễỆệỉịọỏỐốỒồổỗộớờỞởỡợụỦủứừửữựỳỷỹ'
)
}
else:
alph = get_alphabet(self.tlbls)
self.ralph = dict(zip(alph.values(), alph.keys()))
self.alph = alph
else:
alph = get_alphabet(self.tlbls)
self.ralph = dict(zip(alph.values(), alph.keys()))
self.alph = alph
if mln != None:
filt = [len(x) <= mln if fmin else len(x)
>= mln for x in self.tlbls]
self.tlbls = np.asarray(self.tlbls)[filt].tolist()
self.fns = np.asarray(self.fns)[filt].tolist()
def __len__(self):
return len(self.fns)
def __getitem__(self, index):
timgs = get_images(self.fns[index], self.img_size[0], self.img_size[1])
timgs = timgs.transpose((2, 0, 1))
return (timgs, self.tlbls[index])
def _read_text(path):
"""Read a text file with robust encoding handling.
Try UTF-8 first, then fall back to common Windows encodings.
"""
encodings = ['utf-8', 'utf-8-sig', 'cp1258', 'cp1252', 'latin-1']
last_err = None
for enc in encodings:
try:
with open(path, 'r', encoding=enc) as f:
return f.read()
except UnicodeDecodeError as e:
last_err = e
continue
except FileNotFoundError:
raise
# As a last resort, ignore errors to avoid crashing the training loop
with open(path, 'r', encoding='utf-8', errors='ignore') as f:
return f.read()
def _read_lines(path):
txt = _read_text(path)
return txt.splitlines()
def get_files(nfile, dpath):
fnames = _read_lines(nfile)
fnames = [dpath + x.strip() for x in fnames]
return fnames
def npThum(img, max_w, max_h):
x, y = np.shape(img)[:2]
y = min(int(y * max_h / x), max_w)
x = max_h
img = np.array(Image.fromarray(img).resize((y, x)))
return img
def get_images(fname, max_w=500, max_h=500, nch=1): # args.max_w args.max_h args.nch
try:
image_data = np.array(Image.open(fname).convert('L'))
image_data = npThum(image_data, max_w, max_h)
image_data = skimage.img_as_float32(image_data)
h, w = np.shape(image_data)[:2]
if image_data.ndim < 3:
image_data = np.expand_dims(image_data, axis=-1)
if nch == 3 and image_data.shape[2] != 3:
image_data = np.tile(image_data, 3)
image_data = np.pad(image_data, ((0, 0), (0, max_w - np.shape(image_data)[1]), (0, 0)), mode='constant',
constant_values=(1.0))
except IOError as e:
print('Could not read:', fname, ':', e)
return image_data
def get_labels(fnames):
labels = []
for id, image_file in enumerate(fnames):
fn = os.path.splitext(image_file)[0] + '.txt'
lbl = _read_text(fn)
lbl = ' '.join(lbl.split()) # remove linebreaks if present
labels.append(lbl)
return labels
def get_alphabet(labels):
coll = ''.join(labels)
unq = sorted(list(set(coll)))
unq = [''.join(i) for i in itertools.product(unq, repeat=1)]
alph = dict(zip(unq, range(len(unq))))
return alph
def cycle_dpp(iterable):
epoch = 0
iterable.sampler.set_epoch(epoch)
while True:
for x in iterable:
yield x
epoch += 1
iterable.sampler.set_epoch(epoch)
def cycle_data(iterable):
while True:
for x in iterable:
yield x
|