图像label与图像融合

from skimage.measure import  find_contours,regionprops#导入包
import cv2
import  matplotlib.pyplot as plt
num=45
syn='3_3'
img1 = cv2.imread('C:/Users/lenovo/Desktop/show/abba/testresult/'+str(num)+'_x.tif',2)#读取图像
imggt = cv2.imread('C:/Users/lenovo/Desktop/show/abba/testresult/'+str(num)+'_gtx.tif',2)#读取标签
coungt=find_contours(imggt,level=0.5)#计算标签轮廓
countgt=coungt[0]
plt.imshow(img1,cmap='gray')

plt.plot(countgt[:,1],countgt[:,0],'r')#画点
fig = plt.gcf()#fig的一些基础设置
fig.set_size_inches(2.88,2.88)
plt.gca().xaxis.set_major_locator(plt.NullLocator())
plt.gca().yaxis.set_major_locator(plt.NullLocator())
plt.subplots_adjust(top = 1, bottom = 0, right = 1, left = 0, hspace = 0, wspace = 0)
plt.margins(0,0)
plt.savefig('C:/Users/lenovo/Desktop/show/'+str(num)+'_x.jpg', format='jpg', transparent=True, dpi=100, pad_inches = 0)#保存结果
plt.show()
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值