search
HomeBackend DevelopmentPython Tutorialpython定时采集摄像头图像上传ftp服务器功能实现

首先是截图,从摄像头截取一幅图像:

复制代码 代码如下:

while 1:   #测试摄像头的存在
    try:
        cam = Device()
    except:
        print "no webcam found!"
        continue
    break

然后是把图像上传到ftp服务器:

复制代码 代码如下:

remote = ftplib.FTP('127.0.0.1') #登陆服务器
remote.login()
file = open('%s.jpg'%cur_time,'rb')   #用时间来命名图片
remote.storbinary('STOR %s.jpg'%cur_time,file) #上传图片
file.close()

当然了,最后把图片删除
下面是每隔一秒钟,把从摄像头采集的图片上传到本机ftp的程序:

复制代码 代码如下:

   
remote = ftplib.FTP('219.246.57.162')<br>remote.login()<br>while 1:<br>    try:<br>        remote.nlst("1.txt")<br>    except:<br>        print "not ready to start!"<br>        continue<br>    timex = time.localtime()<br>    cur_time = "%4d%02d%02d%02d%02d%02d"%(timex[0],timex[1],timex[2],timex[3],timex[4],timex[5])<br>    cam.saveSnapshot('%s.jpg'%cur_time)  <br>    #remote.dir()<br>    file = open('%s.jpg'%cur_time,'rb')<br>    remote.storbinary('STOR %s.jpg'%cur_time,file)<br>    file.close()<br>    os.system("del %s.jpg"%cur_time)<br>    #print "upload ok!"<br>    time.sleep(1)<br>remote.quit()








Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
ftp服务器地址如何查看ftp服务器地址如何查看Jan 29, 2024 pm 03:11 PM

查看FTP服务器地址的方法:1、在浏览器的地址栏中输入FTP服务器的域名或IP地址,然后按下回车键。如果能够成功连接到FTP服务器,则表明FTP服务器的地址是正确的;2、在命令行界面中输入“ftp”命令,然后输入“ftp”网站的域名或IP地址。如果连接成功,则表明FTP服务器的地址是正确的;3、在IP设置页面中,可以看到设备的IP地址,这就是设备的FTP服务器地址等等。

如何通过PHP在FTP服务器上监控文件的访问和修改如何通过PHP在FTP服务器上监控文件的访问和修改Jul 28, 2023 pm 08:01 PM

如何通过PHP在FTP服务器上监控文件的访问和修改随着互联网的快速发展,FTP(文件传输协议)作为一种常用的文件传输工具,经常用于将文件从本地上传到服务器或从服务器下载到本地。在实际应用中,监控FTP服务器上的文件访问和修改情况非常重要,特别是对于一些敏感文件。本文将介绍如何使用PHP编写代码来实现对FTP服务器上文件的访问和修改监控。首先,我们需要确保服务

ftp服务器怎么搭建ftp服务器怎么搭建Dec 12, 2023 am 10:37 AM

ftp服务器可以通过选择合适的FTP服务器软件、安装FTP服务器软件、配置FTP服务器软件、启动FTP服务器软件和测试FTP服务器的运行等步骤搭建。详细介绍:1、选择合适的FTP服务器软件,包括vsftpd、FileZilla Server、ProFTPD等;2、安装FTP服务器软件等等。

如何通过PHP在FTP服务器上压缩和解压缩文件如何通过PHP在FTP服务器上压缩和解压缩文件Jul 30, 2023 pm 03:15 PM

如何通过PHP在FTP服务器上压缩和解压缩文件简介:在开发和管理网站过程中,我们经常需要处理文件的压缩和解压缩操作。而如果网站的文件存储采用的是FTP服务器,如何在服务器上通过PHP实现文件的压缩和解压缩就成为了一个关键问题。本文将介绍如何通过PHP在FTP服务器上进行文件的压缩和解压缩操作,并提供相关的代码示例,以供参考。链接到FTP服务器在执行文件压缩和

ftp服务器如何用ftp服务器如何用Oct 13, 2023 pm 02:25 PM

ftp服务器用法:1、安装一个FTP服务器软件,例如FileZilla Server、vsftpd、ProFTPD等;2、安装完成后,需要设置FTP服务器的监听端口,设置FTP服务器的访问权限,包括允许哪些用户访问、允许哪些文件上传和下载等;3、创建FTP用户,FTP服务器允许创建多个用户,并为每个用户分配不同的权限;4、设置用户的登录权限,确保这些用户具有FTP访问权限即可。

在Linux操作系统上设置一个FTP服务器,请按照以下步骤进行在Linux操作系统上设置一个FTP服务器,请按照以下步骤进行Jan 26, 2024 pm 10:33 PM

要在Linux上搭建FTP服务器linux命令,您须要根据以下步骤操作:1.安装FTP服务器软件:您可以使用以下命令在Linux系统中安装FTP服务器软件:```sudoapt-getinstallvsftpd```2.配置FTP服务器:您须要编辑FTP服务器的配置文件来设置FTP服务器的配置选项。默认情况下linux安装ftp服务器,vsftpd.conf文件坐落/etc/vsftpd/目录下。您可以通过以下命令打开配置文件:```sudonano/etc/vsftpd.conf```在该文件

如何使用PHP监控FTP服务器的文件变化如何使用PHP监控FTP服务器的文件变化Aug 01, 2023 pm 09:46 PM

如何使用PHP监控FTP服务器的文件变化引言:FTP(文件传输协议)是一种常用的文件传输协议,广泛应用于文件的上传、下载和管理。当我们需要监控FTP服务器上的文件变化时,可以使用PHP来实现这个功能。本文将介绍如何使用PHP监控FTP服务器的文件变化,并提供代码示例供读者参考。第一部分:连接到FTP服务器首先,我们需要使用PHP的FTP函数与FTP服务器建立

如何通过PHP在FTP服务器中设置文件和目录权限如何通过PHP在FTP服务器中设置文件和目录权限Jul 30, 2023 am 08:15 AM

如何通过PHP在FTP服务器中设置文件和目录权限在开发网站或应用程序时,有时候我们需要通过FTP服务器来管理文件和目录的权限。通过PHP语言,我们可以轻松地实现对FTP服务器中文件和目录权限的设置。本文将介绍如何使用PHP来实现这一功能,并附上相关代码示例。首先,我们需要确保安装了PHP的环境,并且有一个可用的FTP服务器。接下来我们将使用PHP中的FTP扩

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment