import cv2 as cv
import numpy as np
def video_demo():
capture = cv.VideoCapture(0)
''' cv.VideoCapture(0)用于从视频文件或摄像机捕获视频的类'''
while(True) :
ret, frame = capture.read()
frame = cv.flip(frame, 1)
'''翻转'''
cv.imshow("video", frame)
c = cv.waitKey(50)
if c == 27:
break
def get_img_info(image):
print(type(image))
print(image.shape)
'''显示各种数值'''
print(image.size)
print(image.dtype)
'''通道'''
pixe_data = np.array(image)
print(pixe_data)
src = cv.imread('D:\\tu\\1.jpg')
'''
imread函数从文件中加载图像并返回该图像。如果该图像不能被读取(由于文件丢失、权限不正确、不支持或非法的格式等原因),该函数返回一个空的矩阵(Mat中的data项为NULL)。现在已经支持一下的文件格式:
Windows bitmaps - *.bmp, *.dib (always supported)
JPEG files - *.jpeg, *.jpg, *.jpe (see the Notes section)
JPEG 2000 files - *.jp2 (see the Notes section)
Portable Network Graphics - *.png (see the Notes section)
WebP - *.webp (see the Notes section)
Portable image format - *.pbm, *.pgm, *.ppm (always supported)
Sun rasters - *.sr, *.ras (always supported)
TIFF files - *.tiff, *.tif (see the Notes section)
'''
cv.namedWindow('input_image', cv.WINDOW_AUTOSIZE)
cv.imshow('input_image', src)
'''在窗口中显示图像'''
get_img_info(src)
cv.imwrite("D:\\tu\\2.jpg", src)
''' 这是图片的保存'''
#video_demo()
cv.waitKey(0)
'''如果不添最后一句,在IDLE中执行窗口直接无响应。在命令行中执行的话,则是一闪而过。'''
cv.destroyAllWindows()
'清除缓存'
''' 代码的目的:实现图片的输出和视频的输出和图片的保存 '''
'''时间:2019年1月10日19:15:06'''
图片的保存: