小言_互联网的博客

Python实现调用摄像头并拍照发邮箱

391人阅读  评论(0)

项目地址:

https://github.com/flygaga/camera

 

思路

1、通过opencv调用摄像头拍照保存图像到本地

2、用email库构造邮件内容,保存图片以附件形式插入邮件内容

3、用smtplib库发送邮件到指定邮箱

4、生成 .exe 文件

5、设置开机自启(每次开机自动运行,启动相机,拍下照片发送到指定邮箱)

 

导入工具


  
  1. import cv2 # pip install opencv-python -i {指定镜像源} 控制摄像头
  2. from email.mime.image imort MIMEImage #用来构造邮件内容的库
  3. from email.mime.text import MIMEText
  4. from email.mime.multipart import MIMEMultipart
  5. import smtplib #发送邮件

编译环境

系统:Windows10

软件:Miniconda3-latest-Windows-x86_64

模块:opencv-python smtplib numpy email pyinstaller

 

生成exe文件

pyinstaller -F -w path/camera.py

 

设置开机自启

1.右击exe 创建快捷方式

2.win+r 输入以下命令 shell:startup 点击确定打开一个文件夹

3.将生成的快捷文件复制到打开的文件中,下次开机exe程序就会自动启动

python代码实现调用摄像头,并拍照发送邮件

 

主要代码

camera.py


  
  1. import cv2
  2. from email.mime.image import MIMEImage
  3. from email.mime.text import MIMEText
  4. from email.mime.multipart import MIMEMultipart
  5. # import smtplib #发送邮件
  6. import smtplib
  7. from smtplib import SMTP
  8. import time
  9. host = 'smtp.qq.com' #邮箱的接口
  10. port = '25' #端口
  11. pwd = 'neelrhh88******ch' #授权码
  12. sender = '邮箱地址' #发送方
  13. receiver = "邮箱地址" #接收方
  14. path = r'./' #图像保存路径
  15. images = time.strftime( "%Y-%m-%d-%H_%M_%S",time.localtime())
  16. def GetPicture():
  17. """
  18. 拍照保存图像
  19. """
  20. #创建一个窗口camera
  21. cv2.namedWindow( 'camera', 1) #'1' 表示窗口不能随意拖动
  22. #调用摄像头
  23. cap = cv2.VideoCapture( 0)
  24. ret,frame = cap.read() #读取摄像头内容
  25. cv2.imwrite(path+images+ ".jpg",frame) #保存到磁盘
  26. #释放摄像头
  27. cap.release()
  28. #关闭窗口
  29. cv2.destroyWindow( "camera")
  30. def SetMsg():
  31. '''
  32. 设置邮件格式
  33. :return:
  34. '''
  35. msg = MIMEMultipart( 'mixed')
  36. #标题
  37. msg[ 'Subject'] = '电脑已开机'
  38. msg[ 'From'] = sender
  39. msg[ 'To'] = receiver
  40. #邮件正文内容
  41. text = '电脑已开机,请查收图片确认是否为本人'
  42. text_plain = MIMEText(text, 'plain', 'utf-8') #正文转码
  43. msg.attach(text_plain)
  44. #图片
  45. SendImageFile = open(path+images+ '.jpg', 'rb').read()
  46. image = MIMEImage(SendImageFile)
  47. image[ 'Content-Disposition'] = 'attachment;filename="people.jpg"'
  48. msg.attach(image)
  49. return msg.as_string()
  50. def SendEmail(msg):
  51. '''
  52. 发送邮件
  53. :msg :邮件内容
  54. :return
  55. '''
  56. try:
  57. smtp = smtplib.SMTP_SSL(host,port) #创建一个邮件服务
  58. # smtp.connect(host)
  59. smtp.login(sender,pwd)
  60. smtp.sendmail(sender,receiver,msg)
  61. time.sleep( 3)
  62. smtp.quit() #退出邮件服务
  63. except smtplib.SMTPException as e:
  64. print( "e")
  65. #实现开机自启动
  66. #打包实现启动 例:exe
  67. if __name__ == '__main__':
  68. # 1.拍照保存
  69. GetPicture()
  70. # 2. 设置邮件格式
  71. msg = SetMsg()
  72. # 3. 发送邮件
  73. SendEmail(msg)

以上就是python实现调用摄像头并拍照发邮箱的详细内容啦

感谢各位大佬的观看,小编这边准备了一个既能学习交流的也能接单的qq群聊 :222020937【代码也准备好了】 欢迎加入《广告勿加,不然你做啥啥不赚钱》最后祝大家技术能力能越来越好收入越来越多


转载:https://blog.csdn.net/A_7878520/article/details/117421132
查看评论
* 以上用户言论只代表其个人观点,不代表本网站的观点或立场