Coder Social home page Coder Social logo

projet-p206's Introduction

Human Detection based on Thermal Imagery

Introduction

Object

This is the final year project at IMT Atlantique for students majored in computer systems and networks. The aim of the project is to detect human presence with thermal image captured from a thermal camera of an embedded linux system. Since thermal camera has less intrusion to privacy (thermal camera has no color information and it has low resolution) compared to commercial WebCams with high-resolution, we can develop services for elders and people with disabilities based on this project.

Hardware

Odroid C1

The hardware is composed of two parts, namely, an embedded linux system and an infrared camera, their hardware parameters are listed as follows

  • Embedded linux system

    • Odroid C1
    • Processor ARM + 1 GB RAM
  • Infrared camera

    • Lepton Flir
    • Resolution: 80 * 60 pixel

Getting Started

In order to run the Human Detection Application on your local machine for development and testing purposes, you can use recorded thermal imagery videos test.avi and test1.avi which are put at the sub-directory ./backgroundSubsctraction and modify the corresponing configuration in the web_server.py. For example, if your are going to use the video "./backgroundSubtraction/test.avi" for testing purpose, just add two arguments in initializing the IRCamera class, namely, test and file_name, as is shown below

@app.route('/video_feed')
def video_feed():
    return Response(gen(IRCamera(test=True, file_name="./backgroundSubtraction/test.avi")),
                    mimetype='multipart/x-mixed-replace; boundary=frame')

Then open a terminal and input the following command

FLASK_APP=web_server.py flask run

A HTTP server will run at http://127.0.0.1:5000/, open a web browser, you can see the video streaming of the recorded video with Human Detection Algorithm running above and generating white bounding boxes that indicate detected humans.

Video Streaming in Web Interface

When the video is finished, the web server will have an exception since in real case, the video streaming will never be finished

If you want to deployment the application in rather than test it on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

The development is under Python 2.7, so in order to run the application, you need to install the Python 2.7 environment.

For Anaconda users, here is an example of how to create a Python 2.7 virtual environment

conda create --clone py27 --name py27

Then enter the environment by the following command

source activate py27

Then under the Python 2.7 development environment, you need install the following packages

  • Flask==0.12.2
  • matplotlib==2.1.1
  • numpy==1.14.0
  • opencv-python==3.4.0.12
  • scikit-fuzzy==0.3.1
  • scipy==1.0.0
  • webencodings==0.5.1
  • Werkzeug==0.14.1

you can install these packages one by one by pip install package_name or you can simply run the following command in your terminal

cd ./projet-p206
pip install -r requirements.txt 

Potential problems: Flask import error with Anaconda

If you have multiple version of Python installed and you have already installed Flask for one of these environment, there is a great chance that you will have a Flask import error. To solve this problem you can either consider using virtualenvwrapper which helps with custom Pythons and modules or you can use conda uninstall flask to remove pre-installed flask package in other environments in order to let the flask installed at current environment visable to you.

Installing

To install the application in real environment, you need deploy the programs containing in ./ir_sensor to your embedded linux system with the Flir One Thermal Camera and running the web_server in your machine, it's easier for configuration if the embedded linux system and your machine is directly connected or at the same sub-network.

For information about how to connect the embedded linux system directly to your machine, you can follow the instructions in the Appendix

The installing manual is divided into the following two parts, the embedded linux system and your machine

Installing in the embedded linux system

Deploy the code containing in the ./ir_senosr file to the embedded linux system that has the infrared camera connected.

SSH to the system, and compile the project by the command make, then you will get an executable file named flir, if you have problems in compiling the file, you can try make clean then make

Installing in your machine

You don't need to compile anything in your machine, once you downloaded the project repository, you have all needed to run the application.

Running

As previously mentioned the application is divided into two parts. The application running at the embedded linux system collects thermal images 27 frame per second and then sends them to your machine by UDP packages via Socket, so you need to specify the IP address and Port number of your machine in order to receive these images. To run the part of application at the embedded linux system, you can use the command in the embedded linux system

./flir your_machine_ip_address your_machine_port_number

For example, if your machine's IP address is 192.168.0.100 and your machine's port number is 1234, the command should be as follows

./flir 192.168.0.100 1234

In your machine, you have two applications available to visualize these images and the detection result, either by running ir_server.py or web_server.py.

If you prefer to visualize the result in a web interface, you should use web_server.py. Before running this Python script, you can modify the socket configuration, namely, your machine's IP address and the port number you want to use to receive UDP packages from the embedded linux system, the default IP address and port number is set to be '192.168.0.100' and 1234. However, if you want to change it in order to fit your condition, you can modify the following line of code in the Python script irCamera.py

# Bind the socket to the port
server_address = ('192.168.0.100', 1234)

The web_server.py uses irCamera.py in to collect images sent from the embedded linux system, as previously mentioned, you can use recorded thermal imagery videos test.avi and test1.avi as input to run the web interface, but here, when input comes from the embedded linux system, you don't need any argument in initializing the IRCamera class, as is shown below

@app.route('/video_feed')
def video_feed():
    return Response(gen(IRCamera()),
                    mimetype='multipart/x-mixed-replace; boundary=frame')

then you can run the web server by the following command

FLASK_APP=web_server.py
flask run

The Application Revealed

This part will present the implementation detail of the application. The presentation is divided into two parts:

  • the algorithm used to make the human detection
  • the structure of the application

The Human Detection Algorithm

Basically, the algorithm is an implementation of the thermal image background subtraction algorithm described in Human Detection Based on the Generation of a Background Image and Fuzzy System by Using a Thermal Camera. Since the method described in this paper has the state-of-the-art performance of human presence detection with thermal imagery, this project choose to implement this algorithm as the core part for presence detection.

The method described in the paper has two main steps, namely, the Background Generation and the Human Detection. The overall procedure of the algorithm is shown below.

The general process of the algorithm

Credit: the image above is modified from Figure 1. overall Procedure of the proposed method from the paper mentioned above by Eun Som Jeon et al.

The demo of the implementation are shown below.

Background Generation

The demo below shows the first part of the algorithm, generating a background image.

  • The top left image shows the preliminary background image obtained by median value from the sequence of images
  • The top right image shows the binary image of extracted candidate human area
  • The bottom left image shows the binary image of extracted human areas by labeling, size filtering and morphological operations
  • The bottom right image is the final generated background image

demo

Human Detection

The demo below shows the second part of the algorithm,human detection based on the generated background image.

  • The top left image shows final generated background image
  • The top right image shows the binary difference image between input image and generated background image, the threshold is determined dynamically with a fuzzy system
  • The bottom left image shows the binary difference image of detected human areas by labeling, size filtering and morphological operations
  • The bottom right image shows the detected boxes containing of human areas on the original input image

demo

Application structure

projet-p206

  • ir_sensor: contains code that need to be deployed to the embedded linux system
    • flir: the executable file of the application that needed to be run in the embedded linux system
    • main.cpp: the main code of the application
    • Makefile: used by the program make to compile the application
    • README.md: contains instructions about how to use the program make and how to write Makefile, also contains a tutorial of how to use built-in Background Substractor like MOG and MOG2
    • other files
  • backgroundSubstraction: contains code that need to be run at your machine
    • __init__.py: used by Python in order to import modules written in this directory
    • .gitignore: used by Git in order not to track unrelated files to the project
    • BackgroundGenerator.py: the program that generates background images from input thermal ima
    • Fuzzy.py: the program that implements the fuzzy system of the algorithm
    • HumanDetector.py: the program that implements the human detection part of the algorithm
    • main.py: the program that combines the different parts of the algorithms and can therefore test the performance of the algorithm given input as a video of thermal images
    • README.md: contains basic explanation and demos of the implemented algorithm
  • docs: contains files related to documentations, like images shown in this document
    • comm: the socket communication part of the project are extracted here
      • client_udp.c: the socket client written in c that integrated in the /ir_sensor/main.cpp
      • server_udp.py: the socket server written in python that integrated in the /irCamera.py and /ir_server.py
    • other files, mainly images
  • templates: contains web page for the Flask web server index.html: the web interface of the application
  • __init__.py: used by Python in order to import modules written in this directory
  • .gitignore: used by Git in order not to track unrelated files to the project
  • ir_server.py: the program that visualize thermal images from the embedded linux system and shows detected results based on OpenCV cv2.imshow
  • irCamera.py: the program that collects thermal images from the embedded linux system and runs the human dectection algortihm on these images
  • web_server.py: the web server of the application, it takes the detection result from irCamera.py and display it via web interface
  • requirements.txt: the required packages for the python development environment
  • start_DHCP.sh: the script to launch a DHCP server at your machine in order to do a direct connection between your machine and the embedded linux system, see more details at Direct Ethernet connection to Raspberry Pi/Odroid without router
  • stop_DHCP.sh: the script to stop the DHCP, see more details at Direct Ethernet connection to Raspberry Pi/Odroid without router

Built With

  • OpenCV - Open Source Computer Vision Library, based on which the human presence detection algorithm is developed
  • skfuzzy - Fuzzy logic toolbox, used to build the fuzzy logic part of the algorithm
  • Flask - Microframework for Python, used to develop the web application

Authors

  • Jinhai ZHOU - 3rd year student at IMT Atlantique

License

Creative Commons License
This work is licensed under a Creative Commons Attribution 4.0 International License.

Acknowledgments

Appendix

Creating videos from captured thermal images for testing usage

Here is a method to convert multiple images to an avi format video without compression which uses the huffyuv encoder in order to create a lossless output.

Enter the directory where images are saved, use an wild-card expression like img%d.jpg to select all the image files that are needed for this conversion, input the following command in a terminal

ffmpeg -i img%d.jpg -vcodec huffyuv output.avi

or rawvideo:

ffmpeg -i img%d.jpg -vcodec rawvideo output.avi

By default this will assume your input frame rate is 25, if it's not the case, you can add an option to change it:

ffmpeg -r 30 -i img%d.jpg -vcodec huffyuv output.avi

By default the output will inherit the input frame rate. You can apply the same option to the output. By changing the frame rates you can achieve a certain duration. For example, if I have 900 images and want the output duration to be 60 seconds with an output frame rate of 30, then we can set the output video rate to be 900/60=15 fps.

ffmpeg -r 15 -i img%d.jpg -r 30 -vcodec huffyuv output.avi

Note that your images must be named in a sequence starting with 1, and although some encoders are lossless there can be some loss due to color space conversion.

credit : https://ubuntuforums.org/archive/index.php/t-1815998.html

Direct Ethernet connection to Raspberry Pi/Odroid without router

The solution is based on running DHCP service at your workstation (your notebook for example), and use it to attribute an IP address to your Raspberry Pi/Odroid. Then use ssh to connect to your Raspberry Pi/Odroid through this IP address.

Terminology Explaination
Client Your Single Board Computer, such as a Raspberry Pi or an Odroid
Server Your workstation with any linux based systems, like Ubuntu

Configuration at the Client Side (optional)

  1. Enable SSH connection
  • for Raspberry Pi
    sudo systemctl enable ssh
  • for Odroid
    sudo vim /etc/ssh/sshd_config
    find the line PermitRootLogin and set it to PermitRootLogin yes
  1. Modify DHCP Client configuration
    sudo vim /etc/dhcp/dhclient.conf
    
    fin the line send host-name "foo"; and uncommented it

Configuration at the Server Side

  1. Install a DHCP server

    sudo apt-get install isc-dhcp-server
    
  2. Use ifconfig to find your Ethernet network interface, it's probably eth0 but in my case it's enp61s0, then you need to configure a subnetwork on this interface

  3. Backup your interface configuration file

    sudo cp /etc/network/interfaces /etc/network/interfaces.original
    
  4. Modify interface configuration file

    sudo vim /etc/network/interfaces
    

    which should be modified like the output below

    auto lo
    iface lo inet loopback
    
    iface enp61s0 inet static
            address 192.168.1.1
            netmask 255.255.255.0
            network 192.168.1.0
    
    
  5. Backup your configuration file of DHCP service

    sudo cp /etc/dhcp/dhcpd.conf /etc/dhcp/dhcpd.conf.original
    
  6. Modify the configuration file of DHCP service

    sudo vim /etc/dhcp/dhcpd.conf
    

    which should be modified like the output below

    ddns-update-style	none;
    default-lease-time 3600;
    max-lease-time 7200;
    authoritative;
    
    subnet 192.168.1.0 netmask 255.255.255.0 {
      option routers 192.168.1.1;
      range 192.168.1.100 192.168.1.200;
    }
    
  7. Start the DHCP service by typing

    # bring up the enp61s0 interface
    sudo ifup enp61s0 
    # start DHCP service
    sudo service isc-dhcp-server start
    # enable forwarding from the ethernet to wireless router
    sudo /sbin/iptables --table nat -A POSTROUTING -o wlan0 -j MASQUERADE
    
  8. Now plug your Raspberry Pi or or Odroid and open another terminal and tape

    tail -f /var/log/sys/log
    

    to test the connection, you should see an entry like

    Dec 3 21:51:24 jzhou-Alienware-15-R3 dhcpd[10817]: DHCPACK on 192.168.1.100 to 00:1e:06:cb:e0:f5 (foo) via enp61s0

  9. Then you can connect to your Raspberry Pi or or Odroid by

Useful Resources

  1. ODROID-C2 from scratch
  2. How do I install and configure a DHCP server?
  3. Serveur DHCP : isc-dhcp-server
  4. Ubuntu Linux Display List of Ethernet Adapter
  5. Connecting a Raspberry Pi to a ubuntu netbook

Configuration SSH connection with keys between client and server

Server side

  1. install ssh server

    sudo apt-get install openssh-server
    

Client side

  1. generate a key pair

    ssh-keygen -t rsa
    

    if your have entered file in which to save the key, for example, flir then two file named flir and flir.pub will be generated at the current folder, represent private key and public key respectively. If not, rsa and rsa.pub is the name by default, and they can be found at the folder ~/.ssh/

  2. the private key and public key should be palced at $HOME/.ssh/

    mv flir ~/.ssh/
    mv flir.pub ~/.ssh/
    
  3. uplode the public key flir.pub to the server

    ssh-copy-id -i ~/.ssh/flir.pub <username>@<ipaddress>
    
  4. now try logging into the server with ssh <username>@<ipaddress>

In a nutshell

  • The client generate a private key and public key pair
  • The private key should be placed at the folder ~/.ssh/ of client
  • The content of public key should be concatenated at the file ~/.ssh/authorized_keys of server
  • The ~/.ssh folder should be in mode drwx------ (700) in order to forbidden to other users
  • Once configured the ssh login with key, it's better to refuse access by password at the server side by setting PasswordAuthentication no in /etc/ssh/sshd_config of the server

Reference

projet-p206's People

Contributors

jinhaiz avatar

Stargazers

 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.