56926bc8b4a158e1c40cddbc795303bc6a66f44d,semantic-segmentation/deeplabv3plus/image_preprocess.py,,resize,#,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



    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(
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 4

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: 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


Project Name: librosa/librosa
Commit Name: 80aaf7a96ecb3d112e52ed22a708608795a729c3
Time: 2015-02-15
Author: brian.mcfee@nyu.edu
File Name: librosa/feature/spectral.py
Class Name:
Method Name: spectral_contrast