python图像相关

  • 保存图片:cv2.imwrite(“testyxz.jpg”, img)
  • plt.subplot(221) # 第一行的左图
    plt.subplot(222) # 第一行的右图
    plt.subplot(224) # 第二行的右图
    plt.subplot(212) # 第二整行
    plt.show()参考
  • 使用matplotlib显示图像色彩失真:读进来的是BGR格式以及【0~255】。所以只要将img转换为RGB格式显示即可
img = cv2.imread('lena.jpg')
img2 = img[:, :, ::-1]
  • 去掉坐标
  • 子图像显示标题
import matplotlib.pyplot as plt
figure, ax = plt.subplots()
#图表总标题
figure.suptitle('Title')
#子图表的标题
ax.set_title('Sub_Title')
  • 图片子标题无法显示解决方法
  • 子标题加在图像下方解决方法
  • 计算函数运行时间
# time start
t1 = cv2.getTickCount()
 
"""
代码段落
"""
# time end
t2 = cv2.getTickCount()
 
#计算执行秒数,利用getTickFrequency()获取时钟频率
t = (t2-t1)/cv2.getTickFrequency()
print t

你可能感兴趣的:(python)