Spaces:
Runtime error
Runtime error
File size: 278 Bytes
e22b55b |
1 2 3 4 5 6 7 8 9 10 11 |
import cv2
class Process:
def __init__(self,width,height,inter=cv2.INTER_AREA):
self.width=width
self.height=height
self.inter=inter
def preprocess(self,image):
return cv2.resize(image,(self.width,self.height),interpolation=self.inter)
|