pytorch 图像前处理

pytorch 图像前处理,第1张

pytorch 图像前处理

记录一些常用的前处理,每次都重写也是很费劲。。

```python

import cv2
import numpy as np

# 不失真resize 在resize时加上黑边
def distortionless_resize(img_org,target_size = (112,112)):
	h,w,c = img_org.shape
	target_w,target_h = target_size
	if target_h==target_w:
	    if h==w:
	    	new_img = cv2.resize(img_org,target_size)
		elif h>w:
			new_img = np.zeros((h,h,3),np.uint8)
			new_img[:,int(h-w)//2:int(h-w)//2+w,:]=img_org
			new_img = cv2.resize(new_img,target_size)

		else:
			new_img = np.zeros((w,w,3),np.uint8)
			new_img[int(w-h)//2:int(w-h)//2+w,:,:]
			new_img = cv2.resize(new_img,target_size)
	else:
		scale = h/w
		target_scale = target_h/target_w
		if scale-target_scale<1e-3:
			new_img = cv2.resize(img_org,target_size)
		elif scale 
					
										


					

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5479586.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-12
下一篇 2022-12-12

发表评论

登录后才能评论

评论列表(0条)

保存