speed-camera

speed-camera

基于计算机视觉的开源运动目标速度测量系统

speed-camera是一个基于Python和OpenCV的开源运动目标速度测量系统。它支持树莓派、Windows和Unix平台,兼容多种摄像头,可自动检测和跟踪画面中最大移动物体并计算速度。系统提供灵活配置、数据记录和Web界面,适用于交通监控等场景。此外还集成了数据分析、图表生成等管理工具,方便用户进行后续处理。

Speed Camera物体运动追踪树莓派OpenCVPythonGithub开源项目

SPEED CAMERA - Object Motion Tracker Mentioned in Awesome <INSERT LIST NAME>

RPI, Unix and Windows Speed Camera Using python, openCV, RPI camera module, USB Cam or IP Cam

For Details See Program Features, Wiki Instructions and YouTube Videos.

Note re Bullseye:

Speed-cam.py ver 11.26 and greater will now run under Raspberry Pi OS Bullseye or later with a pi camera module as well as usbcam and IP/RTSP cameras. For picamera support Run sudo raspi-config, Interface Options, then enable/disable Legacy Camera option and reboot.

RPI Quick curl Install or Upgrade

IMPORTANT - A raspbian sudo apt-get update and sudo apt-get upgrade will NOT be performed as part of
speed-install.sh so it is highly recommended you run these prior to install to ensure your system is up-to-date.

Step 1

Press GitHub copy icon on right side of code box below.
or With mouse left button highlight curl command in code box below. Right click mouse in highlighted area and select Copy.

curl -L https://raw.github.com/pageauc/speed-camera/master/speed-install.sh | bash

Step 2

On RPI putty SSH or terminal session right click, select paste then Enter to download and run script.

This will download and run the speed-install.sh script. If running under python3 you will need opencv3 installed if not installed. If you need to compile openCV see my Github Repo at menu driven compile opencv3 from source project

Ver 13.00 Notes

Version 13.05 is a major speed camera revision. Camera thread code is now handled by a strmcam.py module. config.py variable names have changed so you will need to backup and cp config.py.new config.py (see below for details)
IMPORTANT : All settings are in config.py. You can delete configcam.py if it exists, once you upgrade to ver 13.05 or greater. plugins now work. You can customize plugin files to suit you needs or create your own. If you are upgrading you should delete, move old plugins so new ones will be downloaded during UPGRADE. Please post GitHub issue if you find a bug or problem. Claude

IMPORTANT speed-cam.py ver 8.x or greater Requires Updated config.py and plugins.

cd ~/speed-camera
cp config.py config.py.bak
cp config.py.new config.py

To replace plugins rename (or delete) plugins folder per below

cd ~/speed-camera
mv plugins pluginsold   # renames plugins folder
rm -r plugins           # deletes plugins folder

Then run menubox.sh UPGRADE menu pick.

Mac or Windows Systems

See Windows 10/11 or Apple Mac Docker Install Quick Start
or Windows or Unix Distro Installs without Docker

Program Description

This is a raspberry pi, Windows, Unix Distro computer openCV object speed camera demo program. It is written in python and uses openCV to detect and track the x,y coordinates of the largest moving object in the camera view above a minimum pixel area.

User variables are stored in the config.py file. Motion detection is restricted between MO_CROP_Y_UPPER, MO_CROP_Y_LOWER, MO_CROP_X_LEFT, MO_CROP_X_RIGHT variables (road or area of interest). MO_CROP_AUTO_ON = True overrides manual settings and will Auto calculate a rough crop area based on image size. Motion Tracking is controlled by the MO_TRACK_EVENT_COUNT variable in config.py. This sets the number of track events and the track length in pixels. This may need to be tuned for camera view, cpu speed, etc. Speed is calculated based on CAL_OBJ_PX_ and CAL_OBJ_MM_ variables for L2R and R2L motion direction. A video stream frame image will be captured and saved in media/images dated subfolders (optional) per variable IM_SUBDIR_MAX_FILES = 2000 For variable settings details see config.py file.

If LOG_DATA_TO_CSV = True then a speed-cam.csv file will be created/updated with event data stored in CSV (Comma Separated Values) format. This can be imported into a spreadsheet, database, Etc program for further processing. Release 8.9 adds a sqlite3 database to store speed data. Default is data/speed_cam.db with data in the speed table. Database setting can be managed from config.py. Database is automatically created from config.py settings. For more details see How to Manage Sqlite3 Database

Admin, Reports, Graphs and Utilities scripts

  • menubox.sh script is a whiptail menu system to allow easier management of program settings and operation.
  • run.sh This bash script uses supervisorctl to manage start, stop, status of speed-cam.py and webserver.py. Configured to autostart eg due to interruption of RTSP stream. See conf files in supervisor folder for details. Note: you must run ./run.sh install to initialize symbolic links to /etc/supervisor/conf.d folder. Stop running any speed-cam and/or websever processes before running ./run.sh start
  • webserver.py Allows viewing images and/or data from a web browser (see config.py for webserver settings)
  • rclone Manage settings and setup for optional remote file sync to a remote storage service like google drive, DropBox and many others.
  • watch-app.sh for administration of settings from a remote storage service. Plus application monitoring.
  • sql-make-graph-count-totals.py Query sqlite database and Generate one or more matplotlib graph images and save to media/graphs folder. Graphs display counts by hour, day or month for specfied previous days and speed over. Multiple reports can be managed from the config.py GRAPH_RUN_LIST variable under matplotlib image settings section.
  • sql-make-graph-speed-ave.py Query sqlite database and Generate one or more matplotlib graph images and save to media/graphs folder. Graphs display Average Speed by hour, day or month for specfied previous days and speed over. Multiple reports can be managed from the config.py GRAPH_RUN_LIST variable under matplotlib image settings section.
  • sql-speed_gt.py Query sqlite database and Generate html formatted report with links to images and save to media/reports folder. Can accept parameters or will prompt user if run from console with no parameters
  • makehtml.py Creates html files that combine csv and image data for easier viewing from a web browser and saved to media/html folder.
  • speed-search.py allows searching for similar target object images using opencv template matching. Results save to media/search folder.
  • alpr-speed.py This is a demo that processes existing speed camera images with a front or back view of vehicle using OPENALPR License plate reader. Output is saved to media/alpr folder. For installation, Settings and Run details see ALPR Wiki Documentaion

Reference Links

Requirements

Raspberry Pi computer and a RPI camera module installed or USB Camera plugged in. Make sure hardware is tested and works. Most RPI models will work OK. A quad core RPI will greatly improve performance due to threading. A recent version of Raspbian operating system is Recommended.
or
MS Windows or Unix distro computer with a USB Web Camera plugged in and a recent version of python installed For Details See Wiki details.

It is recommended you upgrade to OpenCV version 3.x.x For Easy compile of opencv 3.4.2 from source See https://github.com/pageauc/opencv3-setup

Windows or Non RPI Unix Installs

For Windows or Unix computer platforms (non RPI or Debian) ensure you have the most up-to-date python version. For Download and Install python and Opencv

The latest python versions includes numpy and recent opencv version that is required to run this code. You will also need a USB web cam installed and working. To install this program access the GitHub project page at https://github.com/pageauc/speed-camera Select the green Clone or download button. The files will be cloned or zipped to a speed-camera folder. You can run the code from python IDLE application (recommended), GUI desktop or command prompt terminal window. Note bash .sh shell scripts will not work with windows unless special support for bash is installed for windows Eg http://win-bash.sourceforge.net/ http://www.cygwin.com/ Note: I have Not tested these.

Docker Install Quick Start

speed camera supports a docker installation on
Apple Macintosh per System requirements and Instructions
and
Microsoft Windows 10/11 64 bit with BIOS Virtualization enabled and Microsoft Windows Subsystem for Linux WSL 2 per System requirements and Instructions.

  1. Download and install Docker Desktop for your System
  2. Clone the GitHub Speed Camera repository using green Clone button (top right)
  3. Run docker-compose up from the directory you cloned the repo into.
  4. The Docker container will likely exit because it is using a default config.
  5. Edit the configuration file @ config/config.py
  6. Run docker-compose up per documentation
  7. Run docker build command locally to get a fresh image.

Raspberry pi Manual Install or Upgrade

From logged in RPI SSH session or console terminal perform the following. Allows you to review install code before running

cd ~
wget https://raw.github.com/pageauc/speed-camera/master/speed-install.sh
more speed-install.sh       # You can review code if you wish
chmod +x speed-install.sh
./speed-install.sh  # runs install script.

Run to view verbose logging

cd ~/speed-camera    
./speed-cam.py

See How to Run speed-cam.py wiki section

IMPORTANT Speed Camera will start in CALIBRATE_ON = True Mode.
Review settings in config.py file and edit variables with nano as required. You will need to perform a calibration to set the correct value for config.py CAL_OBJ_PX_ and CAL_OBJ_MM_ for L2R and R2L directions. The variables are based on the distance from camera to objects being measured for speed. See Calibration Procedure for more details.

The config.py motion tracking variable called track_counter = can be adjusted for your system and opencv version. Default is 5 but a quad core RPI3 and latest opencv version eg 3.4.2 can be 10-15 or possibly greater. This will require monitoring the verbose log messages in order to fine tune.

Run menubox.sh

cd ~/speed-camera
./menubox.sh

Admin speed-cam Easier using menubox.sh (Once calibrated and/or testing complete)
menubox main menu

View speed-cam data and trends from web browser per sample screen shots. These can be generated from Menubox.sh menu pick or by running scripts from console or via crontab schedule.

Speed Camera GRAPHS Folder Web Page
Speed Camera REPORTS Folder Web Page
Speed Camera HTML Folder Web Page

You can view recent or historical images directly from the speed web browser page. These are dynamically created and show up-to-date images. Press the web page refresh button to update display Speed Camera RECENT Folder Web Page
Speed Camera IMAGES Folder Web Page

Credits

Some of this code is based on a YouTube tutorial by Kyle Hounslow using C here https://www.youtube.com/watch?v=X6rPdRZzgjg

Thanks to Adrian Rosebrock jrosebr1 at http://www.pyimagesearch.com for the PiVideoStream Class code available on github at https://github.com/jrosebr1/imutils/blob/master/imutils/video/pivideostream.py

Have Fun
Claude Pageau
YouTube Channel https://www.youtube.com/user/pageaucp
GitHub Repo

编辑推荐精选

Trae

Trae

字节跳动发布的AI编程神器IDE

Trae是一种自适应的集成开发环境(IDE),通过自动化和多元协作改变开发流程。利用Trae,团队能够更快速、精确地编写和部署代码,从而提高编程效率和项目交付速度。Trae具备上下文感知和代码自动完成功能,是提升开发效率的理想工具。

AI工具TraeAI IDE协作生产力转型热门
蛙蛙写作

蛙蛙写作

AI小说写作助手,一站式润色、改写、扩写

蛙蛙写作—国内先进的AI写作平台,涵盖小说、学术、社交媒体等多场景。提供续写、改写、润色等功能,助力创作者高效优化写作流程。界面简洁,功能全面,适合各类写作者提升内容品质和工作效率。

AI辅助写作AI工具蛙蛙写作AI写作工具学术助手办公助手营销助手AI助手
问小白

问小白

全能AI智能助手,随时解答生活与工作的多样问题

问小白,由元石科技研发的AI智能助手,快速准确地解答各种生活和工作问题,包括但不限于搜索、规划和社交互动,帮助用户在日常生活中提高效率,轻松管理个人事务。

热门AI助手AI对话AI工具聊天机器人
Transly

Transly

实时语音翻译/同声传译工具

Transly是一个多场景的AI大语言模型驱动的同声传译、专业翻译助手,它拥有超精准的音频识别翻译能力,几乎零延迟的使用体验和支持多国语言可以让你带它走遍全球,无论你是留学生、商务人士、韩剧美剧爱好者,还是出国游玩、多国会议、跨国追星等等,都可以满足你所有需要同传的场景需求,线上线下通用,扫除语言障碍,让全世界的语言交流不再有国界。

讯飞智文

讯飞智文

一键生成PPT和Word,让学习生活更轻松

讯飞智文是一个利用 AI 技术的项目,能够帮助用户生成 PPT 以及各类文档。无论是商业领域的市场分析报告、年度目标制定,还是学生群体的职业生涯规划、实习避坑指南,亦或是活动策划、旅游攻略等内容,它都能提供支持,帮助用户精准表达,轻松呈现各种信息。

AI办公办公工具AI工具讯飞智文AI在线生成PPTAI撰写助手多语种文档生成AI自动配图热门
讯飞星火

讯飞星火

深度推理能力全新升级,全面对标OpenAI o1

科大讯飞的星火大模型,支持语言理解、知识问答和文本创作等多功能,适用于多种文件和业务场景,提升办公和日常生活的效率。讯飞星火是一个提供丰富智能服务的平台,涵盖科技资讯、图像创作、写作辅助、编程解答、科研文献解读等功能,能为不同需求的用户提供便捷高效的帮助,助力用户轻松获取信息、解决问题,满足多样化使用场景。

热门AI开发模型训练AI工具讯飞星火大模型智能问答内容创作多语种支持智慧生活
Spark-TTS

Spark-TTS

一种基于大语言模型的高效单流解耦语音令牌文本到语音合成模型

Spark-TTS 是一个基于 PyTorch 的开源文本到语音合成项目,由多个知名机构联合参与。该项目提供了高效的 LLM(大语言模型)驱动的语音合成方案,支持语音克隆和语音创建功能,可通过命令行界面(CLI)和 Web UI 两种方式使用。用户可以根据需求调整语音的性别、音高、速度等参数,生成高质量的语音。该项目适用于多种场景,如有声读物制作、智能语音助手开发等。

咔片PPT

咔片PPT

AI助力,做PPT更简单!

咔片是一款轻量化在线演示设计工具,借助 AI 技术,实现从内容生成到智能设计的一站式 PPT 制作服务。支持多种文档格式导入生成 PPT,提供海量模板、智能美化、素材替换等功能,适用于销售、教师、学生等各类人群,能高效制作出高品质 PPT,满足不同场景演示需求。

讯飞绘文

讯飞绘文

选题、配图、成文,一站式创作,让内容运营更高效

讯飞绘文,一个AI集成平台,支持写作、选题、配图、排版和发布。高效生成适用于各类媒体的定制内容,加速品牌传播,提升内容营销效果。

热门AI辅助写作AI工具讯飞绘文内容运营AI创作个性化文章多平台分发AI助手
材料星

材料星

专业的AI公文写作平台,公文写作神器

AI 材料星,专业的 AI 公文写作辅助平台,为体制内工作人员提供高效的公文写作解决方案。拥有海量公文文库、9 大核心 AI 功能,支持 30 + 文稿类型生成,助力快速完成领导讲话、工作总结、述职报告等材料,提升办公效率,是体制打工人的得力写作神器。

下拉加载更多