项目pytorch-deeplab-xception为例,测试时怎么保存target、image:target.cpu().numpy()
一般性流程'''IPL转换为tensor_img=Image.open(os.path.join(self.img_dir,path)).convert('RGB')img=np.array(img).astype(np.float32).transpose((2,0,1))img=torch.from_numpy(img).float()img=img.cuda()tensor转换为IPLima