美文网首页
22. opencv入门与图像读写

22. opencv入门与图像读写

作者: 十里江城 | 来源:发表于2019-11-12 09:13 被阅读0次
import tensorflow as tf
import cv2

print(tf.Session().run(tf.constant('helllo world!')))
print('hello, opencv!')

img = cv2.imread('1.jpg', 1)
cv2.imshow('src', img)
# 压缩存储
cv2.imwrite('test_new.jpg', img)
# 程序暂停
cv2.waitKey(0)

读图如下,并生成test_new.jpg的新图片:


image.png

相关文章

网友评论

      本文标题:22. opencv入门与图像读写

      本文链接:https://www.haomeiwen.com/subject/cukfictx.html