Home
Softono
a

ahmetozlu

Professional software vendor delivering innovative solutions on the Softono platform. Specialized in both open-source and proprietary software development.

Total Products
2

Software by ahmetozlu

tensorflow_object_counting_api
Open Source

tensorflow_object_counting_api

# 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): <p align="center"> <img src="https://user-images.githubusercontent.com/22610163/107875666-4da86080-6ed2-11eb-9be8-cdd0815897cd.gif" | width=418> <img src="https://user-images.githubusercontent.com/22610163/43166945-c0744de0-8fa0-11e8-8985-9f863c59e859.gif" | width=400> </p> --- ### Real-Time Counting Mode (TensorFlow implementation): <p align="center"> <img src="https://user-images.githubusercontent.com/22610163/42237325-1f964e82-7f06-11e8-966b-dfde98701c66.gif" | width=410> <img src="https://user-images.githubusercontent.com/22610163/42238435-77ac0d34-7f09-11e8-9609-e7c3c2c5af74.gif" | width=410> </p> <p align="center"> <img src="https://user-images.githubusercontent.com/22610163/42241094-14163cc8-7f12-11e8-83ed-68021b5e3b33.gif" | width=410><img src="https://user-images.githubusercontent.com/22610163/42237904-d6a3ac22-7f07-11e8-88f8-5f21430d9503.gif" | width=410> </p> --- --- ### Object Tracking Mode (TensorFlow implementation): <p align="center"> <img src="https://user-images.githubusercontent.com/22610163/70389634-4682ea00-19d3-11ea-84a2-3996a43e98fe.gif" | width=410> <img src="https://user-images.githubusercontent.com/22610163/70389738-6bc42800-19d4-11ea-971f-f19cb5b90140.gif" | width=410> </p> <p align="center"> <img src="https://user-images.githubusercontent.com/22610163/70389764-e9883380-19d4-11ea-8c54-80935811c3fa.gif" | width=825> </p> - Tracking module was built on top of [this approach](https://github.com/kcg2015/Vehicle-Detection-and-Tracking). --- ### Object Counting On Single Image (TensorFlow implementation): <p align="center"> <img src="https://user-images.githubusercontent.com/22610163/47524870-7c830e80-d8a4-11e8-8fd1-741193615a04.png" | width=750></p> --- ### Object Counting based R-CNN ([Keras and TensorFlow implementation](https://github.com/ahmetozlu/tensorflow_object_counting_api/tree/master/mask_rcnn_counting_api)): <p align="center"> <img src="https://user-images.githubusercontent.com/22610163/57969852-0569b080-7983-11e9-8051-07d6766ca0e4.png" | width=750></p> ### Object Segmentation & Counting based Mask R-CNN ([Keras and TensorFlow implementation](https://github.com/ahmetozlu/tensorflow_object_counting_api/tree/master/mask_rcnn_counting_api)): <p align="center"> <img src="https://user-images.githubusercontent.com/22610163/57969871-1c100780-7983-11e9-9660-7b8571b01ff7.png" | width=750></p> --- ### 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**](https://github.com/ahmetozlu/tensorflow_object_counting_api/tree/master/smurf_counter_training)! <p align="center"> <img src="https://user-images.githubusercontent.com/22610163/62861574-9d6e0080-bd0c-11e9-9e38-b63226df8aa1.gif" | width=750> </p> **Sample Project#2: Barilla-Spaghetti Counting** More info can be found in [**here**](https://github.com/ahmetozlu/tensorflow_object_counting_api/tree/master/mask_rcnn_counting_api_keras_tensorflow/barilla_spaghetti_counter_training)! <p align="center"> <img src="https://user-images.githubusercontent.com/22610163/62903429-46e3df00-bd6b-11e9-9f97-4de477fa8769.png" | width=750> </p> --- ***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*](https://github.com/ahmetozlu/vehicle_counting_tensorflow).** --- ## 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:* <p align="center"> <img src="https://user-images.githubusercontent.com/22610163/43166945-c0744de0-8fa0-11e8-8985-9f863c59e859.gif" | width=700> </p> --- **Source code of "pedestrian counting case-study": [pedestrian_counting.py](https://github.com/ahmetozlu/tensorflow_object_counting_api/blob/master/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:* <p align="center"> <img src="https://user-images.githubusercontent.com/22610163/43166455-45964aac-8f9f-11e8-9ddf-f71d05f0c7f5.gif" | width=700> </p> --- **Source code of "vehicle counting case-study": [vehicle_counting.py](https://github.com/ahmetozlu/tensorflow_object_counting_api/blob/master/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":* <p align="center"> <img src="https://user-images.githubusercontent.com/22610163/42411751-1ae1d3f0-820a-11e8-8465-9ec9b44d4fe7.gif" | width=700> </p> *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":* <p align="center"> <img src="https://user-images.githubusercontent.com/22610163/42411749-1a80362c-820a-11e8-864e-acdeed85b1f2.gif" | width=700> </p> *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":* <p align="center"> <img src="https://user-images.githubusercontent.com/22610163/42411750-1aae0d72-820a-11e8-8726-4b57480f4cb8.gif" | width=700> </p> --- *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":* <p align="center"> <img src="https://user-images.githubusercontent.com/22610163/42411748-1a5ab49c-820a-11e8-8648-d78ffa08c28c.gif" | width=700> </p> *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":* <p align="center"> <img src="https://user-images.githubusercontent.com/22610163/42411747-1a215e4a-820a-11e8-8aef-faa500df6836.gif" | width=700> </p> ### 3.) Usage of "Object Tracking Mode" Just run [object_tracking.py](https://github.com/ahmetozlu/tensorflow_object_counting_api/blob/master/object_tracking.py) --- **For sample usages of "Real-Time Counting Mode": [real_time_counting.py](https://github.com/ahmetozlu/tensorflow_object_counting_api/blob/master/real_time_counting.py)** --- *The minimum object detection threshold can be set [in this line](https://github.com/ahmetozlu/tensorflow_object_counting_api/blob/master/utils/visualization_utils.py#L443) in terms of percentage. The default minimum object detecion threshold is 0.5!* ## General Capabilities of The TensorFlow Object Counting API <p align="center"> <img src="https://user-images.githubusercontent.com/22610163/48421361-6662c280-e76d-11e8-9680-ec86e245fdac.jpg" | width = 720> </p> 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](www) - Select, download and use state of the art [models that are trained by Google Brain Team](https://github.com/tensorflow/models/blob/master/research/object_detection/g3doc/detection_model_zoo.md) - Use [your own trained models](https://www.tensorflow.org/guide/keras) or [a fine-tuned model](https://github.com/Hvass-Labs/TensorFlow-Tutorials/blob/master/10_Fine-Tuning.ipynb) 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 <p align="center"> <img src="https://user-images.githubusercontent.com/22610163/48421362-6662c280-e76d-11e8-9b63-da9698626f75.jpg" | width=720> </p> - Object detection and classification have been developed on top of TensorFlow Object Detection API, [see](https://github.com/tensorflow/models/tree/master/research/object_detection) 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](https://github.com/ahmetozlu/tensorflow_object_counting_api/tree/master/utils/color_recognition_module) for more info. [TensorFlow™](https://www.tensorflow.org/) 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)](https://opencv.org/about.html) 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 <p align="center"> <img src="https://user-images.githubusercontent.com/22610163/41812993-a4b5a172-7735-11e8-89f6-083ec0625f21.png" | width=700> </p> Source video is read frame by frame with OpenCV. Each frames is processed by ["SSD with Mobilenet" model](http://download.tensorflow.org/models/object_detection/ssd_mobilenet_v1_coco_2017_11_17) 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 <p align="center"> <img src="https://user-images.githubusercontent.com/22610163/48481757-b1d5a900-e81f-11e8-824b-4317115fe5b4.png"> </p> By default I use an ["SSD with Mobilenet" model](http://download.tensorflow.org/models/object_detection/ssd_mobilenet_v1_coco_2017_11_17) in this project. You can find more information about SSD in [here](https://towardsdatascience.com/understanding-ssd-multibox-real-time-object-detection-in-deep-learning-495ef744fab). Please, See the [detection model zoo](https://github.com/tensorflow/models/blob/master/research/object_detection/g3doc/detection_model_zoo.md) 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](https://www.youtube.com/watch?v=bas6c8d1JyU). ## Installation ### Dependencies Tensorflow Object Counting API depends on the following libraries (see [requirements.txt]()): - [TensorFlow Object Detection API](https://github.com/tensorflow/models/tree/master/research/object_detection) - **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](https://www.tensorflow.org/install/). TensorFlow Object Detection API have to be installed to run TensorFlow Object Counting API, for more information, please see [this](https://github.com/tensorflow/models/blob/master/research/object_detection/g3doc/installation.md). ### 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.

ML Frameworks
1.3K Github Stars
vehicle_counting_tensorflow
Open Source

vehicle_counting_tensorflow

# VEHICLE DETECTION, TRACKING AND COUNTING This sample project focuses on "Vechicle Detection, Tracking and Counting" using [**TensorFlow Object Counting API**](https://github.com/ahmetozlu/tensorflow_object_counting_api). ***Please contact if you need professional vehicle detection & tracking & counting project with the super high accuracy!*** --- ***The [TensorFlow Object Counting API](https://github.com/ahmetozlu/tensorflow_object_counting_api) is used as a base for object counting on this project, more info can be found on this [repo](https://github.com/ahmetozlu/tensorflow_object_counting_api).*** --- <p align="center"> <img src="https://user-images.githubusercontent.com/22610163/36344830-095cc4ec-1431-11e8-8e57-976c40d87cf9.gif"> </p> --- ***The developing is on progress! This sample project will be updated soon, the more talented traffic analyzer app will be available in this repo!*** --- ## General Capabilities of This Sample Project This sample project has more than just counting vehicles, here are the additional capabilities of it: - Detection and classification of the vehicles (car, truck, bicycle, motorcycle, bus) - Recognition of approximate vehicle color - Detection of vehicle direction of travel - Prediction the speed of the vehicle - Prediction of approximate vehicle size - **The images of detected vehicles are cropped from video frame and they are saved as new images under "[detected_vehicles](https://github.com/ahmetozlu/vehicle_counting_tensorflow/tree/master/detected_vehicles)" folder path** - **The program gives a .csv file as an output ([traffic_measurement.csv](https://github.com/ahmetozlu/vehicle_counting_tensorflow/blob/master/traffic_measurement.csv)) which includes "Vehicle Type/Size", " Vehicle Color", " Vehicle Movement Direction", " Vehicle Speed (km/h)" rows, after the end of the process for the source video file.** ToDos: - More powerful detection models will be shared. - Sample codes will be developed to process different types of input videos (for different types of road traffics such as two way lane road). - Code cleanup will be performed. - UI will be developed. The input video can be accessible by this [link](https://github.com/ahmetozlu/vehicle_counting_tensorflow/blob/master/input_video.mp4). ## Theory ### System Architecture <p align="center"> <img src="https://user-images.githubusercontent.com/22610163/103478400-80414280-4dd7-11eb-9874-3735359e2c20.png"> </p> - Vehicle detection and classification have been developed using TensorFlow Object Detection API, [see](https://github.com/ahmetozlu/vehicle_counting_tensorflow/blob/master/vehicle_detection_main.py) for more info. - Vehicle speed prediction has been developed using OpenCV via image pixel manipulation and calculation, [see](https://github.com/ahmetozlu/vehicle_counting_tensorflow/tree/master/utils/speed_and_direction_prediction_module) for more info. - Vehicle color prediction has been developed using OpenCV via K-Nearest Neighbors Machine Learning Classification Algorithm is Trained Color Histogram Features, [see](https://github.com/ahmetozlu/vehicle_counting_tensorflow/tree/master/utils/color_recognition_module) for more info. [TensorFlow™](https://www.tensorflow.org/) 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)](https://opencv.org/about.html) 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 <p align="center"> <img src="https://user-images.githubusercontent.com/22610163/41812993-a4b5a172-7735-11e8-89f6-083ec0625f21.png" | width=700> </p> Source video is read frame by frame with OpenCV. Each frames is processed by ["SSD with Mobilenet" model](http://download.tensorflow.org/models/object_detection/ssd_mobilenet_v1_coco_2017_11_17) 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. ### Model <p align="center"> <img src="https://user-images.githubusercontent.com/22610163/48481757-b1d5a900-e81f-11e8-824b-4317115fe5b4.png"> </p> By default I use an ["SSD with Mobilenet" model](http://download.tensorflow.org/models/object_detection/ssd_mobilenet_v1_coco_2017_11_17) in this project. You can find more information about SSD in [here](https://towardsdatascience.com/understanding-ssd-multibox-real-time-object-detection-in-deep-learning-495ef744fab). See the [detection model zoo](https://github.com/tensorflow/models/blob/master/research/object_detection/g3doc/detection_model_zoo.md) for a list of other models that can be run out-of-the-box with varying speeds and accuracies. *The minimum vehicle detection threshold can be set [in this line](https://github.com/ahmetozlu/tensorflow_object_counting_api/blob/master/utils/visualization_utils.py#L443) in terms of percentage. The default minimum vehicle detecion threshold is 0.5!* ## Project Demo Demo video of the project is available on [My YouTube Channel](https://www.youtube.com/watch?v=PrqnhHf6fhM). ## Installation **Docker setup with Nvidia GPU:** Run the demo in the GPU without installing anything, just nvidia-docker. The command to set up this docker: docker-compose up Alternative for nvidia-docker, you can follow the installation steps are given below! **1.) Python and pip** Python is automatically installed on Ubuntu. Take a moment to confirm (by issuing a python -V command) that one of the following Python versions is already installed on your system: - Python 3.3+ The pip or pip3 package manager is usually installed on Ubuntu. Take a moment to confirm (by issuing a *pip -V* or *pip3 -V* command) that pip or pip3 is installed. We strongly recommend version 8.1 or higher of pip or pip3. If Version 8.1 or later is not installed, issue the following command, which will either install or upgrade to the latest pip version: $ sudo apt-get install python3-pip python3-dev # for Python 3.n **2.) OpenCV** See required commands to install OpenCV on Ubuntu in [here](https://gist.github.com/dynamicguy/3d1fce8dae65e765f7c4). **3.) TensorFlow** Install TensorFlow by invoking one of the following commands: $ pip3 install tensorflow # Python 3.n; CPU support (no GPU support) $ pip3 install tensorflow-gpu # Python 3.n; GPU support Current program is compatible with TensorFlow 1.5.0 version. Please uncomment these lines to run the program with TensorFlow 2.x: [#1](https://github.com/ahmetozlu/vehicle_counting_tensorflow/blob/master/utils/label_map_util.py#L117), [#2](https://github.com/ahmetozlu/vehicle_counting_tensorflow/blob/master/vehicle_detection_main.py#L77), [#3](https://github.com/ahmetozlu/vehicle_counting_tensorflow/blob/master/vehicle_detection_main.py#L77), [#4](https://github.com/ahmetozlu/vehicle_counting_tensorflow/blob/master/vehicle_detection_main.py#L78). **4.) TensorFlow Object Detection API** See required commands to install TensorFlow Object Detection API on Ubuntu in [here](https://github.com/tensorflow/models/blob/master/research/object_detection/g3doc/installation.md). If you are still getting problem about installation after completed the installation of the packet that are given above, please check that [link](https://github.com/tensorflow/models/blob/master/research/object_detection/g3doc/installation.md) out to get detailed info about installation. --- **How to run the program?** After completing these 4 installation steps that are given at above, you can test the project by one of these commands. Program takes an input argument 'imshow' or 'imwrite': python3 vehicle_detection_main.py imshow python3 vehicle_detection_main.py imwrite - *imshow* : shows the processed frames as an video on screen. - *imwrite* : saves the processed frames as an output video in the project root folder. --- ## Citation If you use this code for your publications, please cite it as: @ONLINE{vdtct, author = "Ahmet Özlü", title = "Vehicle Detection, Tracking and Counting by TensorFlow", year = "2018", url = "https://github.com/ahmetozlu/vehicle_counting_tensorflow" } ## Author Ahmet Özlü ## License This system is available under the MIT license. See the LICENSE file for more info.

Database ML Frameworks
926 Github Stars