Skip to main content

Network camera image retrieval and archiving.

Project description

CAM2 Image Archiver

image

Citation

If you use this software, please include the following statement in acknowledgments

"The image archiving program is provided by the CAM2 (Continuous Analysis of Many CAMeras) project at Purdue University."

What is this repository for?

In particular, "You agree not to use the Platform to determine the identity of any specific individuals contained in any video or video stream."

  • Software licensed under Apache license. See LICENSE.txt for details.

  • The lead investigator is Dr. Yung-Hsiang Lu, yunglu@purdue.edu. Please send your questions, comments, or suggestions to him.

Motivation

Thousands of network cameras are connected to the Internet and provide real-time visual data (image or video). Many network cameras require no password and anyone connected to the Internet can retrieve the data,i.e., the data is publicly available. This program considers only publicly available camera data.

Even though the data is publicly available to anyone interested seeing, there are several problems. First, there is no central repository where network cameras must register. Thus, significant efforts must be taken to find various sources of data. Second, different brands of network cameras need different methods to retrieve the data. The cameas may also provide different data formats: some provide individual JPEG images; some provide motion JPEG (MJPEG) video; some others provide H.264 video.

Many organizations (such as departments of transportation) aggregate streams of multiple cameras and put these streams on web sites. However, these web sites have different formats and styles. Some web sites use simple HTML; some use CSS; some use Javascript. Some web sites have fixed URLs for different cameras. Some web site have dynamically generated URLs reflecting the time (thus, the URLs are always changing).

To solve these problems, researchers at Purdue University are developing the software to retrieve data from heterogeneous sources.

This software requires a database that stores cameras' information (how to retrieve the data). The repository contains some examples of entries in a database (using MySQL).

Documentation

Full documentation can be found at https://purduecam2project.github.io/CAM2ImageArchiver/index.html

Prerequisites

sudo apt-get install libopencv-dev python-opencv
  • Install MySQLdb to access the MySQL database from Python:
sudo apt-get install python-mysqldb

Database Setup

  • Create an empty MySQL database using the following MySQL command:
CREATE DATABASE cam2;
  • Build the database using the provided file and the following Linux command:
mysql -u root -p cam2 < sample_database.sql
  • Modify the database credentials in the archiver.py module:
DB_SERVER = 'localhost'
DB_USER_NAME = 'root'
DB_PASSWORD = ''
DB_NAME = 'cameras'

Files

  • CAM2ImageArchiver.py is the main Python module. It archives images from a single camera.
  • camera.py provides classes to communicate with different types of cameras: IP cameras, non-IP cameras, and stream cameras.
  • StreamParser.py is used by camera.py to parse JPEG and MJPEG streams.
  • error.py contains custom Python Exceptions.
  • CamerHandler.py splits the retrieval job into threads for parallel processing.

Usage

Example usage can be found in the documentation.

This program downloads image snapshots from 2 sources

(1) A given URL address

(2) A camera ID in the MySQL database * MySQL database must be available on host computer.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

CAM2ImageArchiver-2.0.3.tar.gz (11.7 kB view hashes)

Uploaded Source

Built Distribution

CAM2ImageArchiver-2.0.3-py3-none-any.whl (15.8 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page