• Stars
    star
    1,305
  • Rank 34,839 (Top 0.8 %)
  • Language
    Python
  • License
    MIT License
  • Created almost 6 years ago
  • Updated over 2 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

๐Ÿš€ The TensorFlow Object Counting API is an open source framework built on top of TensorFlow and Keras that makes it easy to develop object counting systems!

TensorFlow Object Counting API

The TensorFlow Object Counting API is an open source framework built on top of TensorFlow and Keras that makes it easy to develop object counting systems. Please contact if you need professional object detection & tracking & counting project with the super high accuracy and reliability!

QUICK DEMO


Cumulative Counting Mode (TensorFlow implementation):


Real-Time Counting Mode (TensorFlow implementation):



Object Tracking Mode (TensorFlow implementation):


Object Counting On Single Image (TensorFlow implementation):


Object Counting based R-CNN (Keras and TensorFlow implementation):

Object Segmentation & Counting based Mask R-CNN (Keras and TensorFlow implementation):


BONUS: Custom Object Counting Mode (TensorFlow implementation):

You can train TensorFlow models with your own training data to built your own custom object counter system! If you want to learn how to do it, please check one of the sample projects, which cover some of the theory of transfer learning and show how to apply it in useful projects, are given at below.

Sample Project#1: Smurf Counting

More info can be found in here!

Sample Project#2: Barilla-Spaghetti Counting

More info can be found in here!


The development is on progress! The API will be updated soon, the more talented and light-weight API will be available in this repo!

  • Detailed API documentation and sample jupyter notebooks that explain basic usages of API will be added!

You can find a sample project - case study that uses TensorFlow Object Counting API in this repo.


USAGE

1.) Usage of "Cumulative Counting Mode"

1.1) For detecting, tracking and counting the pedestrians with disabled color prediction

Usage of "Cumulative Counting Mode" for the "pedestrian counting" case:

is_color_recognition_enabled = False # set it to true for enabling the color prediction for the detected objects
roi = 385 # roi line position
deviation = 1 # the constant that represents the object counting area

object_counting_api.cumulative_object_counting_x_axis(input_video, detection_graph, category_index, is_color_recognition_enabled, roi, deviation) # counting all the objects

Result of the "pedestrian counting" case:


Source code of "pedestrian counting case-study": pedestrian_counting.py


1.2) For detecting, tracking and counting the vehicles with enabled color prediction

Usage of "Cumulative Counting Mode" for the "vehicle counting" case:

is_color_recognition_enabled = True # set it to true for enabling the color prediction for the detected objects
roi = 200 # roi line position
deviation = 3 # the constant that represents the object counting area

object_counting_api.cumulative_object_counting_y_axis(input_video, detection_graph, category_index, is_color_recognition_enabled, roi, deviation) # counting all the objects

Result of the "vehicle counting" case:


Source code of "vehicle counting case-study": vehicle_counting.py


2.) Usage of "Real-Time Counting Mode"

2.1) For detecting, tracking and counting the targeted object/s with disabled color prediction

Usage of "the targeted object is bicycle":

is_color_recognition_enabled = False # set it to true for enabling the color prediction for the detected objects
targeted_objects = "bicycle" 

object_counting_api.targeted_object_counting(input_video, detection_graph, category_index, is_color_recognition_enabled, targeted_objects) # targeted objects counting

Result of "the targeted object is bicycle":

Usage of "the targeted object is person":

is_color_recognition_enabled = False # set it to true for enabling the color prediction for the detected objects
targeted_objects = "person"

object_counting_api.targeted_object_counting(input_video, detection_graph, category_index, is_color_recognition_enabled, targeted_objects) # targeted objects counting

Result of "the targeted object is person":

Usage of "detecting, counting and tracking all the objects":

is_color_recognition_enabled = False # set it to true for enabling the color prediction for the detected objects

object_counting_api.object_counting(input_video, detection_graph, category_index, is_color_recognition_enabled) # counting all the objects

Result of "detecting, counting and tracking all the objects":


Usage of "detecting, counting and tracking the multiple targeted objects":

targeted_objects = "person, bicycle" # (for counting targeted objects) change it with your targeted objects
is_color_recognition_enabled = False # set it to true for enabling the color prediction for the detected objects

object_counting_api.targeted_object_counting(input_video, detection_graph, category_index, is_color_recognition_enabled, targeted_objects) # targeted objects counting

2.2) For detecting, tracking and counting "all the objects with disabled color prediction"

Usage of detecting, counting and tracking "all the objects with disabled color prediction":

is_color_recognition_enabled = False # set it to true for enabling the color prediction for the detected objects

object_counting_api.object_counting(input_video, detection_graph, category_index, is_color_recognition_enabled) # counting all the objects

Result of detecting, counting and tracking "all the objects with disabled color prediction":

Usage of detecting, counting and tracking "all the objects with enabled color prediction":

is_color_recognition_enabled = True # set it to true for enabling the color prediction for the detected objects

object_counting_api.object_counting(input_video, detection_graph, category_index, is_color_recognition_enabled) # counting all the objects

Result of detecting, counting and tracking "all the objects with enabled color prediction":

3.) Usage of "Object Tracking Mode"

Just run object_tracking.py


For sample usages of "Real-Time Counting Mode": real_time_counting.py


The minimum object detection threshold can be set in this line in terms of percentage. The default minimum object detecion threshold is 0.5!

General Capabilities of The TensorFlow Object Counting API

Here are some cool capabilities of TensorFlow Object Counting API:

  • Detect just the targeted objects
  • Detect all the objects
  • Count just the targeted objects
  • Count all the objects
  • Predict color of the targeted objects
  • Predict color of all the objects
  • Predict speed of the targeted objects
  • Predict speed of all the objects
  • Print out the detection-counting result in a .csv file as an analysis report
  • Save and store detected objects as new images under detected_object folder
  • Select, download and use state of the art models that are trained by Google Brain Team
  • Use your own trained models or a fine-tuned model to detect spesific object/s
  • Save detection and counting results as a new video or show detection and counting results in real time
  • Process images or videos depending on your requirements

Here are some cool architectural design features of TensorFlow Object Counting API:

  • Lightweigth, runs in real-time
  • Scalable and well-designed framework, easy usage
  • Gets "Pythonic Approach" advantages
  • It supports REST Architecture and RESTful Web Services

TODOs:

  • TensorFlox2.x support will be provided.
  • Autonomus Training Image Annotation Tool will be developed.
  • GUI will be developed.

Theory

System Architecture

  • Object detection and classification have been developed on top of TensorFlow Object Detection API, see for more info.

  • Object color prediction has been developed using OpenCV via K-Nearest Neighbors Machine Learning Classification Algorithm is Trained Color Histogram Features, see for more info.

TensorFlowโ„ข is an open source software library for numerical computation using data flow graphs. Nodes in the graph represent mathematical operations, while the graph edges represent the multidimensional data arrays (tensors) communicated between them.

OpenCV (Open Source Computer Vision Library) is an open source computer vision and machine learning software library. OpenCV was built to provide a common infrastructure for computer vision applications and to accelerate the use of machine perception in the commercial products.

Tracker

Source video is read frame by frame with OpenCV. Each frames is processed by "SSD with Mobilenet" model is developed on TensorFlow. This is a loop that continue working till reaching end of the video. The main pipeline of the tracker is given at the above Figure.

Models

By default I use an "SSD with Mobilenet" model in this project. You can find more information about SSD in here.

Please, See the detection model zoo for a list of other models that can be run out-of-the-box with varying speeds and accuracies. You can easily select, download and use state-of-the-art models that are suitable for your requeirements using TensorFlow Object Detection API.

You can perform transfer learning on trained TensorFlow models to build your custom object counting systems!

Project Demo

Demo video of the project is available on My YouTube Channel.

Installation

Dependencies

Tensorflow Object Counting API depends on the following libraries (see requirements.txt):

  • TensorFlow Object Detection API
  • tensorflow==1.5.0
  • keras==2.0.8
  • opencv-python==4.4.0.42
  • Protobuf 3.0.0
  • Python-tk
  • Pillow 1.0
  • lxml
  • tf Slim (which is included in the "tensorflow/models/research/" checkout)
  • Jupyter notebook
  • Matplotlib
  • Cython
  • contextlib2
  • cocoapi

For detailed steps to install Tensorflow, follow the Tensorflow installation instructions.

TensorFlow Object Detection API have to be installed to run TensorFlow Object Counting API, for more information, please see this.

Important: Compatibility problems caused by TensorFlow2 version.

This project developed with TensorFlow 1.5.0 version. If you need to run this project with TensorFlow 2.x version, just replace tensorflow imports with tensorflow.compat.v1, and add tf.disable_v2_behavior that's all.

Instead of this import statement:

import tensorflow

use this:

import tensorflow.compat.v1 as tf
tf.disable_v2_behavior()

Citation

If you use this code for your publications, please cite it as:

@ONLINE{
    author = "Ahmet ร–zlรผ",
    title  = "TensorFlow Object Counting API",
    year   = "2018",
    url    = "https://github.com/ahmetozlu/tensorflow_object_counting_api"
}

Author

Ahmet ร–zlรผ

License

This system is available under the MIT license. See the LICENSE file for more info.

More Repositories

1

vehicle_counting_tensorflow

๐Ÿš˜ "MORE THAN VEHICLE COUNTING!" This project provides prediction for speed, color and size of the vehicles with TensorFlow Object Counting API.
Python
851
star
2

signature_extractor

A super lightweight image processing algorithm for detection and extraction of overlapped handwritten signatures on scanned documents using OpenCV and scikit-image.
Python
414
star
3

color_recognition

๐ŸŽจ Color recognition & classification & detection on webcam stream / on video / on single image using K-Nearest Neighbors (KNN) is trained with color histogram features by OpenCV.
Python
301
star
4

augmented_reality

๐Ÿ’Ž "Marker-less Augmented Reality" with OpenCV and OpenGL.
C++
204
star
5

defi_yield_farming

๐Ÿšœ ๐ŸŒพ A DeFi app, which provides staking & farming functions are deploy-able with a website, for yield farming.
JavaScript
142
star
6

face_recognition_crop

Multi-view face recognition, face cropping and saving the cropped faces as new images on videos to create a multi-view face recognition database.
Python
139
star
7

vehicle_counting

Vehicle detection, tracking and counting by blob detection with OpenCV on c++.
C++
116
star
8

vehicle_counting_hog_svm

Vehicle detection, tracking and counting by SVM is trained with HOG features using OpenCV on c++.
C++
96
star
9

aipa

AIPA (A.I. Personal Assistant): Speech, Vision, Machine Learning and IoT based intelligent personal assistant for Ubuntu based Linux distributions.
Python
48
star
10

real_time_circle_detection_android

Real time circle detection and tracking by Hough Circle Transform with OpenCV on Android OS.
Java
44
star
11

human_computer_interaction

Fist, palm and hand detection & tracking for intelligent human-computer interaction game character movement control with OpenCV on Java (Processing sketchbook).
Processing
44
star
12

unity_calendar_ui

This is a well defined-basic "Calendar UI" for Unity.
C#
24
star
13

arlo_traffic_analysis

Vehicle detection, tracking, counting and speed prediction on videos with OpenCV.
Python
19
star
14

nonlinear_regression_keras

Training of a neural network for nonlinear regression prediction with TensorFlow and Keras API.
Jupyter Notebook
15
star
15

tcp_socket_programming_android_client

TCP Socket Programming implementation of client side on Android.
Java
12
star
16

smart_contract_helloworld

๐Ÿ”ฅ Smart contract hello world tutorial: write and deploy your first Ethereum smart contract!
Solidity
9
star
17

decentralized_banking_system

๐Ÿฆ Decentralized banking system is a DApp built on Ethereum blockchain with smart contract on solidity.
Solidity
9
star
18

object_detection_chooch

A sample project for super fast real time object detection and counting using CHOOCH AI API and OpenCV.
Python
9
star
19

unity_camera_movements

"Main Camera" movements scripts for Unity (for Desktop and Gear VR platforms).
C#
8
star
20

tcp_socket_programming_c_server

TCP Socket Programming implementation of server side in c programming language.
C
8
star
21

the_smart_contract_burger_store

๐Ÿ” ๐ŸŸ A real life case study for developing Ethereum smart contract for businesses: Building a smart contract to manage a burger store.
JavaScript
8
star
22

tensorflow_blob_analysis

A sample project to perform blob analysis on images with TensorFlow and Keras to detect blobs and analyze their shape features such as the presence, number, area, position, length, and direction of lumps.
Python
8
star
23

family_tree_warehouse_app

Ask relation, add/delete/update person, get information of any person, print the family tree, control under 18 age marriage and more...
Python
7
star
24

EncryptedMessengerApplication

Encrypted Messenger App: Sending and receiving messages (over TCP Socket) with high security (powered by RSA and AES).
Java
5
star
25

android_power_monitor

๐Ÿ”‹ Android power monitor hardware with Arduino.
C++
4
star
26

java_native_interface

Java Native Interface to call "Java Code" from "C++ Program".
C++
3
star
27

family_tree

Ask relation, add/delete/update person, get information of any person, print the family tree, control under 18 age marriage and more...
Prolog
3
star
28

ahmetozlu.github.io

1
star
29

pattern_matching

Implementation and performance comparison of Boyer Moore, Horspool and Brute Force in c programming language.
C
1
star
30

ethereum-smart-contract-samples

๐Ÿ’ก Small smart contract examples to understand basics and some details of developing Ethereum smart contracts!
Solidity
1
star
31

SimpleShell

This program is about a simple shell. The shell accepts user commands and then executes each command in a separate process.
C
1
star
32

sample_spring_microservice_case_study

๐Ÿฆ… An inventory management project for providing a sample microservice case study which contains Spring Cloud Eureka server & client, feign client, error handling & fault tolerance, API gateway, Spring Actuator, distributed log trace with Zipkin, centralized configuration and vault integration with Spring Cloud Config.
Java
1
star