How to correct this error in bilinear resize

后端 未结 0 1851
时光取名叫无心
时光取名叫无心 2020-11-22 01:33
def bilinear_resize(image1, height, width):
  image = np.asarray(Image.open(image1))
  img_height, img_width = image.shape[:2]
  resized = np.empty([height, width])
         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题