PYTHON三种读取存入图像方法 VideoCapture读取视频两种方法 C++与PYTHON截图和缩放方法 waitKey Sleep sleep 图片文字putText

本文主要是介绍PYTHON三种读取存入图像方法 VideoCapture读取视频两种方法 C++与PYTHON截图和缩放方法 waitKey Sleep sleep 图片文字putText,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

PYTHON三种方法

方法一、cv2

import cv2
filename=r’D:\Work\ILSVRC\val_3.jpeg’
im1=cv2.imread(filename) #读文件BGR格式
im1 = cv2.resize(im1,(400,400)) #默认双线性插值
#cv2.imshow(‘cv2’,im1) #显示图像, 在现在的petalinux生成的系统中和vitis ai的镜像中均不能使用cv2.imshow
#cv2.waitKey(0)

Syntax: cv2.imread(path, flag)
Parameters:
path: A string representing the path of the image to be read.
flag: It specifies the way in which image should be read. It’s default value is cv2.IMREAD_COLOR
Return Value: This method returns an image that is loaded from the specified file.

cv2.IMREAD_COLOR: It specifies to load a color image. Any transparency of image will be neglected. It is the default flag. Alternatively, we can pass integer value 1 for this flag.
cv2.IMREAD_GRAYSCALE: It specifies to load an image in grayscale mode. Alternatively, we can pass integer value 0 for this flag.
cv2.IMREAD_UNCHANGED: It specifies to load an image as such including alpha channel. Alternatively, we can pass integer value -1 for this flag.

cv::rectangle
C++
void cv::rectangle (InputOutputArray img, Point pt1, Point pt2, const Scalar &color, int thickness=1, int lineType=LINE_8, int shift=0)
void cv::rectangle (InputOutputArray img, Rect rec, const Scalar &color, int thickness=1, int lineType=LINE_8, int shift=0)

Python
img = cv.rectangle(img, pt1, pt2, color[, thickness[, lineType[, shift]]])
img = cv.rectangle(img, rec, color[, thickness[, lineType[, shift]]])

方法二、matplotlib plt

import matplotlib
import matplotlib.pyplot as plt
import matplotlib.pyplot as plt
img2 = matplotlib.image.imread(pr)  #RGB格式
#cv2的BGR格式
plt.subplot(121)
plt.imshow(im2)
plt.show() #此命令才能显示

若是cv2.imread读取文件,plt显示需要转换
im1 = im1[:,:,::-1]  #BGR -> RGB

方法三、PIL

from PIL import Image
#import numpy as np
im2 = Image.open(filename) #不是矩阵形式
im2.show()
#arr = np.array(im2)
#print(arr.shape)
#print(arr.dtype)
#矩阵再转为图像
im3 = Image.fromarray(arr)
im3.save(‘01.png’)

OpenCV Show Image cvShowImage() 使用方法

新版的OpenCV在所有的函数和类前都加上了cv或Cv,这样很好的避免了区域污染(namespace pollution),而且不用在前面加‘cv::’,非常的使用。像之前的imshow()函数被现在的cvShowImage()所替代,现如今在OpenCV中显示一张图片可用如下代码:

C API:

IplImage *img = cvLoadImage(“Input.jpg”);
cvNamedWindow(“Image:”,1);
cvShowImage(“Image:”,img);
cvWaitKey();
cvDestroyWindow(“Image:”);
cvReleaseImage(&img);

C++:

cv::Mat image = cv::imread(“img.jpg”);
cv::namedWindow( “Display window”, cv::WINDOW_AUTOSIZE );
cv::imshow( “Display window”, image );
cv::waitKey(0);
cv::destroyWindow(“Display window”);
image.release();

C++版本截图实现

#include <opencv2/opencv.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/core/core.hpp>
#include
using namespace std;
using namespace cv;
cv::Mat img;
cv::Rect m_select;
int main()
{
img = cv::imread(“F://Visual Studio 2015//ROItest01//ROItest01//01.jpg”);
cv::imshow(“原图”, img);
m_select = Rect(174,230,111,217);
Mat ROI = img(m_select);
cv::imshow(“剪裁图”, ROI);
waitKey(0);
return 0;
}

PYTHON版本截图实现

def central_crop(image, crop_height, crop_width):
image_height = image.shape[0]
image_width = image.shape[1]
offset_height = (image_height - crop_height) // 2
offset_width = (image_width - crop_width) // 2
return image[offset_height:offset_height + crop_height, offset_width:
offset_width + crop_width, :]

Python缩放图像

    cv2.namedWindow("Display", cv2.WINDOW_AUTOSIZE)cv2.moveWindow("Display",50,50)height, width = img.shape[:2]  size = (int(width*2), int(height*2))  image_result = cv2.resize(image_result, size, interpolation=cv2.INTER_LINEAR)  cv2.imshow("Display", image_result)if cv2.waitKey(2000)==27: break       

waitKey()函数

1.1 waitKey()–这个函数是在一个给定的时间内(单位ms)等待用户按键触发;如果用户没有按下 键,则接续等待(循环)
1.2 如下所示: while(1){ if(waitKey(100)==27)break; } 在这个程序中,我们告诉OpenCv等待用户触发事件,等待时间为100ms,如果在这个时间段内, 用户按下ESC(ASCII码为27),则跳出循环,否则,则继续循环

Sleep sleep

#include <syswait.h>
usleep(n) //n微秒
Sleep(n)//n毫秒
sleep(n)//n秒

VideoCapture

1、cap = cv2.VideoCapture(0)
VideoCapture()中参数是0,表示打开笔记本的内置摄像头,参数是视频文件路径则打开视频,如cap = cv2.VideoCapture(“…/test.avi”)
2、ret,frame = cap.read()
cap.read()按帧读取视频,ret,frame是获cap.read()方法的两个返回值。其中ret是布尔值,如果读取帧是正确的则返回True,如果文件读取到结尾,它的返回值就为False。

C++

#include<opencv.hpp>
using namespace cv;
int main() {VideoCapture capture(0);while (1) {Mat frame;capture >> frame;imshow("摄像头捕捉", frame);waitKey(1);}
}
    Python有两种编程方式从摄像头提取视频流, video.capture(gstreamer pipeline), video.capture(index), 前者更灵活、更快、较复杂的调用方式,后者更简单、更容易实现的调用方式。video.capture(gstreamer pipeline),

video.capture(gstreamer pipeline)

# define the image
inputId = 'mediasrcbin media-device=/dev/media0 v4l2src0::io-mode=dmabuf v4l2src0::stride-align=256  ! video/x-raw, width=256, height=256, format=NV12, framerate=30/1 ! 
videoconvert! appsink’
# capture a video from camera
cam = cv2.VideoCapture(inputId, cv2.CAP_GSTREAMER)
# capture image from camera 
ret,frame = cam.read()

video.capture(gstreamer pipeline)

# capture a video from camera
cam = cv2.VideoCapture(1)    
# cam.set(3, width)
# cam.set(4, height)    cam.set(cv2.CAP_PROP_FRAME_WIDTH, 640)    cam.set(cv2.CAP_PROP_FRAME_HEIGHT, 480)
# capture image from camera 
ret,frame = cam.read() 
# resize the image
frame = cv2.resize(frame, (256, 256), interpolation=cv2.INTER_LINEAR)

图片文字

texts = [“wear mask”, “wear incorrectly”, “no mask”]
for i, bbox in enumerate(bboxes):
coor = np.array(bbox[:4], dtype=np.int32)
fontScale = 0.5
score = bbox[4]
class_ind = int(bbox[5])
#print(f"class_ind = {class_ind}")
bbox_color = colors[class_ind]
bbox_text = texts[class_ind]
#bbox_thick = int(0.6 * (image_h + image_w) / 600)
bbox_thick = 2
c1, c2 = (coor[0], coor[1]), (coor[2], coor[3])
cv2.rectangle(image, c1, c2, bbox_color, bbox_thick)
# 图片 添加的文字 位置 字体 字体大小 字体颜色 字体粗细
cv2.putText(image, bbox_text, (coor[0], coor[1]-10), cv2.FONT_HERSHEY_SIMPLEX, 0.75, bbox_color, 2)

这篇关于PYTHON三种读取存入图像方法 VideoCapture读取视频两种方法 C++与PYTHON截图和缩放方法 waitKey Sleep sleep 图片文字putText的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/997783

相关文章

Window Server2016加入AD域的方法步骤

《WindowServer2016加入AD域的方法步骤》:本文主要介绍WindowServer2016加入AD域的方法步骤,包括配置DNS、检测ping通、更改计算机域、输入账号密码、重启服务... 目录一、 准备条件二、配置ServerB加入ServerA的AD域(test.ly)三、查看加入AD域后的变

Window Server2016 AD域的创建的方法步骤

《WindowServer2016AD域的创建的方法步骤》本文主要介绍了WindowServer2016AD域的创建的方法步骤,文中通过图文介绍的非常详细,对大家的学习或者工作具有一定的参考学习价... 目录一、准备条件二、在ServerA服务器中常见AD域管理器:三、创建AD域,域地址为“test.ly”

NFS实现多服务器文件的共享的方法步骤

《NFS实现多服务器文件的共享的方法步骤》NFS允许网络中的计算机之间共享资源,客户端可以透明地读写远端NFS服务器上的文件,本文就来介绍一下NFS实现多服务器文件的共享的方法步骤,感兴趣的可以了解一... 目录一、简介二、部署1、准备1、服务端和客户端:安装nfs-utils2、服务端:创建共享目录3、服

Python MySQL如何通过Binlog获取变更记录恢复数据

《PythonMySQL如何通过Binlog获取变更记录恢复数据》本文介绍了如何使用Python和pymysqlreplication库通过MySQL的二进制日志(Binlog)获取数据库的变更记录... 目录python mysql通过Binlog获取变更记录恢复数据1.安装pymysqlreplicat

利用Python编写一个简单的聊天机器人

《利用Python编写一个简单的聊天机器人》这篇文章主要为大家详细介绍了如何利用Python编写一个简单的聊天机器人,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 使用 python 编写一个简单的聊天机器人可以从最基础的逻辑开始,然后逐步加入更复杂的功能。这里我们将先实现一个简单的

Java 字符数组转字符串的常用方法

《Java字符数组转字符串的常用方法》文章总结了在Java中将字符数组转换为字符串的几种常用方法,包括使用String构造函数、String.valueOf()方法、StringBuilder以及A... 目录1. 使用String构造函数1.1 基本转换方法1.2 注意事项2. 使用String.valu

基于Python开发电脑定时关机工具

《基于Python开发电脑定时关机工具》这篇文章主要为大家详细介绍了如何基于Python开发一个电脑定时关机工具,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录1. 简介2. 运行效果3. 相关源码1. 简介这个程序就像一个“忠实的管家”,帮你按时关掉电脑,而且全程不需要你多做

Python实现高效地读写大型文件

《Python实现高效地读写大型文件》Python如何读写的是大型文件,有没有什么方法来提高效率呢,这篇文章就来和大家聊聊如何在Python中高效地读写大型文件,需要的可以了解下... 目录一、逐行读取大型文件二、分块读取大型文件三、使用 mmap 模块进行内存映射文件操作(适用于大文件)四、使用 pand

python实现pdf转word和excel的示例代码

《python实现pdf转word和excel的示例代码》本文主要介绍了python实现pdf转word和excel的示例代码,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价... 目录一、引言二、python编程1,PDF转Word2,PDF转Excel三、前端页面效果展示总结一

Python xmltodict实现简化XML数据处理

《Pythonxmltodict实现简化XML数据处理》Python社区为提供了xmltodict库,它专为简化XML与Python数据结构的转换而设计,本文主要来为大家介绍一下如何使用xmltod... 目录一、引言二、XMLtodict介绍设计理念适用场景三、功能参数与属性1、parse函数2、unpa