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
# -*- coding: utf-8 -*-
# MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
#
# Copyright (c) 2014-2021 Megvii Inc. All rights reserved.
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
r"""Wraper to keep the dimension of input images unchanged."""
=
=
return
return
r"""Change BGR format image's color space to gray.
Args:
image: input BGR format image, with `(H, W, C)` shape.
Returns:
gray format image, with `(H, W, C)` shape.
"""
return
r"""Change gray format image's color space to BGR.
Args:
image: input Gray format image, with `(H, W, C)` shape.
Returns:
BGR format image, with `(H, W, C)` shape.
"""
return
r"""Pad input data with *value* and given *size*.
Args:
input: input data, with `(H, W, C)` shape.
size: padding size of input data, it could be integer or sequence.
If it is an integer, the input data will be padded in four directions.
If it is a sequence contains two integer, the bottom and right side
of input data will be padded.
If it is a sequence contains four integer, the top, bottom, left, right
side of input data will be padded with given size.
value: padding value of data, could be a sequence of int or float.
If it is float value, the dtype of image will be casted to float32 also.
Returns:
padded image.
"""
=
=
=
return
r"""Accordding to the flipCode (the type of flip), flip the input image.
Args:
image: input image, with `(H, W, C)` shape.
flipCode: code that indicates the type of flip.
* 1 : Flip horizontally
* 0 : Flip vertically
* -1: Flip horizontally and vertically
Returns:
BGR format image, with `(H, W, C)` shape.
"""
return
r"""Resize the input data to given size.
Args:
input: input data, could be image or masks, with `(H, W, C)` shape.
size: target size of input data, with (height, width) shape.
interpolation: interpolation method.
Returns:
resized data, with `(H, W, C)` shape.
"""
=
return