代码

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'''

图片的保存:

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值