Skip to content

imaging

crop_image(image, roi)

Crop an image given a roi in proper format.

Parameters:

  • image (ndarray) –

    array of size HxW or HxWxC

  • roi (tuple[int, int, int, int]) –

    (w_upper_left, h_upper_left, w_bottom_right, h_bottom_right)

Returns:

  • ndarray

    Cropped image based on roi

Source code in quadra/utils/imaging.py
 7
 8
 9
10
11
12
13
14
15
16
17
def crop_image(image: np.ndarray, roi: tuple[int, int, int, int]) -> np.ndarray:
    """Crop an image given a roi in proper format.

    Args:
        image: array of size HxW or HxWxC
        roi: (w_upper_left, h_upper_left, w_bottom_right, h_bottom_right)

    Returns:
        Cropped image based on roi
    """
    return image[roi[1] : roi[3], roi[0] : roi[2]]

keep_aspect_ratio_resize(image, size=224, interpolation=1)

Resize input image while keeping its aspect ratio.

Source code in quadra/utils/imaging.py
20
21
22
23
24
25
26
27
28
29
30
31
32
def keep_aspect_ratio_resize(image: np.ndarray, size: int = 224, interpolation: int = 1) -> np.ndarray:
    """Resize input image while keeping its aspect ratio."""
    (h, w) = image.shape[:2]

    if h < w:
        height = size
        width = int(w * size / h)
    else:
        width = size
        height = int(h * size / w)

    resized = cv2.resize(image, (width, height), interpolation=interpolation)
    return resized