Python中怎么用opencv进行采集图像
Admin 2022-07-25 群英技术资讯 844 次浏览
这篇文章主要介绍了Python中怎么用opencv进行采集图像相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇Python中怎么用opencv进行采集图像文章都会有所收获,下面我们一起来看看吧。写了个python opencv的小demo,可以通过键盘按下字母s进行采集图像。
“N” 新建文件夹 data/ 用来存储图像
“S” 开始采集图像,将采集到的图像放到 data/ 路径下
“Q” 退出窗口
'''
“N” 新建文件夹 data/ 用来存储图像
"S" 开始采集图像,将采集到的图像放到 data/ 路径下
“Q” 退出窗口
'''
import numpy as np # 数据处理的库 Numpy
import cv2 # 图像处理的库 OpenCv
import os # 读写文件
import shutil # 读写文件
from PIL import Image, ImageDraw, ImageFont
# # OpenCv 调用摄像头 / Use camera
cap = cv2.VideoCapture(0)
cap.set(cv2.CAP_PROP_FRAME_WIDTH,1920)
cap.set(cv2.CAP_PROP_FRAME_HEIGHT,1080)
'''
#功能函数,只是用来往图片中显示汉字
#示例 img = cv2ImgAddText(cv2.imread('img1.jpg'), "大家好,我是片天边的云彩", 10, 65, (0, 0, 139), 20)
参数说明:
img:OpenCV图片格式的图片
text:要写入的汉字
left:字符坐标x值
top:字符坐标y值
textColor:字体颜色
:textSize:字体大小
'''
def cv2ImgAddText(img, text, left, top, textColor=(0, 255, 0), textSize=20):
if (isinstance(img, np.ndarray)): # 判断是否OpenCV图片类型
img = Image.fromarray(cv2.cvtColor(img, cv2.COLOR_BGR2RGB))
# 创建一个可以在给定图像上绘图的对象
draw = ImageDraw.Draw(img)
# 字体的格式
fontStyle = ImageFont.truetype(
"font/simsun.ttc", textSize, encoding="utf-8")
# 绘制文本
draw.text((left, top), text, textColor, font=fontStyle)
# 转换回OpenCV格式
return cv2.cvtColor(np.asarray(img), cv2.COLOR_RGB2BGR)
# 存储图像的文件夹
current_dir = ""
# 保存 图像 的路径
path_photos_from_camera = "data/"
press_n_flag = 0
cnt_ss=0
while cap.isOpened():
flag, img_rd = cap.read()
#print(img_rd.shape)
kk = cv2.waitKey(2)
# 待会要写的字体 / Font to write
font = cv2.FONT_ITALIC
# 4. 按下 'n' 新建存储人脸的文件夹 / press 'n' to create the folders for saving faces
if kk == ord('N') or kk == ord('n'):
current_dir = path_photos_from_camera
#os.makedirs(current_dir)
if os.path.isdir(current_dir):
pass
else:
os.mkdir(current_dir)
print('\n')
print("新建的保存图像的文件夹 / Create folders: ", current_dir)
press_n_flag = 1 # 已经按下 'n' / have pressed 'n'
# 5. 按下 's' 保存摄像头中的图像到本地 / Press 's' to save image into local images
if kk == ord('S') or kk == ord('s'):
# 检查有没有先按'n'新建文件夹 / check if you have pressed 'n'
if press_n_flag:
cnt_ss += 1
cv2.imwrite(current_dir + "/img_" + str(cnt_ss) + ".jpg", img_rd)
print("写入本地 / Save into:", str(current_dir) + "/img_face_" + str(cnt_ss) + ".jpg")
else:
print("请在按 'S' 之前先按 'N' 来建文件夹 / Please press 'N' before 'S'")
# 添加说明 / Add some statements
#cv2.putText(img_rd, "Face Register", (20, 40), font, 1, (0, 255, 0), 1, cv2.LINE_AA)
img_rd = cv2ImgAddText(img_rd, "图片采集系统", 160, 25, (0, 255,0), 30)
#cv2.putText(img_rd, "N: Create face folder", (20, 350), font, 0.8, (0, 255, 0), 1, cv2.LINE_AA)
img_rd = cv2ImgAddText(img_rd, "N: 创建保存图像文件夹", 20, 350, (0, 255, 0), 20)
#cv2.putText(img_rd, "S: Save current face", (20, 400), font, 0.8, (0, 255, 0), 1, cv2.LINE_AA)
img_rd = cv2ImgAddText(img_rd, "S: 保存当前图片", 20, 400, (0, 255, 0), 20)
#cv2.putText(img_rd, "Q: Quit", (20, 450), font, 0.8, (0, 0, 0), 1, cv2.LINE_AA)
img_rd = cv2ImgAddText(img_rd, "Q: 退出", 20, 450, (0, 255, 0), 20)
# 6. 按下 'Q' 键退出 / Press 'q' to exit
if kk == ord('Q') or kk == ord('q'):
break
# 如果需要摄像头窗口大小可调 / Uncomment this line if you want the camera window is resizeable
cv2.namedWindow("camera", 0)
cv2.imshow("camera", img_rd)
# 释放摄像头 / Release camera and destroy all windows
cap.release()
cv2.destroyAllWindows()

windows安装
pip install pillow
tx2/linux/…
sudo apt-get install python3-pillow
/*****************************************************
2021.5.18:按键采集图像
******************************************************/
#include "opencv2/core/core.hpp"
#include "opencv2/imgproc/imgproc.hpp"
#include "opencv2/calib3d/calib3d.hpp"
#include "opencv2/highgui/highgui.hpp"
#include <iostream>
#include <fstream>
using namespace cv;
using namespace std;
#define SRC_WIDTH 1920
#define SRC_HEIGHT 1080
int main()
{
//测试视频
VideoCapture capture;
capture.open(1);
//capture.open("v4l2src device=/dev/video4 ! video/x-raw,width=1920,height=1020,framerate=30/1 ! videoconvert ! appsink");
if (!capture.isOpened())
{
printf("文件打开失败");
}
capture.set(CAP_PROP_FRAME_WIDTH, SRC_WIDTH); //设置宽度
capture.set(CAP_PROP_FRAME_HEIGHT, SRC_HEIGHT); //设置长度
Mat frame;
int n = 0;
char* cstr = new char[120];
while (true)
{
capture >> frame;
if (frame.data == NULL)
{
printf("Image is empty\n");
//writer.write(frame);
break;
//continue;
}
char kk=waitKey(2);
if (kk == 'S' || kk == 's')
{
sprintf(cstr, "%s%d%s", "caliberation/", n++, ".jpg");
imwrite(cstr, frame);
printf("保存了图片\n");
}
namedWindow("111", 0);//参数为零,则可以自由拖动
imshow("111", frame);
waitKey(2);
}
return 0;
}
效果图

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:mmqy2019@163.com进行举报,并提供相关证据,查实之后,将立刻删除涉嫌侵权内容。
猜你喜欢
python中in是什么意思?in在python中是成员运算符,如果在指定的序列中找到值返回 True,否则返回 False。
本文总结了如何获得SSL证书并给Django项目配置HTTPS,建议先收藏再阅读,将来有一天你很可能会用到它。
python怎样写一个自幂数?首先,自幂数是指一个 n 位数,它的每个位上的数字的 n 次幂之和等于它本身。下面给大家分享的是python实现自幂数的代码,感兴趣的朋友可以参考。
这篇文章主要为大家详细介绍了常见的一些JS加密,并记录了JS和Python的实现方式,主要有base64编码伪加密、MD5、SHAI等,需要的可以参考一下
这篇文章给大家分享的是Python的flask框架中转换器的使用,下文介绍了默认转换器和自定义转换器的使用,对大家会有一定的参考价值,有需要的朋友可以了解看看,接下来就跟随小编一起学习一下吧。
成为群英会员,开启智能安全云计算之旅
立即注册Copyright © QY Network Company Ltd. All Rights Reserved. 2003-2020 群英 版权所有
增值电信经营许可证 : B1.B2-20140078 粤ICP备09006778号 域名注册商资质 粤 D3.1-20240008