Cropping
Cropper Transformer component
CropperImage
CropperImage class
Source code in otary/image/components/transformer/components/cropper/cropper.py
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 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 |
|
__crop_with_clipping(x0, y0, x1, y1)
Crop the image in a straight axis-aligned rectangle way given by the top-left point [x0, y0] and the bottom-right point [x1, y1].
Crop by clipping meaning that if the coordinates are out of the image bounds the output is only the part of the image that is in the bounds.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
x0
|
int
|
x coordinate of the top-left point |
required |
y0
|
int
|
y coordinate of the top-left point |
required |
x1
|
int
|
x coordinate of the bottom-right point |
required |
y1
|
int
|
y coordinate of the bottom-right point |
required |
Returns:
Name | Type | Description |
---|---|---|
Self |
NDArray
|
image cropped |
Source code in otary/image/components/transformer/components/cropper/cropper.py
__crop_with_padding(x0, y0, x1, y1, pad_value=0)
Crop the image in a straight axis-aligned rectangle way given by the top-left point [x0, y0] and the bottom-right point [x1, y1].
This method is specific to crop with padding meaning that if the coordinates are out of the image bounds, the padding is added to the output cropped image with the pad value parameter, black by default.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
x0
|
int
|
x coordinate of the top-left point |
required |
y0
|
int
|
y coordinate of the top-left point |
required |
x1
|
int
|
x coordinate of the bottom-right point |
required |
y1
|
int
|
y coordinate of the bottom-right point |
required |
pad_value
|
int
|
pad fill value. Defaults to 0. |
0
|
Returns:
Name | Type | Description |
---|---|---|
NDArray |
NDArray
|
output cropped image |
Source code in otary/image/components/transformer/components/cropper/cropper.py
crop(x0, y0, x1, y1, clip=True, pad=False, copy=False, extra_border_size=0, pad_value=0)
Crop the image in a straight axis-aligned rectangle way given by the top-left point [x0, y0] and the bottom-right point [x1, y1]
This function inputs represents the top-left and bottom-right points. This method does not provide a way to extract a rotated rectangle or a different shape from the image.
Remember that in this library the x coordinates represent the y coordinates of the image array (horizontal axis of the image). The array representation is always rows then columns. In this library this is the contrary like in opencv.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
x0
|
int
|
top-left x coordinate |
required |
y0
|
int
|
top-left y coordinate |
required |
x1
|
int
|
bottom-right x coordinate |
required |
y1
|
int
|
bottom-right y coordinate |
required |
clip
|
bool
|
whether to clip or not. Defaults to True. |
True
|
pad
|
bool
|
whether to pad or not. Defaults to False. |
False
|
copy
|
bool
|
whether to copy or not. Defaults to False. |
False
|
extra_border_size
|
int
|
extra border size to add to the crop in the x and y directions. Defaults to 0 which means no extra border. |
0
|
pad_value
|
int
|
pad fill value. Defaults to 0. |
0
|
Returns:
Type | Description |
---|---|
Optional[Image]
|
Optional[Image]: cropped image if copy=True else None |
Source code in otary/image/components/transformer/components/cropper/cropper.py
crop_from_axis_aligned_bbox(bbox, clip=True, pad=False, copy=False, extra_border_size=0, pad_value=0)
Crop the image from an Axis-Aligned Bounding Box (AABB). Inclusive crops which means that the cropped image will have width and height equal to the width and height of the AABB.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
bbox
|
Rectangle
|
axis-aligned bounding box |
required |
clip
|
bool
|
whether to clip or not. Defaults to True. |
True
|
pad
|
bool
|
whether to pad or not. Defaults to False. |
False
|
copy
|
bool
|
whether to copy or not. Defaults to False. |
False
|
extra_border_size
|
int
|
extra border size to add to the crop in the x and y directions. Defaults to 0 which means no extra border. |
0
|
pad_value
|
int
|
pad fill value. Defaults to 0. |
0
|
Returns:
Type | Description |
---|---|
Optional[Image]
|
Optional[Image]: cropped image if copy=True else None |
Source code in otary/image/components/transformer/components/cropper/cropper.py
crop_from_center(center, width, height, clip=True, pad=False, copy=False, extra_border_size=0, pad_value=0)
Crop the image from a rectangle defined by its center point, its width and its height.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
center
|
NDArray
|
(x, y) coordinates of the center point |
required |
width
|
int
|
width of the rectangle to crop |
required |
height
|
int
|
height of the rectangle to crop |
required |
clip
|
bool
|
whether to clip or not. Defaults to True. |
True
|
pad
|
bool
|
whether to pad or not. Defaults to False. |
False
|
copy
|
bool
|
whether to copy or not. Defaults to False. |
False
|
extra_border_size
|
int
|
extra border size to add to the crop in the x and y directions. Defaults to 0 which means no extra border. |
0
|
pad_value
|
int
|
pad fill value. Defaults to 0. |
0
|
Returns:
Type | Description |
---|---|
Optional[Image]
|
Optional[Image]: image cropped if copy=True else None |
Source code in otary/image/components/transformer/components/cropper/cropper.py
crop_from_linear_spline(spline, copy=False, clip=True, pad=False, extra_border_size=0, pad_value=0)
Crops the image using the bounding box defined by a linear spline.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
spline
|
LinearSpline
|
The linear spline object defining the crop region. |
required |
copy
|
bool
|
If True, returns a copy of the cropped image. Defaults to False. |
False
|
clip
|
bool
|
If True, clips the crop region to the image boundaries. Defaults to True. |
True
|
pad
|
bool
|
If True, pads the cropped region if it extends beyond the image boundaries. Defaults to False. |
False
|
extra_border_size
|
int
|
Additional border size to add around the cropped region. Defaults to 0. |
0
|
pad_value
|
int
|
Value to use for padding if pad is True. Defaults to 0. |
0
|
Returns:
Type | Description |
---|---|
Optional[Image]
|
Optional[Image]: The cropped image |
Source code in otary/image/components/transformer/components/cropper/cropper.py
crop_from_polygon(polygon, copy=False, clip=True, pad=False, extra_border_size=0, pad_value=0)
Crops the image using the bounding box defined by a polygon.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
polygon
|
Polygon
|
The polygon whose bounding box will be used for cropping. |
required |
copy
|
bool
|
If True, returns a copy of the cropped image. Defaults to False. |
False
|
clip
|
bool
|
If True, clips the crop region to the image boundaries. Defaults to True. |
True
|
pad
|
bool
|
If True, pads the cropped region if it extends beyond the image boundaries. Defaults to False. |
False
|
extra_border_size
|
int
|
Additional border size to add around the cropped region. Defaults to 0. |
0
|
pad_value
|
int
|
Value to use for padding if pad is True. Defaults to 0. |
0
|
Returns:
Type | Description |
---|---|
Optional[Image]
|
Optional[Image]: The cropped image |
Source code in otary/image/components/transformer/components/cropper/cropper.py
crop_from_topleft(topleft, width, height, clip=True, pad=False, copy=False, extra_border_size=0, pad_value=0)
Crop the image from a rectangle defined by its top-left point, its width and its height.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
topleft
|
ndarray
|
(x, y) coordinates of the top-left point |
required |
width
|
int
|
width of the rectangle to crop |
required |
height
|
int
|
height of the rectangle to crop |
required |
clip
|
bool
|
whether to clip or not. Defaults to True. |
True
|
pad
|
bool
|
whether to pad or not. Defaults to False. |
False
|
copy
|
bool
|
whether to copy or not. Defaults to False. |
False
|
extra_border_size
|
int
|
extra border size to add to the crop in the x and y directions. Defaults to 0 which means no extra border. |
0
|
pad_value
|
int
|
pad fill value. Defaults to 0. |
0
|
Returns:
Type | Description |
---|---|
Optional[Image]
|
Optional[Image]: image cropped if copy=True else None |