image.py 11.6 KB
Newer Older
1
#   Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.
D
dzhwinter 已提交
2
#
D
dzhwinter 已提交
3 4 5
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
D
dzhwinter 已提交
6
#
D
dzhwinter 已提交
7
#     http://www.apache.org/licenses/LICENSE-2.0
D
dzhwinter 已提交
8
#
D
dzhwinter 已提交
9 10 11 12 13
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
D
dangqingqing 已提交
14
"""
D
dangqingqing 已提交
15
This file contains some common interfaces for image preprocess.
D
dangqingqing 已提交
16
Many users are confused about the image layout. We introduce
D
dangqingqing 已提交
17
the image layout as follows.
D
dangqingqing 已提交
18 19

- CHW Layout
L
Luo Tao 已提交
20

D
dangqingqing 已提交
21
  - The abbreviations: C=channel, H=Height, W=Width
D
dangqingqing 已提交
22 23 24
  - The default layout of image opened by cv2 or PIL is HWC.
    PaddlePaddle only supports the CHW layout. And CHW is simply
    a transpose of HWC. It must transpose the input image.
D
dangqingqing 已提交
25 26

- Color format: RGB or BGR
L
Luo Tao 已提交
27

D
dangqingqing 已提交
28
  OpenCV use BGR color format. PIL use RGB color format. Both
D
dangqingqing 已提交
29
  formats can be used for training. Noted that, the format should
T
tianshuo78520a 已提交
30
  be keep consistent between the training and inference period.
D
dangqingqing 已提交
31
"""
32 33 34

from __future__ import print_function

35
import six
L
Luo Tao 已提交
36
import numpy as np
M
minqiyang 已提交
37
# FIXME(minqiyang): this is an ugly fix for the numpy bug reported here
38 39 40 41
# https://github.com/numpy/numpy/issues/12497
if six.PY3:
    import subprocess
    import sys
M
minqiyang 已提交
42 43 44 45
    import_cv2_proc = subprocess.Popen(
        [sys.executable, "-c", "import cv2"],
        stdout=subprocess.PIPE,
        stderr=subprocess.PIPE)
46 47 48 49 50 51 52 53 54 55 56
    out, err = import_cv2_proc.communicate()
    retcode = import_cv2_proc.poll()
    if retcode != 0:
        cv2 = None
    else:
        import cv2
else:
    try:
        import cv2
    except ImportError:
        cv2 = None
L
Luo Tao 已提交
57 58
import os
import tarfile
59
import six.moves.cPickle as pickle
L
Luo Tao 已提交
60 61 62 63 64 65

__all__ = [
    "load_image_bytes", "load_image", "resize_short", "to_chw", "center_crop",
    "random_crop", "left_right_flip", "simple_transform", "load_and_transform",
    "batch_images_from_tar"
]
D
dangqingqing 已提交
66 67


68 69 70 71 72 73 74 75 76 77 78 79
def _check_cv2():
    if cv2 is None:
        import sys
        sys.stderr.write(
            '''Warning with paddle image module: opencv-python should be imported,
         or paddle image module could NOT work; please install opencv-python first.'''
        )
        return False
    else:
        return True


80 81 82 83 84 85
def batch_images_from_tar(data_file,
                          dataset_name,
                          img2label,
                          num_per_batch=1024):
    """
    Read images from tar file and batch them into batch file.
L
Luo Tao 已提交
86 87 88 89 90

    :param data_file: path of image tar file
    :type data_file: string
    :param dataset_name: 'train','test' or 'valid'
    :type dataset_name: string
M
minqiyang 已提交
91
    :param img2label: a dic with image file name as key
92
                    and image's label as value
L
Luo Tao 已提交
93 94 95 96 97
    :type img2label: dic
    :param num_per_batch: image number per batch file
    :type num_per_batch: int
    :return: path of list file containing paths of batch file
    :rtype: string
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
    """
    batch_dir = data_file + "_batch"
    out_path = "%s/%s" % (batch_dir, dataset_name)
    meta_file = "%s/%s.txt" % (batch_dir, dataset_name)

    if os.path.exists(out_path):
        return meta_file
    else:
        os.makedirs(out_path)

    tf = tarfile.open(data_file)
    mems = tf.getmembers()
    data = []
    labels = []
    file_id = 0
    for mem in mems:
        if mem.name in img2label:
            data.append(tf.extractfile(mem).read())
            labels.append(img2label[mem.name])
            if len(data) == num_per_batch:
                output = {}
                output['label'] = labels
                output['data'] = data
121
                pickle.dump(
122
                    output,
M
minqiyang 已提交
123
                    open('%s/batch_%d' % (out_path, file_id), 'wb'),
124
                    protocol=2)
125 126 127 128 129 130 131
                file_id += 1
                data = []
                labels = []
    if len(data) > 0:
        output = {}
        output['label'] = labels
        output['data'] = data
132
        pickle.dump(
133
            output, open('%s/batch_%d' % (out_path, file_id), 'wb'), protocol=2)
134 135 136 137 138 139 140

    with open(meta_file, 'a') as meta:
        for file in os.listdir(out_path):
            meta.write(os.path.abspath("%s/%s" % (out_path, file)) + "\n")
    return meta_file


141 142 143 144 145
def load_image_bytes(bytes, is_color=True):
    """
    Load an color or gray image from bytes array.

    Example usage:
M
minqiyang 已提交
146

147
    .. code-block:: python
L
Luo Tao 已提交
148

149
        with open('cat.jpg') as f:
150
            im = load_image_bytes(f.read())
151 152

    :param bytes: the input image bytes array.
L
Luo Tao 已提交
153
    :type bytes: str
154 155 156
    :param is_color: If set is_color True, it will load and
                     return a color image. Otherwise, it will
                     load and return a gray image.
L
Luo Tao 已提交
157
    :type is_color: bool
158
    """
159
    assert _check_cv2() is True
M
minqiyang 已提交
160

161 162 163 164 165 166
    flag = 1 if is_color else 0
    file_bytes = np.asarray(bytearray(bytes), dtype=np.uint8)
    img = cv2.imdecode(file_bytes, flag)
    return img


D
dangqingqing 已提交
167 168 169 170 171
def load_image(file, is_color=True):
    """
    Load an color or gray image from the file path.

    Example usage:
M
minqiyang 已提交
172

D
dangqingqing 已提交
173
    .. code-block:: python
L
Luo Tao 已提交
174

D
dangqingqing 已提交
175 176 177 178 179 180 181
        im = load_image('cat.jpg')

    :param file: the input image path.
    :type file: string
    :param is_color: If set is_color True, it will load and
                     return a color image. Otherwise, it will
                     load and return a gray image.
L
Luo Tao 已提交
182
    :type is_color: bool
D
dangqingqing 已提交
183
    """
184
    assert _check_cv2() is True
M
minqiyang 已提交
185

D
dangqingqing 已提交
186 187 188 189 190 191 192
    # cv2.IMAGE_COLOR for OpenCV3
    # cv2.CV_LOAD_IMAGE_COLOR for older OpenCV Version
    # cv2.IMAGE_GRAYSCALE for OpenCV3
    # cv2.CV_LOAD_IMAGE_GRAYSCALE for older OpenCV Version
    # Here, use constant 1 and 0
    # 1: COLOR, 0: GRAYSCALE
    flag = 1 if is_color else 0
D
dangqingqing 已提交
193 194 195 196 197
    im = cv2.imread(file, flag)
    return im


def resize_short(im, size):
M
minqiyang 已提交
198
    """
D
dangqingqing 已提交
199 200 201
    Resize an image so that the length of shorter edge is size.

    Example usage:
M
minqiyang 已提交
202

D
dangqingqing 已提交
203
    .. code-block:: python
L
Luo Tao 已提交
204

D
dangqingqing 已提交
205 206
        im = load_image('cat.jpg')
        im = resize_short(im, 256)
M
minqiyang 已提交
207

D
dangqingqing 已提交
208 209 210 211 212
    :param im: the input image with HWC layout.
    :type im: ndarray
    :param size: the shorter edge size of image after resizing.
    :type size: int
    """
213
    assert _check_cv2() is True
M
minqiyang 已提交
214

D
dangqingqing 已提交
215 216 217
    h, w = im.shape[:2]
    h_new, w_new = size, size
    if h > w:
M
minqiyang 已提交
218
        h_new = size * h // w
D
dangqingqing 已提交
219
    else:
M
minqiyang 已提交
220
        w_new = size * w // h
221
    im = cv2.resize(im, (w_new, h_new), interpolation=cv2.INTER_CUBIC)
D
dangqingqing 已提交
222 223 224 225 226 227
    return im


def to_chw(im, order=(2, 0, 1)):
    """
    Transpose the input image order. The image layout is HWC format
D
dangqingqing 已提交
228 229
    opened by cv2 or PIL. Transpose the input image to CHW layout
    according the order (2,0,1).
D
dangqingqing 已提交
230 231

    Example usage:
M
minqiyang 已提交
232

D
dangqingqing 已提交
233
    .. code-block:: python
L
Luo Tao 已提交
234

D
dangqingqing 已提交
235 236 237
        im = load_image('cat.jpg')
        im = resize_short(im, 256)
        im = to_chw(im)
M
minqiyang 已提交
238

D
dangqingqing 已提交
239 240 241
    :param im: the input image with HWC layout.
    :type im: ndarray
    :param order: the transposed order.
M
minqiyang 已提交
242
    :type order: tuple|list
D
dangqingqing 已提交
243 244 245 246 247 248 249 250 251 252 253
    """
    assert len(im.shape) == len(order)
    im = im.transpose(order)
    return im


def center_crop(im, size, is_color=True):
    """
    Crop the center of image with size.

    Example usage:
M
minqiyang 已提交
254

D
dangqingqing 已提交
255
    .. code-block:: python
L
Luo Tao 已提交
256

D
dangqingqing 已提交
257
        im = center_crop(im, 224)
M
minqiyang 已提交
258

D
dangqingqing 已提交
259 260
    :param im: the input image with HWC layout.
    :type im: ndarray
D
dangqingqing 已提交
261
    :param size: the cropping size.
D
dangqingqing 已提交
262 263 264 265 266
    :type size: int
    :param is_color: whether the image is color or not.
    :type is_color: bool
    """
    h, w = im.shape[:2]
M
minqiyang 已提交
267 268
    h_start = (h - size) // 2
    w_start = (w - size) // 2
D
dangqingqing 已提交
269 270 271 272 273 274 275 276 277 278 279 280 281
    h_end, w_end = h_start + size, w_start + size
    if is_color:
        im = im[h_start:h_end, w_start:w_end, :]
    else:
        im = im[h_start:h_end, w_start:w_end]
    return im


def random_crop(im, size, is_color=True):
    """
    Randomly crop input image with size.

    Example usage:
M
minqiyang 已提交
282

D
dangqingqing 已提交
283
    .. code-block:: python
L
Luo Tao 已提交
284

D
dangqingqing 已提交
285
        im = random_crop(im, 224)
M
minqiyang 已提交
286

D
dangqingqing 已提交
287 288
    :param im: the input image with HWC layout.
    :type im: ndarray
D
dangqingqing 已提交
289
    :param size: the cropping size.
D
dangqingqing 已提交
290 291 292 293 294 295 296 297 298 299 300 301 302 303 304
    :type size: int
    :param is_color: whether the image is color or not.
    :type is_color: bool
    """
    h, w = im.shape[:2]
    h_start = np.random.randint(0, h - size + 1)
    w_start = np.random.randint(0, w - size + 1)
    h_end, w_end = h_start + size, w_start + size
    if is_color:
        im = im[h_start:h_end, w_start:w_end, :]
    else:
        im = im[h_start:h_end, w_start:w_end]
    return im


Q
qingqing01 已提交
305
def left_right_flip(im, is_color=True):
D
dangqingqing 已提交
306 307 308 309 310
    """
    Flip an image along the horizontal direction.
    Return the flipped image.

    Example usage:
M
minqiyang 已提交
311

D
dangqingqing 已提交
312
    .. code-block:: python
L
Luo Tao 已提交
313

D
dangqingqing 已提交
314
        im = left_right_flip(im)
M
minqiyang 已提交
315

Q
qingqing01 已提交
316
    :param im: input image with HWC layout or HW layout for gray image
D
dangqingqing 已提交
317
    :type im: ndarray
Q
qingqing01 已提交
318
    :param is_color: whether input image is color or not
Q
qingqing01 已提交
319
    :type is_color: bool
D
dangqingqing 已提交
320
    """
Q
qingqing01 已提交
321
    if len(im.shape) == 3 and is_color:
D
dangqingqing 已提交
322 323
        return im[:, ::-1, :]
    else:
Q
qingqing01 已提交
324
        return im[:, ::-1]
D
dangqingqing 已提交
325 326


D
dangqingqing 已提交
327 328 329 330 331 332
def simple_transform(im,
                     resize_size,
                     crop_size,
                     is_train,
                     is_color=True,
                     mean=None):
D
dangqingqing 已提交
333
    """
D
dangqingqing 已提交
334
    Simply data argumentation for training. These operations include
D
dangqingqing 已提交
335 336
    resizing, croping and flipping.

D
dangqingqing 已提交
337
    Example usage:
M
minqiyang 已提交
338

D
dangqingqing 已提交
339
    .. code-block:: python
L
Luo Tao 已提交
340

D
dangqingqing 已提交
341 342
        im = simple_transform(im, 256, 224, True)

D
dangqingqing 已提交
343 344 345 346 347 348 349 350
    :param im: The input image with HWC layout.
    :type im: ndarray
    :param resize_size: The shorter edge length of the resized image.
    :type resize_size: int
    :param crop_size: The cropping size.
    :type crop_size: int
    :param is_train: Whether it is training or not.
    :type is_train: bool
L
Luo Tao 已提交
351 352
    :param is_color: whether the image is color or not.
    :type is_color: bool
M
minqiyang 已提交
353
    :param mean: the mean values, which can be element-wise mean values or
L
Luo Tao 已提交
354 355
                 mean values per channel.
    :type mean: numpy array | list
D
dangqingqing 已提交
356 357 358
    """
    im = resize_short(im, resize_size)
    if is_train:
Y
yeyupiaoling 已提交
359
        im = random_crop(im, crop_size, is_color=is_color)
D
dangqingqing 已提交
360
        if np.random.randint(2) == 0:
Q
qingqing01 已提交
361
            im = left_right_flip(im, is_color)
D
dangqingqing 已提交
362
    else:
Y
yeyupiaoling 已提交
363
        im = center_crop(im, crop_size, is_color=is_color)
D
dangqingqing 已提交
364 365 366 367 368 369
    if len(im.shape) == 3:
        im = to_chw(im)

    im = im.astype('float32')
    if mean is not None:
        mean = np.array(mean, dtype=np.float32)
M
minqiyang 已提交
370
        # mean value, may be one value per channel
Q
qingqing01 已提交
371
        if mean.ndim == 1 and is_color:
D
dangqingqing 已提交
372
            mean = mean[:, np.newaxis, np.newaxis]
Q
qingqing01 已提交
373 374
        elif mean.ndim == 1:
            mean = mean
D
dangqingqing 已提交
375 376 377 378
        else:
            # elementwise mean
            assert len(mean.shape) == len(im)
        im -= mean
D
dangqingqing 已提交
379 380 381 382 383 384 385 386

    return im


def load_and_transform(filename,
                       resize_size,
                       crop_size,
                       is_train,
D
dangqingqing 已提交
387 388
                       is_color=True,
                       mean=None):
D
dangqingqing 已提交
389 390
    """
    Load image from the input file `filename` and transform image for
D
dangqingqing 已提交
391 392
    data argumentation. Please refer to the `simple_transform` interface
    for the transform operations.
D
dangqingqing 已提交
393

D
dangqingqing 已提交
394
    Example usage:
M
minqiyang 已提交
395

D
dangqingqing 已提交
396
    .. code-block:: python
L
Luo Tao 已提交
397

D
dangqingqing 已提交
398 399
        im = load_and_transform('cat.jpg', 256, 224, True)

D
dangqingqing 已提交
400 401 402 403 404 405 406 407
    :param filename: The file name of input image.
    :type filename: string
    :param resize_size: The shorter edge length of the resized image.
    :type resize_size: int
    :param crop_size: The cropping size.
    :type crop_size: int
    :param is_train: Whether it is training or not.
    :type is_train: bool
L
Luo Tao 已提交
408 409
    :param is_color: whether the image is color or not.
    :type is_color: bool
M
minqiyang 已提交
410
    :param mean: the mean values, which can be element-wise mean values or
L
Luo Tao 已提交
411 412
                 mean values per channel.
    :type mean: numpy array | list
D
dangqingqing 已提交
413
    """
Q
qingqing01 已提交
414
    im = load_image(filename, is_color)
D
dangqingqing 已提交
415
    im = simple_transform(im, resize_size, crop_size, is_train, is_color, mean)
D
dangqingqing 已提交
416
    return im