169e32afc8e74335fa68185aa909d10b826a5bf2,albumentations/augmentations/functional.py,,hflip,#Any#,25
Before Change
def hflip(img):
return cv2.flip(img, 1)
def random_flip(img, code):
return cv2.flip(img, code)
After Change
def hflip(img):
return np.ascontiguousarray(img[:, ::-1, ...])
def random_flip(img, code):
return cv2.flip(img, code)
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 4
Instances
Project Name: albu/albumentations
Commit Name: 169e32afc8e74335fa68185aa909d10b826a5bf2
Time: 2018-10-17
Author: dima3001@yandex.ru
File Name: albumentations/augmentations/functional.py
Class Name:
Method Name: hflip
Project Name: albu/albumentations
Commit Name: 169e32afc8e74335fa68185aa909d10b826a5bf2
Time: 2018-10-17
Author: dima3001@yandex.ru
File Name: albumentations/augmentations/functional.py
Class Name:
Method Name: vflip
Project Name: yzhao062/pyod
Commit Name: 5107b16c64650da662b8e88dfa5e5b841c73c9d6
Time: 2019-03-12
Author: yalmardeny@tssg,org
File Name: pyod/models/sod.py
Class Name: SOD
Method Name: _snn