56926bc8b4a158e1c40cddbc795303bc6a66f44d,semantic-segmentation/deeplabv3plus/image_preprocess.py,,resize,#Any#Any#,28

Before Change


def resize(image, desired_size):

    old_size = image.shape[:2]  // old_size is in (height, width) format
    ratio = float(desired_size)/max(old_size)
    new_size = tuple([int(x*ratio) for x in old_size])

    // new_size should be in (width, height) format
    image = cv2.resize(image, (new_size[1], new_size[0]))

After Change


def resize(image, desired_size):

    old_size = image.shape[:2]  // old_size is in (height, width) format
    ratio = min(np.divide(desired_size, old_size))
    new_size = (int(old_size[0]*ratio), int(old_size[1]*ratio))

    // new_size should be in (width, height) format
    if image.shape[2] == 1:
        image = cv2.resize(
            image, (new_size[1], new_size[0]), interpolation=cv2.INTER_NEAREST)
        return image
    image = cv2.resize(image, (new_size[1], new_size[0]))

    return image
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 12

Instances


Project Name: sony/nnabla-examples
Commit Name: 56926bc8b4a158e1c40cddbc795303bc6a66f44d
Time: 2019-05-23
Author: sukriti.mehrotra@sony.com
File Name: semantic-segmentation/deeplabv3plus/image_preprocess.py
Class Name:
Method Name: resize


Project Name: has2k1/plotnine
Commit Name: f8f8e239c2ad67339233b9180da7463e96279722
Time: 2014-07-17
Author: lamp.greg@gmail.com
File Name: ggplot/components/colors.py
Class Name:
Method Name: assign_continuous_colors


Project Name: sony/nnabla-examples
Commit Name: 56926bc8b4a158e1c40cddbc795303bc6a66f44d
Time: 2019-05-23
Author: sukriti.mehrotra@sony.com
File Name: semantic-segmentation/deeplabv3plus/model_inference.py
Class Name:
Method Name: post_process