- 博客(10)
- 资源 (1)
- 收藏
- 关注
原创 解决 正在下载VS Code 服务器 问题
我使用的VS Code版本是1.93.1,点击帮助/关于即可看到VS Code版本信息。正在下载VS Code 服务器;设置 SSH 主机 192.xxxxx: (原因是VS Code的版本太新了,重新安装旧版的VS Code即可。登录VS Code官网,下载2022年的版本。) 正在初始化 VS Code 服务器。
2024-09-28 12:17:52 759
原创 pytorch_一个batch的tensor转化为图片查看
# img = image_batch[0].mul(255).byte()# img = img.cpu().numpy().transpose((1, 2, 0))# img = cv2.cvtColor(img, cv2.COLOR_BGR2RGB)# print("img",img)# cv2.imshow("12",img)# cv2.waitKey(0)# exit()
2022-04-16 15:51:16 3016
原创 python 同时以日期创建文件夹和txt文件
import osimport timedef mkdir_time_dir(): time_now = time.strftime("%Y-%m-%d-%H_%M", time.localtime()) path ="./vision/kvasir/{}".format(time_now) if not os.path.exists(path): os.makedirs(path) print("tensorboard dir mkdir s.
2022-04-15 21:26:53 440
原创 python以当前时间创建文件夹
import osimport timedef mkdir(path): folder = os.path.exists(path) if not folder: #判断是否存在文件夹如果不存在则创建为文件夹 os.makedirs(path) #makedirs 创建文件时如果路径不存在会创建这个路径 print ("--- new folder... ---") print ("--- OK ---") .
2022-04-14 18:51:39 3017 1
原创 批量修改文件夹图片名字
import osclass BatchRename(): def __init__(self): self.path = r'E:\datasets\EndoScene\ValidationDataset\aaa' def rename(self): filelist = os.listdir(self.path) print("filelist.sort():",filelist) filelist.sort().
2022-04-14 16:51:39 188
原创 医学图像分割模型预测保存图片不是二值图
问题:今天跑完模型代码分割出来的图片不是二值图,而是如下问题,蒙上了一层雾气一样,不是我想要的二值图错误代码:import cv2output=model(img)pred = torch.sigmoid(output)img = pred[0].mul(255).byte()img = img.cpu().numpy().transpose((1, 2, 0))img = cv2.cvtColor(img, cv2.COLOR_BGR2RGB)cv2.imwrite("./res.
2022-04-13 20:17:16 814 1
原创 Pytorch报错TypeError : __init__() takes 1 positional argument but 2 were given 原因及解决方法
import torchfrom module.layer import simple_decoder,segmentation_head#错误写法,未实例化直接调用class model(nn.Module): def __init__(self): super(model, self).__init__() def forward(self,x): x=segmentation_head(x) return x# 正确写法,.
2022-03-30 13:35:01 6434
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人