SlideShare a Scribd company logo
1 of 15
Road Object Detection in Bangladesh using
Faster RCNN: A Deep learning Approach
Anik Datta, Tamara Islam Meghla, Tania Khatun, Mehedi Hasan
Bhuiya, Shakilur Rahman Shuvo and Md. Mahfujur Rahman
PAPER ID
282
WIECON-ECE 2020
2020 IEEE International Woman in Engineering (WIE)
Conference on Electrical & Computer Engineering
wiecon-ece.org
Outline
• Introduction
• Motivation
• Methodology
• Result and Discussion
• Conclusion
ANIK DATTA, ROAD OBJECT DETECTION IN BANGLADESH USING FASTER RCNN: A DEEP LEARNING APPROACH • 2
WIECON-ECE 2020
2020 IEEE International Woman in Engineering (WIE)
Conference on Electrical & Computer Engineering
wiecon-ece.org
Introduction
• Object detection is a combination of computer vision and image
processing technology that can detect similar objects of a certain
class from images and videos.
• The role of object detection is very important for autonomous car,
intelligent driving assistance and advanced traffic analysis
nowadays.
•In the case of traffic analysis and intelligent driving assistance in
Bangladesh, it is very important to properly identify all the objects
from real time video.
•Our main objective is to accurately identify every object on the road
such as pedestrians, vehicles, traffic lights and traffic signs in a
populous country like Bangladesh and use them to better analyse
the traffic situation or use this information in automated driving.
3ANIK DATTA, ROAD OBJECT DETECTION IN BANGLADESH USING FASTER RCNN: A DEEP LEARNING APPROACH
WIECON-ECE 2020
2020 IEEE International Woman in Engineering (WIE)
Conference on Electrical & Computer Engineering
wiecon-ece.org
Motivation
• Road accident in Bangladesh has become an important issue.
•There has been an alarming rise in road accidents,
significantly highway accidents, in Bangladesh over the past
few years.
•Road accidents are mainly occurred for drivers carelessness
and violating traffic laws.
•To solve such problems we have done this research to save
some lives from accidents and to extract important traffic
information so that the traffic system can be further improved in
the future.
4ANIK DATTA, ROAD OBJECT DETECTION IN BANGLADESH USING FASTER RCNN: A DEEP LEARNING APPROACH
WIECON-ECE 2020
2020 IEEE International Woman in Engineering (WIE)
Conference on Electrical & Computer Engineering
wiecon-ece.org
Methodology
The reason why did we choose to use Faster R-CNN
Faster R-CNN is one of the most popular object detection
algorithm. We chose Faster R-CNN for object detection
because it is faster and it fixed the problem using Region
Proposals Network(RPN).Test time speed of Faster R-CNN for
per image 0.2 seconds.
Although YOLO is faster than Faster r-cnn. YOLO has some
drawbacks in object detection. It is difficult for YOLO in
detecting objects that are small and close to each other. Even
if the aspect ratio of the image changes, YOLO faces difficulty
in object detection.
5ANIK DATTA, ROAD OBJECT DETECTION IN BANGLADESH USING FASTER RCNN: A DEEP LEARNING APPROACH
WIECON-ECE 2020
2020 IEEE International Woman in Engineering (WIE)
Conference on Electrical & Computer Engineering
wiecon-ece.org
Methodology
Data Accumulation
We collect our findable image by clicking photographs and also
collect images for our dataset from google. After collecting the
images after that we label the desired objects in every image.
Faster RCNN
We use Faster R-CNN architecture for object detection. It is a
modified version of Fast R-CNN. At first Faster R-CNN extracts the
input image using convolution neural networks and passes those
maps through the region proposal network(RPN). Faster R-CNN
uses convolution neural network. It is very effective in image
recognition and classification. It can successfully identifying face,
object and traffic sign.
6ANIK DATTA, ROAD OBJECT DETECTION IN BANGLADESH USING FASTER RCNN: A DEEP LEARNING APPROACH
WIECON-ECE 2020
2020 IEEE International Woman in Engineering (WIE)
Conference on Electrical & Computer Engineering
wiecon-ece.org
Methodology
7
Fig. 1: Working procedure of RPN Fig. 2: Object detection with Faster R-CNN
ANIK DATTA, ROAD OBJECT DETECTION IN BANGLADESH USING FASTER RCNN: A DEEP LEARNING APPROACH
WIECON-ECE 2020
2020 IEEE International Woman in Engineering (WIE)
Conference on Electrical & Computer Engineering
wiecon-ece.org
Methodology
Training and Prediction
We have trained our Neural Network
through TensorFlow api by Faster R-CNN
in 19 object classes.
We used inception v2 coco architecture
utilize due to high accuracy among
convolution neural networks. That
inception v2 has the best learning rate for
faster RCNN.
Our neural network has completed
80,651 global steps during training and
has a loss value of 0.0122.
We have enlisted the help of Google
colab to complete the above process.
8ANIK DATTA, ROAD OBJECT DETECTION IN BANGLADESH USING FASTER RCNN: A DEEP LEARNING APPROACH
WIECON-ECE 2020
2020 IEEE International Woman in Engineering (WIE)
Conference on Electrical & Computer Engineering
wiecon-ece.org
Result and Discussion
Performance Analysis
We took a huge number of instances
from the data set to train and
observed them with precise needs.
For testing purposes, we select 199
instances with same label and
125images as different label.
After that, the prediction accuracy
jumped up to 86.42%.
9ANIK DATTA, ROAD OBJECT DETECTION IN BANGLADESH USING FASTER RCNN: A DEEP LEARNING APPROACH
WIECON-ECE 2020
2020 IEEE International Woman in Engineering (WIE)
Conference on Electrical & Computer Engineering
wiecon-ece.org
Result and Discussion
Real-time detection result
• We noticed some promising things while checking our results like we
were able to detect objects with almost equal efficiency in day and night
or in low light.
10
Fig. 3: Detection in day(Bright light) and night(low light)
ANIK DATTA, ROAD OBJECT DETECTION IN BANGLADESH USING FASTER RCNN: A DEEP LEARNING APPROACH
WIECON-ECE 2020
2020 IEEE International Woman in Engineering (WIE)
Conference on Electrical & Computer Engineering
wiecon-ece.org
Result and Discussion
• Our neural network has been able to detect objects efficiently
with moderate and low traffic on the road. And succeeds in
detecting all types of small-to-large-medium objects in all
situation.
11
Fig. 4: Detection in medium and low traffic
ANIK DATTA, ROAD OBJECT DETECTION IN BANGLADESH USING FASTER RCNN: A DEEP LEARNING APPROACH
WIECON-ECE 2020
2020 IEEE International Woman in Engineering (WIE)
Conference on Electrical & Computer Engineering
wiecon-ece.org
Result and Discussion
• Our purposed neural network can detect and analyze objects
well even when the objects are very close to each other and
even during high traffic on the road.
12
Fig. 5: Detection in high traffic
ANIK DATTA, ROAD OBJECT DETECTION IN BANGLADESH USING FASTER RCNN: A DEEP LEARNING APPROACH
WIECON-ECE 2020
2020 IEEE International Woman in Engineering (WIE)
Conference on Electrical & Computer Engineering
wiecon-ece.org
Result and Discussion
• But it only gets into trouble when the objects are too close
together and cling to each other in a crowded state.
•When detecting objects on high traffic or in close proximity to
the road, objects in the front make it difficult to detect the
objects behind because the objects in the front cover the
objects behind and therefore our proposed neural network can
only accurately detect objects in the front.
13ANIK DATTA, ROAD OBJECT DETECTION IN BANGLADESH USING FASTER RCNN: A DEEP LEARNING APPROACH
WIECON-ECE 2020
2020 IEEE International Woman in Engineering (WIE)
Conference on Electrical & Computer Engineering
wiecon-ece.org
Conclusion
• In this paper our proposed solution is able to analyse in different
situations like night, daylight or high traffic, medium traffic, low
traffic fairly efficiently.
• And our proposed solution is able to track multiple objects which
is possible due to its huge object class.
• When we test through this data set, some objects are mistakenly
detected and many times some objects are not detected.
• The reasons we have investigated are that if it is processed on a
low powered machine without a GPU, there is a possibility of
incorrect detection and another reason is that the images we
used to create the data set have different traffic situations.
• It could be further improved in the future to be used more
efficiently in real-time traffic analysis.
14ANIK DATTA, ROAD OBJECT DETECTION IN BANGLADESH USING FASTER RCNN: A DEEP LEARNING APPROACH
WIECON-ECE 2020
2020 IEEE International Woman in Engineering (WIE)
Conference on Electrical & Computer Engineering
wiecon-ece.org
Thanks
15ANIK DATTA, ROAD OBJECT DETECTION IN BANGLADESH USING FASTER RCNN: A DEEP LEARNING APPROACH

More Related Content

What's hot

[PR12] You Only Look Once (YOLO): Unified Real-Time Object Detection
[PR12] You Only Look Once (YOLO): Unified Real-Time Object Detection[PR12] You Only Look Once (YOLO): Unified Real-Time Object Detection
[PR12] You Only Look Once (YOLO): Unified Real-Time Object DetectionTaegyun Jeon
 
Object detection with deep learning
Object detection with deep learningObject detection with deep learning
Object detection with deep learningSushant Shrivastava
 
road lane detection.pptx
road lane detection.pptxroad lane detection.pptx
road lane detection.pptxTheMusicFever
 
Object Detection & Tracking
Object Detection & TrackingObject Detection & Tracking
Object Detection & TrackingAkshay Gujarathi
 
License Plate Recognition System using Python and OpenCV
License Plate Recognition System using Python and OpenCVLicense Plate Recognition System using Python and OpenCV
License Plate Recognition System using Python and OpenCVVishal Polley
 
You only look once: Unified, real-time object detection (UPC Reading Group)
You only look once: Unified, real-time object detection (UPC Reading Group)You only look once: Unified, real-time object detection (UPC Reading Group)
You only look once: Unified, real-time object detection (UPC Reading Group)Universitat Politècnica de Catalunya
 
Multiple object detection report
Multiple object detection reportMultiple object detection report
Multiple object detection reportManish Raghav
 
You Only Look Once: Unified, Real-Time Object Detection
You Only Look Once: Unified, Real-Time Object DetectionYou Only Look Once: Unified, Real-Time Object Detection
You Only Look Once: Unified, Real-Time Object DetectionDADAJONJURAKUZIEV
 
Video object tracking with classification and recognition of objects
Video object tracking with classification and recognition of objectsVideo object tracking with classification and recognition of objects
Video object tracking with classification and recognition of objectsManish Khare
 
Vehicle counting for traffic management
Vehicle counting for traffic management Vehicle counting for traffic management
Vehicle counting for traffic management ADEEBANADEEM
 
Image colorization
Image colorizationImage colorization
Image colorizationYash Saraf
 
Smart web cam motion detection
Smart web cam motion detectionSmart web cam motion detection
Smart web cam motion detectionAnu Mathew
 
Automatic number-plate-recognition
Automatic number-plate-recognitionAutomatic number-plate-recognition
Automatic number-plate-recognitionDevang Tailor
 
Weapon detection using artificial intelligence and deep learning for security...
Weapon detection using artificial intelligence and deep learning for security...Weapon detection using artificial intelligence and deep learning for security...
Weapon detection using artificial intelligence and deep learning for security...Venkat Projects
 
Suspicious Activity Detection
Suspicious Activity DetectionSuspicious Activity Detection
Suspicious Activity DetectionMushahid Ali
 

What's hot (20)

[PR12] You Only Look Once (YOLO): Unified Real-Time Object Detection
[PR12] You Only Look Once (YOLO): Unified Real-Time Object Detection[PR12] You Only Look Once (YOLO): Unified Real-Time Object Detection
[PR12] You Only Look Once (YOLO): Unified Real-Time Object Detection
 
Object detection with deep learning
Object detection with deep learningObject detection with deep learning
Object detection with deep learning
 
road lane detection.pptx
road lane detection.pptxroad lane detection.pptx
road lane detection.pptx
 
Object Detection & Tracking
Object Detection & TrackingObject Detection & Tracking
Object Detection & Tracking
 
License Plate Recognition System using Python and OpenCV
License Plate Recognition System using Python and OpenCVLicense Plate Recognition System using Python and OpenCV
License Plate Recognition System using Python and OpenCV
 
You only look once: Unified, real-time object detection (UPC Reading Group)
You only look once: Unified, real-time object detection (UPC Reading Group)You only look once: Unified, real-time object detection (UPC Reading Group)
You only look once: Unified, real-time object detection (UPC Reading Group)
 
Multiple object detection report
Multiple object detection reportMultiple object detection report
Multiple object detection report
 
You Only Look Once: Unified, Real-Time Object Detection
You Only Look Once: Unified, Real-Time Object DetectionYou Only Look Once: Unified, Real-Time Object Detection
You Only Look Once: Unified, Real-Time Object Detection
 
Video object tracking with classification and recognition of objects
Video object tracking with classification and recognition of objectsVideo object tracking with classification and recognition of objects
Video object tracking with classification and recognition of objects
 
Vehicle counting for traffic management
Vehicle counting for traffic management Vehicle counting for traffic management
Vehicle counting for traffic management
 
Image colorization
Image colorizationImage colorization
Image colorization
 
Yolov3
Yolov3Yolov3
Yolov3
 
YOLO
YOLOYOLO
YOLO
 
Object tracking
Object trackingObject tracking
Object tracking
 
Smart web cam motion detection
Smart web cam motion detectionSmart web cam motion detection
Smart web cam motion detection
 
Automatic number-plate-recognition
Automatic number-plate-recognitionAutomatic number-plate-recognition
Automatic number-plate-recognition
 
Weapon detection using artificial intelligence and deep learning for security...
Weapon detection using artificial intelligence and deep learning for security...Weapon detection using artificial intelligence and deep learning for security...
Weapon detection using artificial intelligence and deep learning for security...
 
5 drowsy-detector
5 drowsy-detector5 drowsy-detector
5 drowsy-detector
 
Suspicious Activity Detection
Suspicious Activity DetectionSuspicious Activity Detection
Suspicious Activity Detection
 
Moving object detection
Moving object detectionMoving object detection
Moving object detection
 

Similar to Road Object Detection

A REVIEW ON IMPROVING TRAFFIC-SIGN DETECTION USING YOLO ALGORITHM FOR OBJECT ...
A REVIEW ON IMPROVING TRAFFIC-SIGN DETECTION USING YOLO ALGORITHM FOR OBJECT ...A REVIEW ON IMPROVING TRAFFIC-SIGN DETECTION USING YOLO ALGORITHM FOR OBJECT ...
A REVIEW ON IMPROVING TRAFFIC-SIGN DETECTION USING YOLO ALGORITHM FOR OBJECT ...IRJET Journal
 
Object Detetcion using SSD-MobileNet
Object Detetcion using SSD-MobileNetObject Detetcion using SSD-MobileNet
Object Detetcion using SSD-MobileNetIRJET Journal
 
Sanjaya: A Blind Assistance System
Sanjaya: A Blind Assistance SystemSanjaya: A Blind Assistance System
Sanjaya: A Blind Assistance SystemIRJET Journal
 
HOW TO WASTE YOUR TIME ON SIMPLE THINGS DONT JUST FEEL INSTEAD BLAME OTHERS A...
HOW TO WASTE YOUR TIME ON SIMPLE THINGS DONT JUST FEEL INSTEAD BLAME OTHERS A...HOW TO WASTE YOUR TIME ON SIMPLE THINGS DONT JUST FEEL INSTEAD BLAME OTHERS A...
HOW TO WASTE YOUR TIME ON SIMPLE THINGS DONT JUST FEEL INSTEAD BLAME OTHERS A...lanaw86385
 
DSNet Joint Semantic Learning for Object Detection in Inclement Weather Condi...
DSNet Joint Semantic Learning for Object Detection in Inclement Weather Condi...DSNet Joint Semantic Learning for Object Detection in Inclement Weather Condi...
DSNet Joint Semantic Learning for Object Detection in Inclement Weather Condi...IRJET Journal
 
Vision-Based Motorcycle Crash Detection and Reporting Using Deep Learning
Vision-Based Motorcycle Crash Detection and Reporting Using Deep LearningVision-Based Motorcycle Crash Detection and Reporting Using Deep Learning
Vision-Based Motorcycle Crash Detection and Reporting Using Deep LearningIRJET Journal
 
Deep-learning based single object tracker for night surveillance
Deep-learning based single object tracker for night surveillance  Deep-learning based single object tracker for night surveillance
Deep-learning based single object tracker for night surveillance IJECEIAES
 
Real Time Object Detection System with YOLO and CNN Models: A Review
Real Time Object Detection System with YOLO and CNN Models: A ReviewReal Time Object Detection System with YOLO and CNN Models: A Review
Real Time Object Detection System with YOLO and CNN Models: A ReviewSpringer
 
ROAD POTHOLE DETECTION USING YOLOV4 DARKNET
ROAD POTHOLE DETECTION USING YOLOV4 DARKNETROAD POTHOLE DETECTION USING YOLOV4 DARKNET
ROAD POTHOLE DETECTION USING YOLOV4 DARKNETIRJET Journal
 
INDOOR AND OUTDOOR NAVIGATION ASSISTANCE SYSTEM FOR VISUALLY IMPAIRED PEOPLE ...
INDOOR AND OUTDOOR NAVIGATION ASSISTANCE SYSTEM FOR VISUALLY IMPAIRED PEOPLE ...INDOOR AND OUTDOOR NAVIGATION ASSISTANCE SYSTEM FOR VISUALLY IMPAIRED PEOPLE ...
INDOOR AND OUTDOOR NAVIGATION ASSISTANCE SYSTEM FOR VISUALLY IMPAIRED PEOPLE ...IRJET Journal
 
Object Detection for Autonomous Cars using AI/ML
Object Detection for Autonomous Cars using AI/MLObject Detection for Autonomous Cars using AI/ML
Object Detection for Autonomous Cars using AI/MLIRJET Journal
 
Automatism System Using Faster R-CNN and SVM
Automatism System Using Faster R-CNN and SVMAutomatism System Using Faster R-CNN and SVM
Automatism System Using Faster R-CNN and SVMIRJET Journal
 
A Deep Learning algorithm for automatic detection of unexpected accidents und...
A Deep Learning algorithm for automatic detection of unexpected accidents und...A Deep Learning algorithm for automatic detection of unexpected accidents und...
A Deep Learning algorithm for automatic detection of unexpected accidents und...19520SaiSree
 
Electronic Circuit Assessment using Machine Learning (ML)
Electronic Circuit Assessment using Machine Learning (ML)Electronic Circuit Assessment using Machine Learning (ML)
Electronic Circuit Assessment using Machine Learning (ML)vivatechijri
 
IRJET- Application of MCNN in Object Detection
IRJET-  	  Application of MCNN in Object DetectionIRJET-  	  Application of MCNN in Object Detection
IRJET- Application of MCNN in Object DetectionIRJET Journal
 
IRJET- A Review Analysis to Detect an Object in Video Surveillance System
IRJET- A Review Analysis to Detect an Object in Video Surveillance SystemIRJET- A Review Analysis to Detect an Object in Video Surveillance System
IRJET- A Review Analysis to Detect an Object in Video Surveillance SystemIRJET Journal
 
A SURVEY ON KIDNEY STONE DETECTION USING IMAGE PROCESSING AND DEEP LEARNING
A SURVEY ON KIDNEY STONE DETECTION USING IMAGE PROCESSING AND DEEP LEARNINGA SURVEY ON KIDNEY STONE DETECTION USING IMAGE PROCESSING AND DEEP LEARNING
A SURVEY ON KIDNEY STONE DETECTION USING IMAGE PROCESSING AND DEEP LEARNINGIRJET Journal
 

Similar to Road Object Detection (20)

A REVIEW ON IMPROVING TRAFFIC-SIGN DETECTION USING YOLO ALGORITHM FOR OBJECT ...
A REVIEW ON IMPROVING TRAFFIC-SIGN DETECTION USING YOLO ALGORITHM FOR OBJECT ...A REVIEW ON IMPROVING TRAFFIC-SIGN DETECTION USING YOLO ALGORITHM FOR OBJECT ...
A REVIEW ON IMPROVING TRAFFIC-SIGN DETECTION USING YOLO ALGORITHM FOR OBJECT ...
 
Object Detetcion using SSD-MobileNet
Object Detetcion using SSD-MobileNetObject Detetcion using SSD-MobileNet
Object Detetcion using SSD-MobileNet
 
Sanjaya: A Blind Assistance System
Sanjaya: A Blind Assistance SystemSanjaya: A Blind Assistance System
Sanjaya: A Blind Assistance System
 
HOW TO WASTE YOUR TIME ON SIMPLE THINGS DONT JUST FEEL INSTEAD BLAME OTHERS A...
HOW TO WASTE YOUR TIME ON SIMPLE THINGS DONT JUST FEEL INSTEAD BLAME OTHERS A...HOW TO WASTE YOUR TIME ON SIMPLE THINGS DONT JUST FEEL INSTEAD BLAME OTHERS A...
HOW TO WASTE YOUR TIME ON SIMPLE THINGS DONT JUST FEEL INSTEAD BLAME OTHERS A...
 
Major PRC-1 ppt.pptx
Major PRC-1 ppt.pptxMajor PRC-1 ppt.pptx
Major PRC-1 ppt.pptx
 
DSNet Joint Semantic Learning for Object Detection in Inclement Weather Condi...
DSNet Joint Semantic Learning for Object Detection in Inclement Weather Condi...DSNet Joint Semantic Learning for Object Detection in Inclement Weather Condi...
DSNet Joint Semantic Learning for Object Detection in Inclement Weather Condi...
 
Vision-Based Motorcycle Crash Detection and Reporting Using Deep Learning
Vision-Based Motorcycle Crash Detection and Reporting Using Deep LearningVision-Based Motorcycle Crash Detection and Reporting Using Deep Learning
Vision-Based Motorcycle Crash Detection and Reporting Using Deep Learning
 
Deep-learning based single object tracker for night surveillance
Deep-learning based single object tracker for night surveillance  Deep-learning based single object tracker for night surveillance
Deep-learning based single object tracker for night surveillance
 
Real Time Object Detection System with YOLO and CNN Models: A Review
Real Time Object Detection System with YOLO and CNN Models: A ReviewReal Time Object Detection System with YOLO and CNN Models: A Review
Real Time Object Detection System with YOLO and CNN Models: A Review
 
ROAD POTHOLE DETECTION USING YOLOV4 DARKNET
ROAD POTHOLE DETECTION USING YOLOV4 DARKNETROAD POTHOLE DETECTION USING YOLOV4 DARKNET
ROAD POTHOLE DETECTION USING YOLOV4 DARKNET
 
information-11-00583-v3.pdf
information-11-00583-v3.pdfinformation-11-00583-v3.pdf
information-11-00583-v3.pdf
 
INDOOR AND OUTDOOR NAVIGATION ASSISTANCE SYSTEM FOR VISUALLY IMPAIRED PEOPLE ...
INDOOR AND OUTDOOR NAVIGATION ASSISTANCE SYSTEM FOR VISUALLY IMPAIRED PEOPLE ...INDOOR AND OUTDOOR NAVIGATION ASSISTANCE SYSTEM FOR VISUALLY IMPAIRED PEOPLE ...
INDOOR AND OUTDOOR NAVIGATION ASSISTANCE SYSTEM FOR VISUALLY IMPAIRED PEOPLE ...
 
Object Detection for Autonomous Cars using AI/ML
Object Detection for Autonomous Cars using AI/MLObject Detection for Autonomous Cars using AI/ML
Object Detection for Autonomous Cars using AI/ML
 
ObjectDetection.pptx
ObjectDetection.pptxObjectDetection.pptx
ObjectDetection.pptx
 
Automatism System Using Faster R-CNN and SVM
Automatism System Using Faster R-CNN and SVMAutomatism System Using Faster R-CNN and SVM
Automatism System Using Faster R-CNN and SVM
 
A Deep Learning algorithm for automatic detection of unexpected accidents und...
A Deep Learning algorithm for automatic detection of unexpected accidents und...A Deep Learning algorithm for automatic detection of unexpected accidents und...
A Deep Learning algorithm for automatic detection of unexpected accidents und...
 
Electronic Circuit Assessment using Machine Learning (ML)
Electronic Circuit Assessment using Machine Learning (ML)Electronic Circuit Assessment using Machine Learning (ML)
Electronic Circuit Assessment using Machine Learning (ML)
 
IRJET- Application of MCNN in Object Detection
IRJET-  	  Application of MCNN in Object DetectionIRJET-  	  Application of MCNN in Object Detection
IRJET- Application of MCNN in Object Detection
 
IRJET- A Review Analysis to Detect an Object in Video Surveillance System
IRJET- A Review Analysis to Detect an Object in Video Surveillance SystemIRJET- A Review Analysis to Detect an Object in Video Surveillance System
IRJET- A Review Analysis to Detect an Object in Video Surveillance System
 
A SURVEY ON KIDNEY STONE DETECTION USING IMAGE PROCESSING AND DEEP LEARNING
A SURVEY ON KIDNEY STONE DETECTION USING IMAGE PROCESSING AND DEEP LEARNINGA SURVEY ON KIDNEY STONE DETECTION USING IMAGE PROCESSING AND DEEP LEARNING
A SURVEY ON KIDNEY STONE DETECTION USING IMAGE PROCESSING AND DEEP LEARNING
 

More from Md. Mahfujur Rahman

Impact Prediction of Online Education during COVID-19 using Machine Learning_...
Impact Prediction of Online Education during COVID-19 using Machine Learning_...Impact Prediction of Online Education during COVID-19 using Machine Learning_...
Impact Prediction of Online Education during COVID-19 using Machine Learning_...Md. Mahfujur Rahman
 
HealthBlock: A Secured Healthcare Data using Blockchain
HealthBlock: A Secured Healthcare Data using BlockchainHealthBlock: A Secured Healthcare Data using Blockchain
HealthBlock: A Secured Healthcare Data using BlockchainMd. Mahfujur Rahman
 
Implementation of Automated Attendance System using Deep Learning
Implementation of Automated Attendance System using Deep LearningImplementation of Automated Attendance System using Deep Learning
Implementation of Automated Attendance System using Deep LearningMd. Mahfujur Rahman
 
Seminar on development based project
Seminar on development based projectSeminar on development based project
Seminar on development based projectMd. Mahfujur Rahman
 
DIUcerts DApp: A Blockchain-Based Solution for Verification of Educational Ce...
DIUcerts DApp: A Blockchain-Based Solution for Verification of Educational Ce...DIUcerts DApp: A Blockchain-Based Solution for Verification of Educational Ce...
DIUcerts DApp: A Blockchain-Based Solution for Verification of Educational Ce...Md. Mahfujur Rahman
 
Supply Chain management with Demand Forecasting of Covid-19 Vaccine using Blo...
Supply Chain management with Demand Forecasting of Covid-19 Vaccine using Blo...Supply Chain management with Demand Forecasting of Covid-19 Vaccine using Blo...
Supply Chain management with Demand Forecasting of Covid-19 Vaccine using Blo...Md. Mahfujur Rahman
 
Blockchain based certificate verification
Blockchain based certificate verificationBlockchain based certificate verification
Blockchain based certificate verificationMd. Mahfujur Rahman
 
Development Based Project- Step by Step Development Procedure
Development Based Project- Step by Step Development ProcedureDevelopment Based Project- Step by Step Development Procedure
Development Based Project- Step by Step Development ProcedureMd. Mahfujur Rahman
 
Cascade Classification of Face Liveliness Detection using HeartBeat Measurement
Cascade Classification of Face Liveliness Detection using HeartBeat MeasurementCascade Classification of Face Liveliness Detection using HeartBeat Measurement
Cascade Classification of Face Liveliness Detection using HeartBeat MeasurementMd. Mahfujur Rahman
 

More from Md. Mahfujur Rahman (13)

Impact Prediction of Online Education during COVID-19 using Machine Learning_...
Impact Prediction of Online Education during COVID-19 using Machine Learning_...Impact Prediction of Online Education during COVID-19 using Machine Learning_...
Impact Prediction of Online Education during COVID-19 using Machine Learning_...
 
HealthBlock: A Secured Healthcare Data using Blockchain
HealthBlock: A Secured Healthcare Data using BlockchainHealthBlock: A Secured Healthcare Data using Blockchain
HealthBlock: A Secured Healthcare Data using Blockchain
 
Implementation of Automated Attendance System using Deep Learning
Implementation of Automated Attendance System using Deep LearningImplementation of Automated Attendance System using Deep Learning
Implementation of Automated Attendance System using Deep Learning
 
Seminar on development based project
Seminar on development based projectSeminar on development based project
Seminar on development based project
 
DIUcerts DApp: A Blockchain-Based Solution for Verification of Educational Ce...
DIUcerts DApp: A Blockchain-Based Solution for Verification of Educational Ce...DIUcerts DApp: A Blockchain-Based Solution for Verification of Educational Ce...
DIUcerts DApp: A Blockchain-Based Solution for Verification of Educational Ce...
 
Supply Chain management with Demand Forecasting of Covid-19 Vaccine using Blo...
Supply Chain management with Demand Forecasting of Covid-19 Vaccine using Blo...Supply Chain management with Demand Forecasting of Covid-19 Vaccine using Blo...
Supply Chain management with Demand Forecasting of Covid-19 Vaccine using Blo...
 
Blockchain based certificate verification
Blockchain based certificate verificationBlockchain based certificate verification
Blockchain based certificate verification
 
Development Based Project- Step by Step Development Procedure
Development Based Project- Step by Step Development ProcedureDevelopment Based Project- Step by Step Development Procedure
Development Based Project- Step by Step Development Procedure
 
Research Agility spring 2021
Research Agility spring 2021Research Agility spring 2021
Research Agility spring 2021
 
ICT uses in Education
ICT uses in EducationICT uses in Education
ICT uses in Education
 
Road to machine learning
Road to machine learningRoad to machine learning
Road to machine learning
 
IoT for Digital Bangladesh
IoT for Digital BangladeshIoT for Digital Bangladesh
IoT for Digital Bangladesh
 
Cascade Classification of Face Liveliness Detection using HeartBeat Measurement
Cascade Classification of Face Liveliness Detection using HeartBeat MeasurementCascade Classification of Face Liveliness Detection using HeartBeat Measurement
Cascade Classification of Face Liveliness Detection using HeartBeat Measurement
 

Recently uploaded

EMERCE - 2024 - AMSTERDAM - CROSS-PLATFORM TRACKING WITH GOOGLE ANALYTICS.pptx
EMERCE - 2024 - AMSTERDAM - CROSS-PLATFORM  TRACKING WITH GOOGLE ANALYTICS.pptxEMERCE - 2024 - AMSTERDAM - CROSS-PLATFORM  TRACKING WITH GOOGLE ANALYTICS.pptx
EMERCE - 2024 - AMSTERDAM - CROSS-PLATFORM TRACKING WITH GOOGLE ANALYTICS.pptxthyngster
 
Building on a FAIRly Strong Foundation to Connect Academic Research to Transl...
Building on a FAIRly Strong Foundation to Connect Academic Research to Transl...Building on a FAIRly Strong Foundation to Connect Academic Research to Transl...
Building on a FAIRly Strong Foundation to Connect Academic Research to Transl...Jack DiGiovanna
 
Customer Service Analytics - Make Sense of All Your Data.pptx
Customer Service Analytics - Make Sense of All Your Data.pptxCustomer Service Analytics - Make Sense of All Your Data.pptx
Customer Service Analytics - Make Sense of All Your Data.pptxEmmanuel Dauda
 
B2 Creative Industry Response Evaluation.docx
B2 Creative Industry Response Evaluation.docxB2 Creative Industry Response Evaluation.docx
B2 Creative Industry Response Evaluation.docxStephen266013
 
专业一比一美国俄亥俄大学毕业证成绩单pdf电子版制作修改
专业一比一美国俄亥俄大学毕业证成绩单pdf电子版制作修改专业一比一美国俄亥俄大学毕业证成绩单pdf电子版制作修改
专业一比一美国俄亥俄大学毕业证成绩单pdf电子版制作修改yuu sss
 
How we prevented account sharing with MFA
How we prevented account sharing with MFAHow we prevented account sharing with MFA
How we prevented account sharing with MFAAndrei Kaleshka
 
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...dajasot375
 
9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort service
9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort service9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort service
9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort servicejennyeacort
 
Dubai Call Girls Wifey O52&786472 Call Girls Dubai
Dubai Call Girls Wifey O52&786472 Call Girls DubaiDubai Call Girls Wifey O52&786472 Call Girls Dubai
Dubai Call Girls Wifey O52&786472 Call Girls Dubaihf8803863
 
Amazon TQM (2) Amazon TQM (2)Amazon TQM (2).pptx
Amazon TQM (2) Amazon TQM (2)Amazon TQM (2).pptxAmazon TQM (2) Amazon TQM (2)Amazon TQM (2).pptx
Amazon TQM (2) Amazon TQM (2)Amazon TQM (2).pptxAbdelrhman abooda
 
Call Girls in Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Defence Colony Delhi 💯Call Us 🔝8264348440🔝Call Girls in Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Defence Colony Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
04242024_CCC TUG_Joins and Relationships
04242024_CCC TUG_Joins and Relationships04242024_CCC TUG_Joins and Relationships
04242024_CCC TUG_Joins and Relationshipsccctableauusergroup
 
RA-11058_IRR-COMPRESS Do 198 series of 1998
RA-11058_IRR-COMPRESS Do 198 series of 1998RA-11058_IRR-COMPRESS Do 198 series of 1998
RA-11058_IRR-COMPRESS Do 198 series of 1998YohFuh
 
20240419 - Measurecamp Amsterdam - SAM.pdf
20240419 - Measurecamp Amsterdam - SAM.pdf20240419 - Measurecamp Amsterdam - SAM.pdf
20240419 - Measurecamp Amsterdam - SAM.pdfHuman37
 
Predictive Analysis - Using Insight-informed Data to Determine Factors Drivin...
Predictive Analysis - Using Insight-informed Data to Determine Factors Drivin...Predictive Analysis - Using Insight-informed Data to Determine Factors Drivin...
Predictive Analysis - Using Insight-informed Data to Determine Factors Drivin...ThinkInnovation
 
Call Us ➥97111√47426🤳Call Girls in Aerocity (Delhi NCR)
Call Us ➥97111√47426🤳Call Girls in Aerocity (Delhi NCR)Call Us ➥97111√47426🤳Call Girls in Aerocity (Delhi NCR)
Call Us ➥97111√47426🤳Call Girls in Aerocity (Delhi NCR)jennyeacort
 
DBA Basics: Getting Started with Performance Tuning.pdf
DBA Basics: Getting Started with Performance Tuning.pdfDBA Basics: Getting Started with Performance Tuning.pdf
DBA Basics: Getting Started with Performance Tuning.pdfJohn Sterrett
 
Kantar AI Summit- Under Embargo till Wednesday, 24th April 2024, 4 PM, IST.pdf
Kantar AI Summit- Under Embargo till Wednesday, 24th April 2024, 4 PM, IST.pdfKantar AI Summit- Under Embargo till Wednesday, 24th April 2024, 4 PM, IST.pdf
Kantar AI Summit- Under Embargo till Wednesday, 24th April 2024, 4 PM, IST.pdfSocial Samosa
 
RS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝Delhi
RS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝DelhiRS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝Delhi
RS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝Delhijennyeacort
 

Recently uploaded (20)

EMERCE - 2024 - AMSTERDAM - CROSS-PLATFORM TRACKING WITH GOOGLE ANALYTICS.pptx
EMERCE - 2024 - AMSTERDAM - CROSS-PLATFORM  TRACKING WITH GOOGLE ANALYTICS.pptxEMERCE - 2024 - AMSTERDAM - CROSS-PLATFORM  TRACKING WITH GOOGLE ANALYTICS.pptx
EMERCE - 2024 - AMSTERDAM - CROSS-PLATFORM TRACKING WITH GOOGLE ANALYTICS.pptx
 
Building on a FAIRly Strong Foundation to Connect Academic Research to Transl...
Building on a FAIRly Strong Foundation to Connect Academic Research to Transl...Building on a FAIRly Strong Foundation to Connect Academic Research to Transl...
Building on a FAIRly Strong Foundation to Connect Academic Research to Transl...
 
Deep Generative Learning for All - The Gen AI Hype (Spring 2024)
Deep Generative Learning for All - The Gen AI Hype (Spring 2024)Deep Generative Learning for All - The Gen AI Hype (Spring 2024)
Deep Generative Learning for All - The Gen AI Hype (Spring 2024)
 
Customer Service Analytics - Make Sense of All Your Data.pptx
Customer Service Analytics - Make Sense of All Your Data.pptxCustomer Service Analytics - Make Sense of All Your Data.pptx
Customer Service Analytics - Make Sense of All Your Data.pptx
 
B2 Creative Industry Response Evaluation.docx
B2 Creative Industry Response Evaluation.docxB2 Creative Industry Response Evaluation.docx
B2 Creative Industry Response Evaluation.docx
 
专业一比一美国俄亥俄大学毕业证成绩单pdf电子版制作修改
专业一比一美国俄亥俄大学毕业证成绩单pdf电子版制作修改专业一比一美国俄亥俄大学毕业证成绩单pdf电子版制作修改
专业一比一美国俄亥俄大学毕业证成绩单pdf电子版制作修改
 
How we prevented account sharing with MFA
How we prevented account sharing with MFAHow we prevented account sharing with MFA
How we prevented account sharing with MFA
 
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...
 
9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort service
9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort service9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort service
9711147426✨Call In girls Gurgaon Sector 31. SCO 25 escort service
 
Dubai Call Girls Wifey O52&786472 Call Girls Dubai
Dubai Call Girls Wifey O52&786472 Call Girls DubaiDubai Call Girls Wifey O52&786472 Call Girls Dubai
Dubai Call Girls Wifey O52&786472 Call Girls Dubai
 
Amazon TQM (2) Amazon TQM (2)Amazon TQM (2).pptx
Amazon TQM (2) Amazon TQM (2)Amazon TQM (2).pptxAmazon TQM (2) Amazon TQM (2)Amazon TQM (2).pptx
Amazon TQM (2) Amazon TQM (2)Amazon TQM (2).pptx
 
Call Girls in Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Defence Colony Delhi 💯Call Us 🔝8264348440🔝Call Girls in Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Defence Colony Delhi 💯Call Us 🔝8264348440🔝
 
04242024_CCC TUG_Joins and Relationships
04242024_CCC TUG_Joins and Relationships04242024_CCC TUG_Joins and Relationships
04242024_CCC TUG_Joins and Relationships
 
RA-11058_IRR-COMPRESS Do 198 series of 1998
RA-11058_IRR-COMPRESS Do 198 series of 1998RA-11058_IRR-COMPRESS Do 198 series of 1998
RA-11058_IRR-COMPRESS Do 198 series of 1998
 
20240419 - Measurecamp Amsterdam - SAM.pdf
20240419 - Measurecamp Amsterdam - SAM.pdf20240419 - Measurecamp Amsterdam - SAM.pdf
20240419 - Measurecamp Amsterdam - SAM.pdf
 
Predictive Analysis - Using Insight-informed Data to Determine Factors Drivin...
Predictive Analysis - Using Insight-informed Data to Determine Factors Drivin...Predictive Analysis - Using Insight-informed Data to Determine Factors Drivin...
Predictive Analysis - Using Insight-informed Data to Determine Factors Drivin...
 
Call Us ➥97111√47426🤳Call Girls in Aerocity (Delhi NCR)
Call Us ➥97111√47426🤳Call Girls in Aerocity (Delhi NCR)Call Us ➥97111√47426🤳Call Girls in Aerocity (Delhi NCR)
Call Us ➥97111√47426🤳Call Girls in Aerocity (Delhi NCR)
 
DBA Basics: Getting Started with Performance Tuning.pdf
DBA Basics: Getting Started with Performance Tuning.pdfDBA Basics: Getting Started with Performance Tuning.pdf
DBA Basics: Getting Started with Performance Tuning.pdf
 
Kantar AI Summit- Under Embargo till Wednesday, 24th April 2024, 4 PM, IST.pdf
Kantar AI Summit- Under Embargo till Wednesday, 24th April 2024, 4 PM, IST.pdfKantar AI Summit- Under Embargo till Wednesday, 24th April 2024, 4 PM, IST.pdf
Kantar AI Summit- Under Embargo till Wednesday, 24th April 2024, 4 PM, IST.pdf
 
RS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝Delhi
RS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝DelhiRS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝Delhi
RS 9000 Call In girls Dwarka Mor (DELHI)⇛9711147426🔝Delhi
 

Road Object Detection

  • 1. Road Object Detection in Bangladesh using Faster RCNN: A Deep learning Approach Anik Datta, Tamara Islam Meghla, Tania Khatun, Mehedi Hasan Bhuiya, Shakilur Rahman Shuvo and Md. Mahfujur Rahman PAPER ID 282
  • 2. WIECON-ECE 2020 2020 IEEE International Woman in Engineering (WIE) Conference on Electrical & Computer Engineering wiecon-ece.org Outline • Introduction • Motivation • Methodology • Result and Discussion • Conclusion ANIK DATTA, ROAD OBJECT DETECTION IN BANGLADESH USING FASTER RCNN: A DEEP LEARNING APPROACH • 2
  • 3. WIECON-ECE 2020 2020 IEEE International Woman in Engineering (WIE) Conference on Electrical & Computer Engineering wiecon-ece.org Introduction • Object detection is a combination of computer vision and image processing technology that can detect similar objects of a certain class from images and videos. • The role of object detection is very important for autonomous car, intelligent driving assistance and advanced traffic analysis nowadays. •In the case of traffic analysis and intelligent driving assistance in Bangladesh, it is very important to properly identify all the objects from real time video. •Our main objective is to accurately identify every object on the road such as pedestrians, vehicles, traffic lights and traffic signs in a populous country like Bangladesh and use them to better analyse the traffic situation or use this information in automated driving. 3ANIK DATTA, ROAD OBJECT DETECTION IN BANGLADESH USING FASTER RCNN: A DEEP LEARNING APPROACH
  • 4. WIECON-ECE 2020 2020 IEEE International Woman in Engineering (WIE) Conference on Electrical & Computer Engineering wiecon-ece.org Motivation • Road accident in Bangladesh has become an important issue. •There has been an alarming rise in road accidents, significantly highway accidents, in Bangladesh over the past few years. •Road accidents are mainly occurred for drivers carelessness and violating traffic laws. •To solve such problems we have done this research to save some lives from accidents and to extract important traffic information so that the traffic system can be further improved in the future. 4ANIK DATTA, ROAD OBJECT DETECTION IN BANGLADESH USING FASTER RCNN: A DEEP LEARNING APPROACH
  • 5. WIECON-ECE 2020 2020 IEEE International Woman in Engineering (WIE) Conference on Electrical & Computer Engineering wiecon-ece.org Methodology The reason why did we choose to use Faster R-CNN Faster R-CNN is one of the most popular object detection algorithm. We chose Faster R-CNN for object detection because it is faster and it fixed the problem using Region Proposals Network(RPN).Test time speed of Faster R-CNN for per image 0.2 seconds. Although YOLO is faster than Faster r-cnn. YOLO has some drawbacks in object detection. It is difficult for YOLO in detecting objects that are small and close to each other. Even if the aspect ratio of the image changes, YOLO faces difficulty in object detection. 5ANIK DATTA, ROAD OBJECT DETECTION IN BANGLADESH USING FASTER RCNN: A DEEP LEARNING APPROACH
  • 6. WIECON-ECE 2020 2020 IEEE International Woman in Engineering (WIE) Conference on Electrical & Computer Engineering wiecon-ece.org Methodology Data Accumulation We collect our findable image by clicking photographs and also collect images for our dataset from google. After collecting the images after that we label the desired objects in every image. Faster RCNN We use Faster R-CNN architecture for object detection. It is a modified version of Fast R-CNN. At first Faster R-CNN extracts the input image using convolution neural networks and passes those maps through the region proposal network(RPN). Faster R-CNN uses convolution neural network. It is very effective in image recognition and classification. It can successfully identifying face, object and traffic sign. 6ANIK DATTA, ROAD OBJECT DETECTION IN BANGLADESH USING FASTER RCNN: A DEEP LEARNING APPROACH
  • 7. WIECON-ECE 2020 2020 IEEE International Woman in Engineering (WIE) Conference on Electrical & Computer Engineering wiecon-ece.org Methodology 7 Fig. 1: Working procedure of RPN Fig. 2: Object detection with Faster R-CNN ANIK DATTA, ROAD OBJECT DETECTION IN BANGLADESH USING FASTER RCNN: A DEEP LEARNING APPROACH
  • 8. WIECON-ECE 2020 2020 IEEE International Woman in Engineering (WIE) Conference on Electrical & Computer Engineering wiecon-ece.org Methodology Training and Prediction We have trained our Neural Network through TensorFlow api by Faster R-CNN in 19 object classes. We used inception v2 coco architecture utilize due to high accuracy among convolution neural networks. That inception v2 has the best learning rate for faster RCNN. Our neural network has completed 80,651 global steps during training and has a loss value of 0.0122. We have enlisted the help of Google colab to complete the above process. 8ANIK DATTA, ROAD OBJECT DETECTION IN BANGLADESH USING FASTER RCNN: A DEEP LEARNING APPROACH
  • 9. WIECON-ECE 2020 2020 IEEE International Woman in Engineering (WIE) Conference on Electrical & Computer Engineering wiecon-ece.org Result and Discussion Performance Analysis We took a huge number of instances from the data set to train and observed them with precise needs. For testing purposes, we select 199 instances with same label and 125images as different label. After that, the prediction accuracy jumped up to 86.42%. 9ANIK DATTA, ROAD OBJECT DETECTION IN BANGLADESH USING FASTER RCNN: A DEEP LEARNING APPROACH
  • 10. WIECON-ECE 2020 2020 IEEE International Woman in Engineering (WIE) Conference on Electrical & Computer Engineering wiecon-ece.org Result and Discussion Real-time detection result • We noticed some promising things while checking our results like we were able to detect objects with almost equal efficiency in day and night or in low light. 10 Fig. 3: Detection in day(Bright light) and night(low light) ANIK DATTA, ROAD OBJECT DETECTION IN BANGLADESH USING FASTER RCNN: A DEEP LEARNING APPROACH
  • 11. WIECON-ECE 2020 2020 IEEE International Woman in Engineering (WIE) Conference on Electrical & Computer Engineering wiecon-ece.org Result and Discussion • Our neural network has been able to detect objects efficiently with moderate and low traffic on the road. And succeeds in detecting all types of small-to-large-medium objects in all situation. 11 Fig. 4: Detection in medium and low traffic ANIK DATTA, ROAD OBJECT DETECTION IN BANGLADESH USING FASTER RCNN: A DEEP LEARNING APPROACH
  • 12. WIECON-ECE 2020 2020 IEEE International Woman in Engineering (WIE) Conference on Electrical & Computer Engineering wiecon-ece.org Result and Discussion • Our purposed neural network can detect and analyze objects well even when the objects are very close to each other and even during high traffic on the road. 12 Fig. 5: Detection in high traffic ANIK DATTA, ROAD OBJECT DETECTION IN BANGLADESH USING FASTER RCNN: A DEEP LEARNING APPROACH
  • 13. WIECON-ECE 2020 2020 IEEE International Woman in Engineering (WIE) Conference on Electrical & Computer Engineering wiecon-ece.org Result and Discussion • But it only gets into trouble when the objects are too close together and cling to each other in a crowded state. •When detecting objects on high traffic or in close proximity to the road, objects in the front make it difficult to detect the objects behind because the objects in the front cover the objects behind and therefore our proposed neural network can only accurately detect objects in the front. 13ANIK DATTA, ROAD OBJECT DETECTION IN BANGLADESH USING FASTER RCNN: A DEEP LEARNING APPROACH
  • 14. WIECON-ECE 2020 2020 IEEE International Woman in Engineering (WIE) Conference on Electrical & Computer Engineering wiecon-ece.org Conclusion • In this paper our proposed solution is able to analyse in different situations like night, daylight or high traffic, medium traffic, low traffic fairly efficiently. • And our proposed solution is able to track multiple objects which is possible due to its huge object class. • When we test through this data set, some objects are mistakenly detected and many times some objects are not detected. • The reasons we have investigated are that if it is processed on a low powered machine without a GPU, there is a possibility of incorrect detection and another reason is that the images we used to create the data set have different traffic situations. • It could be further improved in the future to be used more efficiently in real-time traffic analysis. 14ANIK DATTA, ROAD OBJECT DETECTION IN BANGLADESH USING FASTER RCNN: A DEEP LEARNING APPROACH
  • 15. WIECON-ECE 2020 2020 IEEE International Woman in Engineering (WIE) Conference on Electrical & Computer Engineering wiecon-ece.org Thanks 15ANIK DATTA, ROAD OBJECT DETECTION IN BANGLADESH USING FASTER RCNN: A DEEP LEARNING APPROACH