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

Deep sort and sort paper introduce presentation
Deep sort and sort paper introduce presentationDeep sort and sort paper introduce presentation
Deep sort and sort paper introduce presentation경훈 김
 
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
 
Final Report on Optical Character Recognition
Final Report on Optical Character Recognition Final Report on Optical Character Recognition
Final Report on Optical Character Recognition Vidyut Singhania
 
Machine Learning - Object Detection and Classification
Machine Learning - Object Detection and ClassificationMachine Learning - Object Detection and Classification
Machine Learning - Object Detection and ClassificationVikas Jain
 
Image classification with Deep Neural Networks
Image classification with Deep Neural NetworksImage classification with Deep Neural Networks
Image classification with Deep Neural NetworksYogendra Tamang
 
Real Time Object Dectection using machine learning
Real Time Object Dectection using machine learningReal Time Object Dectection using machine learning
Real Time Object Dectection using machine learningpratik pratyay
 
A thesis presentation on pothole detection
A thesis presentation on pothole detectionA thesis presentation on pothole detection
A thesis presentation on pothole detectionPrimeAsia University
 
[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 presentation
Object detection presentationObject detection presentation
Object detection presentationAshwinBicholiya
 
Computer Vision - Real Time Face Recognition using Open CV and Python
Computer Vision - Real Time Face Recognition using Open CV and PythonComputer Vision - Real Time Face Recognition using Open CV and Python
Computer Vision - Real Time Face Recognition using Open CV and PythonAkash Satamkar
 
Image Processing with OpenCV
Image Processing with OpenCVImage Processing with OpenCV
Image Processing with OpenCVdebayanin
 
Iris recognition system
Iris recognition systemIris recognition system
Iris recognition systemNilu Desai
 
Media Player with Face Detection and Hand Gesture
Media Player with Face Detection and Hand GestureMedia Player with Face Detection and Hand Gesture
Media Player with Face Detection and Hand GestureIRJET Journal
 

What's hot (20)

Object detection.pptx
Object detection.pptxObject detection.pptx
Object detection.pptx
 
Stress detection using Image processing
Stress detection using Image processingStress detection using Image processing
Stress detection using Image processing
 
Yolov5
Yolov5 Yolov5
Yolov5
 
Deep sort and sort paper introduce presentation
Deep sort and sort paper introduce presentationDeep sort and sort paper introduce presentation
Deep sort and sort paper introduce presentation
 
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
 
Final Report on Optical Character Recognition
Final Report on Optical Character Recognition Final Report on Optical Character Recognition
Final Report on Optical Character Recognition
 
Machine Learning - Object Detection and Classification
Machine Learning - Object Detection and ClassificationMachine Learning - Object Detection and Classification
Machine Learning - Object Detection and Classification
 
Image classification with Deep Neural Networks
Image classification with Deep Neural NetworksImage classification with Deep Neural Networks
Image classification with Deep Neural Networks
 
Real Time Object Dectection using machine learning
Real Time Object Dectection using machine learningReal Time Object Dectection using machine learning
Real Time Object Dectection using machine learning
 
Object detection
Object detectionObject detection
Object detection
 
Presentation of Visual Tracking
Presentation of Visual TrackingPresentation of Visual Tracking
Presentation of Visual Tracking
 
Object detection
Object detectionObject detection
Object detection
 
A thesis presentation on pothole detection
A thesis presentation on pothole detectionA thesis presentation on pothole detection
A thesis presentation on pothole 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
[PR12] You Only Look Once (YOLO): Unified Real-Time Object Detection
 
Object detection presentation
Object detection presentationObject detection presentation
Object detection presentation
 
Computer Vision - Real Time Face Recognition using Open CV and Python
Computer Vision - Real Time Face Recognition using Open CV and PythonComputer Vision - Real Time Face Recognition using Open CV and Python
Computer Vision - Real Time Face Recognition using Open CV and Python
 
YOLO
YOLOYOLO
YOLO
 
Image Processing with OpenCV
Image Processing with OpenCVImage Processing with OpenCV
Image Processing with OpenCV
 
Iris recognition system
Iris recognition systemIris recognition system
Iris recognition system
 
Media Player with Face Detection and Hand Gesture
Media Player with Face Detection and Hand GestureMedia Player with Face Detection and Hand Gesture
Media Player with Face Detection and Hand Gesture
 

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

B2 Creative Industry Response Evaluation.docx
B2 Creative Industry Response Evaluation.docxB2 Creative Industry Response Evaluation.docx
B2 Creative Industry Response Evaluation.docxStephen266013
 
Industrialised data - the key to AI success.pdf
Industrialised data - the key to AI success.pdfIndustrialised data - the key to AI success.pdf
Industrialised data - the key to AI success.pdfLars Albertsson
 
Ukraine War presentation: KNOW THE BASICS
Ukraine War presentation: KNOW THE BASICSUkraine War presentation: KNOW THE BASICS
Ukraine War presentation: KNOW THE BASICSAishani27
 
Generative AI on Enterprise Cloud with NiFi and Milvus
Generative AI on Enterprise Cloud with NiFi and MilvusGenerative AI on Enterprise Cloud with NiFi and Milvus
Generative AI on Enterprise Cloud with NiFi and MilvusTimothy Spann
 
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
 
Halmar dropshipping via API with DroFx
Halmar  dropshipping  via API with DroFxHalmar  dropshipping  via API with DroFx
Halmar dropshipping via API with DroFxolyaivanovalion
 
FESE Capital Markets Fact Sheet 2024 Q1.pdf
FESE Capital Markets Fact Sheet 2024 Q1.pdfFESE Capital Markets Fact Sheet 2024 Q1.pdf
FESE Capital Markets Fact Sheet 2024 Q1.pdfMarinCaroMartnezBerg
 
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
 
Smarteg dropshipping via API with DroFx.pptx
Smarteg dropshipping via API with DroFx.pptxSmarteg dropshipping via API with DroFx.pptx
Smarteg dropshipping via API with DroFx.pptxolyaivanovalion
 
定制英国白金汉大学毕业证(UCB毕业证书) 成绩单原版一比一
定制英国白金汉大学毕业证(UCB毕业证书)																			成绩单原版一比一定制英国白金汉大学毕业证(UCB毕业证书)																			成绩单原版一比一
定制英国白金汉大学毕业证(UCB毕业证书) 成绩单原版一比一ffjhghh
 
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Callshivangimorya083
 
VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...
VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...
VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...Suhani Kapoor
 
Low Rate Call Girls Bhilai Anika 8250192130 Independent Escort Service Bhilai
Low Rate Call Girls Bhilai Anika 8250192130 Independent Escort Service BhilaiLow Rate Call Girls Bhilai Anika 8250192130 Independent Escort Service Bhilai
Low Rate Call Girls Bhilai Anika 8250192130 Independent Escort Service BhilaiSuhani Kapoor
 
Unveiling Insights: The Role of a Data Analyst
Unveiling Insights: The Role of a Data AnalystUnveiling Insights: The Role of a Data Analyst
Unveiling Insights: The Role of a Data AnalystSamantha Rae Coolbeth
 
Market Analysis in the 5 Largest Economic Countries in Southeast Asia.pdf
Market Analysis in the 5 Largest Economic Countries in Southeast Asia.pdfMarket Analysis in the 5 Largest Economic Countries in Southeast Asia.pdf
Market Analysis in the 5 Largest Economic Countries in Southeast Asia.pdfRachmat Ramadhan H
 
April 2024 - Crypto Market Report's Analysis
April 2024 - Crypto Market Report's AnalysisApril 2024 - Crypto Market Report's Analysis
April 2024 - Crypto Market Report's Analysismanisha194592
 
04242024_CCC TUG_Joins and Relationships
04242024_CCC TUG_Joins and Relationships04242024_CCC TUG_Joins and Relationships
04242024_CCC TUG_Joins and Relationshipsccctableauusergroup
 
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
 

Recently uploaded (20)

B2 Creative Industry Response Evaluation.docx
B2 Creative Industry Response Evaluation.docxB2 Creative Industry Response Evaluation.docx
B2 Creative Industry Response Evaluation.docx
 
Industrialised data - the key to AI success.pdf
Industrialised data - the key to AI success.pdfIndustrialised data - the key to AI success.pdf
Industrialised data - the key to AI success.pdf
 
Ukraine War presentation: KNOW THE BASICS
Ukraine War presentation: KNOW THE BASICSUkraine War presentation: KNOW THE BASICS
Ukraine War presentation: KNOW THE BASICS
 
Generative AI on Enterprise Cloud with NiFi and Milvus
Generative AI on Enterprise Cloud with NiFi and MilvusGenerative AI on Enterprise Cloud with NiFi and Milvus
Generative AI on Enterprise Cloud with NiFi and Milvus
 
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
 
Halmar dropshipping via API with DroFx
Halmar  dropshipping  via API with DroFxHalmar  dropshipping  via API with DroFx
Halmar dropshipping via API with DroFx
 
FESE Capital Markets Fact Sheet 2024 Q1.pdf
FESE Capital Markets Fact Sheet 2024 Q1.pdfFESE Capital Markets Fact Sheet 2024 Q1.pdf
FESE Capital Markets Fact Sheet 2024 Q1.pdf
 
E-Commerce Order PredictionShraddha Kamble.pptx
E-Commerce Order PredictionShraddha Kamble.pptxE-Commerce Order PredictionShraddha Kamble.pptx
E-Commerce Order PredictionShraddha Kamble.pptx
 
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
 
Smarteg dropshipping via API with DroFx.pptx
Smarteg dropshipping via API with DroFx.pptxSmarteg dropshipping via API with DroFx.pptx
Smarteg dropshipping via API with DroFx.pptx
 
定制英国白金汉大学毕业证(UCB毕业证书) 成绩单原版一比一
定制英国白金汉大学毕业证(UCB毕业证书)																			成绩单原版一比一定制英国白金汉大学毕业证(UCB毕业证书)																			成绩单原版一比一
定制英国白金汉大学毕业证(UCB毕业证书) 成绩单原版一比一
 
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
 
VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...
VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...
VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...
 
Low Rate Call Girls Bhilai Anika 8250192130 Independent Escort Service Bhilai
Low Rate Call Girls Bhilai Anika 8250192130 Independent Escort Service BhilaiLow Rate Call Girls Bhilai Anika 8250192130 Independent Escort Service Bhilai
Low Rate Call Girls Bhilai Anika 8250192130 Independent Escort Service Bhilai
 
Unveiling Insights: The Role of a Data Analyst
Unveiling Insights: The Role of a Data AnalystUnveiling Insights: The Role of a Data Analyst
Unveiling Insights: The Role of a Data Analyst
 
Market Analysis in the 5 Largest Economic Countries in Southeast Asia.pdf
Market Analysis in the 5 Largest Economic Countries in Southeast Asia.pdfMarket Analysis in the 5 Largest Economic Countries in Southeast Asia.pdf
Market Analysis in the 5 Largest Economic Countries in Southeast Asia.pdf
 
April 2024 - Crypto Market Report's Analysis
April 2024 - Crypto Market Report's AnalysisApril 2024 - Crypto Market Report's Analysis
April 2024 - Crypto Market Report's Analysis
 
04242024_CCC TUG_Joins and Relationships
04242024_CCC TUG_Joins and Relationships04242024_CCC TUG_Joins and Relationships
04242024_CCC TUG_Joins and Relationships
 
VIP Call Girls Service Charbagh { Lucknow Call Girls Service 9548273370 } Boo...
VIP Call Girls Service Charbagh { Lucknow Call Girls Service 9548273370 } Boo...VIP Call Girls Service Charbagh { Lucknow Call Girls Service 9548273370 } Boo...
VIP Call Girls Service Charbagh { Lucknow Call Girls Service 9548273370 } Boo...
 
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
 

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