SlideShare a Scribd company logo
1 of 4
Download to read offline
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 06 | Jun 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 2805
Automated Defect Classifier for PCBs using Raspberry Pi
G P V Kishore1, R L N N Sai Abhijeet2, B Likith3, Sushmitha4
1Associate Professor, ECE Department, ACE Engineering College, Ghatkesar, Telangana, India.
234Student, ECE Department, ACE Engineering College, Ghatkesar, Telangana, India.
---------------------------------------------------------------------***---------------------------------------------------------------------
Abstract - Printed circuit boards (PCBs) are an important
component in the production of electronic products. A minor
defect on the PCB can cause severe problems in the finished
product, making PCB surface inspection one of the most
crucial quality control tasks [1]. Because of the limits of
manual examination, major efforts have been made to
automate the process using high resolution CCD or CMOS
sensors. Setting pass/fail criteria based on small failure
samples has always been difficultintraditional machinevision
systems, despite advanced sensor technology [2]. As a result,
this paper proposes a deep learning method based on the you-
only-look-once (YOLO) concept. A networkof24convolutional
layers and two fully linked layers make up the suggested
approach. The model has been trained with 10,480 photos of
diverse defects, including shorts, spurs, and mouse bites. In
comparison to state-of-the-art works, theexperimentalresults
show that our approach detects defective PCBs with high
accuracy (95%).
Key Words: Convolutional Neural Network, YOLO,
Raspberry Pi, PCB
1.INTRODUCTION
The Printed Circuit Board (PCB) is in most electronic
products, mechanically supporting and connecting
components along conductive tracks. Their prevalence
underlies the modern electronics industry, with a world
market exceeding $60 billion. PCBs are prone to a variety of
defects that impede proper manufacturing, costing
companies money. Defects such as shorts, spurs, mouse
bites, and pinholes cause issues like current leakage and
open circuits, quickly degrading performance or rendering
PCBs useless. In this project we will build a full PCB Defect
Classifier that automates thetask ofdetectingandclassifying
defects in printed circuit boards. We will build a complete
module that not only detects any defects in the given circuit
board but also will segregate depending on the results. To
overcome this problem, we propose an automated model
that segregates the good PCBs from the defected ones. We
use yolo model to detect the defectsusinga RaspberryPi and
Pi camera, which whose results will be transferred to an
Arduino. Based on the results the PCB is either moved
forward or is pushed away. The model has over 95%
accuracy as this is trained with a huge data set -
approximately 10, 680 images that has been divided into
80% testing images and 20% valuation images. This model
does not require any input image or any other extra sources
as many models out there need. This model is trained to
detect the defects directly. We use YOLO – You only look
once model to detect the defects.
2. METHODOLOGY
2.1 Dataset
2.1.1 Image Collection
Each image in this dataset was created using a linear scan
CCD with a resolution of about 48 pixels per millimeter. The
defect-free template images are manually examined and
cleaned from sampling photos. The templates and the image
that was tested original dimensions are roughly 16k by 16k
pixels. Then, using template matching techniques, they are
cropped into several 640 × 640 sub-images and aligned. The
next step is to carefullychooseathresholdtousebinarization
in order to prevent lighting disturbance. However, image
registration and thresholding techniques are a common
approach for high-accuracy PCB defect localization and
classification. The following figure shows a sample pair from
the dataset, with Figure 2 representing the defect-free
template image and Figure 1 representing the defective
tested image with the ground truth annotations.
Fig -1: Tested Image
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 06 | Jun 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 2806
Fig -2: Template Image
2.1.2 Image Annotation
An axis-aligned bounding box with a class ID is used for each
defect in the analyzed images. The figure above (Figure 1)
highlights six common PCB flaws: open, short, mouse bite,
spur, pin hole, and spurious copper. Since the tested image
only has a few minor defects, 3 to 12 fictitious faults are
added to each 640 x 640 image by adding artificial defects in
accordance with PCB defect patterns to each tested image.
The number of PCB faults is depicted in the following figure
(Figure 3). The remaining 1,000 images are divided into a
training set and a test set.
Fig -3: PCB Defects
2.2 YOLO – v5
YOLO is a regression-based target detection system. YOLO
completes the prediction of the categorization and position
information of the objects according to the computation of
the loss function after receiving the photos or video into the
deep network, transforming the target detection problem
into a regression problem solution [3].
Based on the YOLO detection architecture, YOLOv5 [4]
employs someof the best algorithm optimization techniques
developed recently in the field of convolutional neural
networks, including auto learning bounding box anchors,
mosaic data augmentation, the cross-stage partial network,
and others. These techniques are responsible for various
tasks in various parts of the YOLOv5 architecture. The input,
backbone, neck, and output arethefourmajorcomponentsof
the YOLOv5 architecture. The preparation of the data,
including mosaic data augmentation [5] and adaptive image
filling, is primarily done at the input terminal. The adaptive
anchor framecomputationthatYOLOv5includesontheinput
allows it to automatically set the starting anchor frame size
when the dataset changes, allowing it to adapt to various
datasets.
In order to extract feature maps of various sizes from the
input picture via multiple convolution and pooling, the
backbone network mostly employs a cross-stage partial
network (CSP) [6] and spatial pyramid pooling (SPP) [7].
While the SPP structure accomplishes the feature extraction
from several scales forthesamefeaturemapandiscapableof
generatingthree-scalefeaturemaps,whichhelpsenhancethe
detection accuracy, BottleneckCSP is used to reduce the
amount of calculation and speed up inference.
The FPNandPANfeaturepyramidarchitecturesaredeployed
as the neck network. Strong semantic features from the top
feature maps are transmitted to the lower feature maps
through the FPN [8] structure. The PAN [9] structure
simultaneously transfers potent localization features from
lower feature maps to higher feature maps. Together, these
two structures reinforce the features obtained from various
network levels in the backbone fusion process, which
enhances the detection capabilities.
The head output'sprimaryapplicationistoforecasttargetsof
various sizes on featuremapsas the last detectingphase.The
four architectures that make up the YOLOv5 are called
YOLOv5s, YOLOv5m, YOLOv5l,and YOLOv5x.Thequantityof
feature extraction modules and convolution kernels at
particular points on the network is where they diverge most
from one another. Figure 4 depicts the YOLOv5 network
structure.
Fig -4: YOLOv5 Architecture
2.2.1 CSP Backbone
With fewer parameters and fewer FLOPS for problems of
equivalent significance, the CSP solves duplicate gradient
issues in other larger ConvNet backbones. For the YOLO
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 06 | Jun 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 2807
family, where inference speed and minimal model size are
crucial, this is quite essential [10]. DenseNet is the
foundation for the CSP models. DenseNet was created to
connect layers in convolutional neural networks with the
following goals in mind: to improve feature propagation,
encourage the network to reuse features, and decrease the
number of network parameters; to address the vanishing
gradient problem (it is difficult to backprop loss signals
through a very deep network) [11].
Fig -5: Cross Stage Partial DenseNet
2.2.2 PA-Net Neck
Fig -6: PA-Net Neck
3. PROPOSED WORKFLOW
Fig -7: Workflow
The Proposed system uses yolov5. We also propose an
approach to implement detection and segregation using
Raspberry Pi and Arduino Nano. The accuracy of the model
is above 90 %. The model will be deployed on the Raspberry
Pi. The segregation of the PCB would be done by Arduino
Uno. The PCB image is captured using the Pi Camera with
Raspberry Pi. The yolo model deployed on the Raspberry Pi
detects for any defects present on the PCB. If the model
detects any defects on the PCB, the Arduino Uno move the
PCB away. In the proposedsystemtoovercomethis problem,
we create a new automated model, that helps to detect
errors or defects on the PCBs. The model has over 95%
accuracy as this is trained with a huge data set -
approximately 10, 680 images that has been divided into
80% testing images and 20% valuation images. This model
does not require any input image or any other extra sources
as many models out there need. This model is trained to
detect the defects directly. We make useofmodelslikeYOLO
– You Only Look Once Py Torch vision model andsomeof the
TensorFlow models to compare the resultsandtodeploy the
most preferrable one – that is, it depends on the cost of
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 06 | Jun 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 2808
performance and the accuracy while being not so resource
hungry. Unlike the existing system wedonotmakeuseofthe
template, that is we only need to capture the sample image
to detect. In the proposed system we do not subtract the
image rather let the computer decide if there is an error or
not. This is made possible by using Artificial Intelligence.
Even though AI is associated with its own drawbacks, the
model is much more efficient than the existing one. We also
add a belt system that makes the whole detection process
automatic and much more reliable than that of the existing
system. We make use of a microcontroller that gets the
signals or results for the raspberry pi based on the detection
results, and depending on those results thePCBisdiscarded.
4. RESULTS
The DeepPCB dataset, which contains roughly 10,800
images, was utilized to train the model.Thisdatasetcontains
6 different types of defects. This section evaluates the
proposed approach and describes the findings. PCBs with
defects and PCBs that are in good condition are used to train
the network. Several hyperparameters were adjusted to
improve efficiency. There were 300 training epochs with a
batch size of 64. At 300 epochs, the performance of both
training models is assessed using thetestdatasetthatwasn't
used during training.
Fig -8: Input Image
Fig -9: Detected Image
5. CONCLUSION
In the proposed approach, we created a new automated
model, that helps to detect errors or defectsonthePCBs.The
model has over 95% accuracy as this is trained with a huge
data set - approximately 10, 680 images that has been
divided into 80% testing images and 20% valuation images.
This model does not require any input image or any other
extra sources as many models out there need. This model is
trained to detect the defects directly.
REFERENCES
[1] https://mdpi.com/2079-9292/9/9/1547/pdf
[2] https://ncbi.nlm.nih.gov/pmc/articles/PMC8347834/
[3] Improved YOLOV3 target recognition algorithm based
on adaptive eged optimization.
[4] https://github.com/ultralytics/yolov5
[5] Approaching GoogLeNet-Level accuracyofclassification
and domain adaptation.
[6] Improved center and scale prediction-based pedestrian
detection using convolutional block.
[7] Spatial pyramid pooling in deepconvolutional networks
for visual recognition
[8] Single shot multibox detector
[9] Efficient and accurate arbitrary-shaped text detection
with pixel aggregation network
[10] CSPNET: A NEW BACKBONE THAT CAN ENHANCE
LEARNING CAPABILITY OF CNN
[11] Densely Connected Convolutional Networks
[12] EfficientDet: Scalable and Efficient Object Detection
[13] https://github.com/tangsanli5201/DeepPCB

More Related Content

Similar to Automated Defect Classifier for PCBs using Raspberry Pi

深度學習在AOI的應用
深度學習在AOI的應用深度學習在AOI的應用
深度學習在AOI的應用CHENHuiMei
 
FACE COUNTING USING OPEN CV & PYTHON FOR ANALYZING UNUSUAL EVENTS IN CROWDS
FACE COUNTING USING OPEN CV & PYTHON FOR ANALYZING UNUSUAL EVENTS IN CROWDSFACE COUNTING USING OPEN CV & PYTHON FOR ANALYZING UNUSUAL EVENTS IN CROWDS
FACE COUNTING USING OPEN CV & PYTHON FOR ANALYZING UNUSUAL EVENTS IN CROWDSIRJET Journal
 
IRJET- Computerized Vehicle Foyer and Outlet Monitoring System using Deep Lea...
IRJET- Computerized Vehicle Foyer and Outlet Monitoring System using Deep Lea...IRJET- Computerized Vehicle Foyer and Outlet Monitoring System using Deep Lea...
IRJET- Computerized Vehicle Foyer and Outlet Monitoring System using Deep Lea...IRJET Journal
 
Photo Editing And Sharing Web Application With AI- Assisted Features
Photo Editing And Sharing Web Application With AI- Assisted FeaturesPhoto Editing And Sharing Web Application With AI- Assisted Features
Photo Editing And Sharing Web Application With AI- Assisted FeaturesIRJET Journal
 
IMAGE CAPTION GENERATOR USING DEEP LEARNING
IMAGE CAPTION GENERATOR USING DEEP LEARNINGIMAGE CAPTION GENERATOR USING DEEP LEARNING
IMAGE CAPTION GENERATOR USING DEEP LEARNINGIRJET Journal
 
Video and Image Processing for Finding Paint Defects using BeagleBone Black
Video and Image Processing for Finding Paint Defects using BeagleBone BlackVideo and Image Processing for Finding Paint Defects using BeagleBone Black
Video and Image Processing for Finding Paint Defects using BeagleBone BlackIRJET Journal
 
IRJET- Portable Camera based Assistive Text and Label Reading for Blind Persons
IRJET- Portable Camera based Assistive Text and Label Reading for Blind PersonsIRJET- Portable Camera based Assistive Text and Label Reading for Blind Persons
IRJET- Portable Camera based Assistive Text and Label Reading for Blind PersonsIRJET Journal
 
IRJET- Sobel Edge Detection on ZYNQ based Architecture with Vivado
IRJET- Sobel Edge Detection on ZYNQ based Architecture with VivadoIRJET- Sobel Edge Detection on ZYNQ based Architecture with Vivado
IRJET- Sobel Edge Detection on ZYNQ based Architecture with VivadoIRJET Journal
 
HOUSE PRICE ESTIMATION USING DATA SCIENCE AND ML
HOUSE PRICE ESTIMATION USING DATA SCIENCE AND MLHOUSE PRICE ESTIMATION USING DATA SCIENCE AND ML
HOUSE PRICE ESTIMATION USING DATA SCIENCE AND MLIRJET Journal
 
Comparative Study of Pre-Trained Neural Network Models in Detection of Glaucoma
Comparative Study of Pre-Trained Neural Network Models in Detection of GlaucomaComparative Study of Pre-Trained Neural Network Models in Detection of Glaucoma
Comparative Study of Pre-Trained Neural Network Models in Detection of GlaucomaIRJET Journal
 
IRJET - Single Image Super Resolution using Machine Learning
IRJET - Single Image Super Resolution using Machine LearningIRJET - Single Image Super Resolution using Machine Learning
IRJET - Single Image Super Resolution using Machine LearningIRJET Journal
 
IRJET- Object Detection and Recognition for Blind Assistance
IRJET- Object Detection and Recognition for Blind AssistanceIRJET- Object Detection and Recognition for Blind Assistance
IRJET- Object Detection and Recognition for Blind AssistanceIRJET Journal
 
Classroom Attendance using Face Detection and Raspberry-Pi
Classroom Attendance using Face Detection and Raspberry-PiClassroom Attendance using Face Detection and Raspberry-Pi
Classroom Attendance using Face Detection and Raspberry-PiIRJET Journal
 
IRJET- Rice QA using Deep Learning
IRJET- Rice QA using Deep LearningIRJET- Rice QA using Deep Learning
IRJET- Rice QA using Deep LearningIRJET Journal
 
IRJET- Sketch-Verse: Sketch Image Inversion using DCNN
IRJET- Sketch-Verse: Sketch Image Inversion using DCNNIRJET- Sketch-Verse: Sketch Image Inversion using DCNN
IRJET- Sketch-Verse: Sketch Image Inversion using DCNNIRJET Journal
 
ASSISTANCE SYSTEM FOR DRIVERS USING IOT
ASSISTANCE SYSTEM FOR DRIVERS USING IOTASSISTANCE SYSTEM FOR DRIVERS USING IOT
ASSISTANCE SYSTEM FOR DRIVERS USING IOTIRJET Journal
 
IRJET- Face Detection based on Image Processing using Raspberry Pi 4
IRJET-  	  Face Detection based on Image Processing using Raspberry Pi 4IRJET-  	  Face Detection based on Image Processing using Raspberry Pi 4
IRJET- Face Detection based on Image Processing using Raspberry Pi 4IRJET Journal
 
LOW ILLUMINATION VIDEO-IMAGE ENHANCEMENT
LOW ILLUMINATION VIDEO-IMAGE ENHANCEMENTLOW ILLUMINATION VIDEO-IMAGE ENHANCEMENT
LOW ILLUMINATION VIDEO-IMAGE ENHANCEMENTIRJET Journal
 
The Computation Complexity Reduction of 2-D Gaussian Filter
The Computation Complexity Reduction of 2-D Gaussian FilterThe Computation Complexity Reduction of 2-D Gaussian Filter
The Computation Complexity Reduction of 2-D Gaussian FilterIRJET Journal
 

Similar to Automated Defect Classifier for PCBs using Raspberry Pi (20)

深度學習在AOI的應用
深度學習在AOI的應用深度學習在AOI的應用
深度學習在AOI的應用
 
FACE COUNTING USING OPEN CV & PYTHON FOR ANALYZING UNUSUAL EVENTS IN CROWDS
FACE COUNTING USING OPEN CV & PYTHON FOR ANALYZING UNUSUAL EVENTS IN CROWDSFACE COUNTING USING OPEN CV & PYTHON FOR ANALYZING UNUSUAL EVENTS IN CROWDS
FACE COUNTING USING OPEN CV & PYTHON FOR ANALYZING UNUSUAL EVENTS IN CROWDS
 
IRJET- Computerized Vehicle Foyer and Outlet Monitoring System using Deep Lea...
IRJET- Computerized Vehicle Foyer and Outlet Monitoring System using Deep Lea...IRJET- Computerized Vehicle Foyer and Outlet Monitoring System using Deep Lea...
IRJET- Computerized Vehicle Foyer and Outlet Monitoring System using Deep Lea...
 
Photo Editing And Sharing Web Application With AI- Assisted Features
Photo Editing And Sharing Web Application With AI- Assisted FeaturesPhoto Editing And Sharing Web Application With AI- Assisted Features
Photo Editing And Sharing Web Application With AI- Assisted Features
 
IMAGE CAPTION GENERATOR USING DEEP LEARNING
IMAGE CAPTION GENERATOR USING DEEP LEARNINGIMAGE CAPTION GENERATOR USING DEEP LEARNING
IMAGE CAPTION GENERATOR USING DEEP LEARNING
 
Video and Image Processing for Finding Paint Defects using BeagleBone Black
Video and Image Processing for Finding Paint Defects using BeagleBone BlackVideo and Image Processing for Finding Paint Defects using BeagleBone Black
Video and Image Processing for Finding Paint Defects using BeagleBone Black
 
IRJET- Portable Camera based Assistive Text and Label Reading for Blind Persons
IRJET- Portable Camera based Assistive Text and Label Reading for Blind PersonsIRJET- Portable Camera based Assistive Text and Label Reading for Blind Persons
IRJET- Portable Camera based Assistive Text and Label Reading for Blind Persons
 
IRJET- Sobel Edge Detection on ZYNQ based Architecture with Vivado
IRJET- Sobel Edge Detection on ZYNQ based Architecture with VivadoIRJET- Sobel Edge Detection on ZYNQ based Architecture with Vivado
IRJET- Sobel Edge Detection on ZYNQ based Architecture with Vivado
 
HOUSE PRICE ESTIMATION USING DATA SCIENCE AND ML
HOUSE PRICE ESTIMATION USING DATA SCIENCE AND MLHOUSE PRICE ESTIMATION USING DATA SCIENCE AND ML
HOUSE PRICE ESTIMATION USING DATA SCIENCE AND ML
 
Comparative Study of Pre-Trained Neural Network Models in Detection of Glaucoma
Comparative Study of Pre-Trained Neural Network Models in Detection of GlaucomaComparative Study of Pre-Trained Neural Network Models in Detection of Glaucoma
Comparative Study of Pre-Trained Neural Network Models in Detection of Glaucoma
 
IRJET - Single Image Super Resolution using Machine Learning
IRJET - Single Image Super Resolution using Machine LearningIRJET - Single Image Super Resolution using Machine Learning
IRJET - Single Image Super Resolution using Machine Learning
 
IRJET- Object Detection and Recognition for Blind Assistance
IRJET- Object Detection and Recognition for Blind AssistanceIRJET- Object Detection and Recognition for Blind Assistance
IRJET- Object Detection and Recognition for Blind Assistance
 
Classroom Attendance using Face Detection and Raspberry-Pi
Classroom Attendance using Face Detection and Raspberry-PiClassroom Attendance using Face Detection and Raspberry-Pi
Classroom Attendance using Face Detection and Raspberry-Pi
 
IRJET- Rice QA using Deep Learning
IRJET- Rice QA using Deep LearningIRJET- Rice QA using Deep Learning
IRJET- Rice QA using Deep Learning
 
K0445660
K0445660K0445660
K0445660
 
IRJET- Sketch-Verse: Sketch Image Inversion using DCNN
IRJET- Sketch-Verse: Sketch Image Inversion using DCNNIRJET- Sketch-Verse: Sketch Image Inversion using DCNN
IRJET- Sketch-Verse: Sketch Image Inversion using DCNN
 
ASSISTANCE SYSTEM FOR DRIVERS USING IOT
ASSISTANCE SYSTEM FOR DRIVERS USING IOTASSISTANCE SYSTEM FOR DRIVERS USING IOT
ASSISTANCE SYSTEM FOR DRIVERS USING IOT
 
IRJET- Face Detection based on Image Processing using Raspberry Pi 4
IRJET-  	  Face Detection based on Image Processing using Raspberry Pi 4IRJET-  	  Face Detection based on Image Processing using Raspberry Pi 4
IRJET- Face Detection based on Image Processing using Raspberry Pi 4
 
LOW ILLUMINATION VIDEO-IMAGE ENHANCEMENT
LOW ILLUMINATION VIDEO-IMAGE ENHANCEMENTLOW ILLUMINATION VIDEO-IMAGE ENHANCEMENT
LOW ILLUMINATION VIDEO-IMAGE ENHANCEMENT
 
The Computation Complexity Reduction of 2-D Gaussian Filter
The Computation Complexity Reduction of 2-D Gaussian FilterThe Computation Complexity Reduction of 2-D Gaussian Filter
The Computation Complexity Reduction of 2-D Gaussian Filter
 

More from IRJET Journal

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...IRJET Journal
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTUREIRJET Journal
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...IRJET Journal
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsIRJET Journal
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...IRJET Journal
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...IRJET Journal
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...IRJET Journal
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...IRJET Journal
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASIRJET Journal
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...IRJET Journal
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProIRJET Journal
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...IRJET Journal
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemIRJET Journal
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesIRJET Journal
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web applicationIRJET Journal
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...IRJET Journal
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.IRJET Journal
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...IRJET Journal
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignIRJET Journal
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...IRJET Journal
 

More from IRJET Journal (20)

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil Characteristics
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADAS
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare System
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridges
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web application
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
 

Recently uploaded

Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Dr.Costas Sachpazis
 
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝soniya singh
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxupamatechverse
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...Soham Mondal
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile servicerehmti665
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escortsranjana rawat
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxpurnimasatapathy1234
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escortsranjana rawat
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )Tsuyoshi Horigome
 
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSHARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSRajkumarAkumalla
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxAsutosh Ranjan
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...srsj9000
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxupamatechverse
 
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptxthe ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptxhumanexperienceaaa
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Christo Ananth
 

Recently uploaded (20)

Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
 
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptx
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile service
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptx
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )
 
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINEDJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
 
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSHARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptx
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptx
 
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptxthe ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
 
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
 

Automated Defect Classifier for PCBs using Raspberry Pi

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 06 | Jun 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 2805 Automated Defect Classifier for PCBs using Raspberry Pi G P V Kishore1, R L N N Sai Abhijeet2, B Likith3, Sushmitha4 1Associate Professor, ECE Department, ACE Engineering College, Ghatkesar, Telangana, India. 234Student, ECE Department, ACE Engineering College, Ghatkesar, Telangana, India. ---------------------------------------------------------------------***--------------------------------------------------------------------- Abstract - Printed circuit boards (PCBs) are an important component in the production of electronic products. A minor defect on the PCB can cause severe problems in the finished product, making PCB surface inspection one of the most crucial quality control tasks [1]. Because of the limits of manual examination, major efforts have been made to automate the process using high resolution CCD or CMOS sensors. Setting pass/fail criteria based on small failure samples has always been difficultintraditional machinevision systems, despite advanced sensor technology [2]. As a result, this paper proposes a deep learning method based on the you- only-look-once (YOLO) concept. A networkof24convolutional layers and two fully linked layers make up the suggested approach. The model has been trained with 10,480 photos of diverse defects, including shorts, spurs, and mouse bites. In comparison to state-of-the-art works, theexperimentalresults show that our approach detects defective PCBs with high accuracy (95%). Key Words: Convolutional Neural Network, YOLO, Raspberry Pi, PCB 1.INTRODUCTION The Printed Circuit Board (PCB) is in most electronic products, mechanically supporting and connecting components along conductive tracks. Their prevalence underlies the modern electronics industry, with a world market exceeding $60 billion. PCBs are prone to a variety of defects that impede proper manufacturing, costing companies money. Defects such as shorts, spurs, mouse bites, and pinholes cause issues like current leakage and open circuits, quickly degrading performance or rendering PCBs useless. In this project we will build a full PCB Defect Classifier that automates thetask ofdetectingandclassifying defects in printed circuit boards. We will build a complete module that not only detects any defects in the given circuit board but also will segregate depending on the results. To overcome this problem, we propose an automated model that segregates the good PCBs from the defected ones. We use yolo model to detect the defectsusinga RaspberryPi and Pi camera, which whose results will be transferred to an Arduino. Based on the results the PCB is either moved forward or is pushed away. The model has over 95% accuracy as this is trained with a huge data set - approximately 10, 680 images that has been divided into 80% testing images and 20% valuation images. This model does not require any input image or any other extra sources as many models out there need. This model is trained to detect the defects directly. We use YOLO – You only look once model to detect the defects. 2. METHODOLOGY 2.1 Dataset 2.1.1 Image Collection Each image in this dataset was created using a linear scan CCD with a resolution of about 48 pixels per millimeter. The defect-free template images are manually examined and cleaned from sampling photos. The templates and the image that was tested original dimensions are roughly 16k by 16k pixels. Then, using template matching techniques, they are cropped into several 640 × 640 sub-images and aligned. The next step is to carefullychooseathresholdtousebinarization in order to prevent lighting disturbance. However, image registration and thresholding techniques are a common approach for high-accuracy PCB defect localization and classification. The following figure shows a sample pair from the dataset, with Figure 2 representing the defect-free template image and Figure 1 representing the defective tested image with the ground truth annotations. Fig -1: Tested Image
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 06 | Jun 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 2806 Fig -2: Template Image 2.1.2 Image Annotation An axis-aligned bounding box with a class ID is used for each defect in the analyzed images. The figure above (Figure 1) highlights six common PCB flaws: open, short, mouse bite, spur, pin hole, and spurious copper. Since the tested image only has a few minor defects, 3 to 12 fictitious faults are added to each 640 x 640 image by adding artificial defects in accordance with PCB defect patterns to each tested image. The number of PCB faults is depicted in the following figure (Figure 3). The remaining 1,000 images are divided into a training set and a test set. Fig -3: PCB Defects 2.2 YOLO – v5 YOLO is a regression-based target detection system. YOLO completes the prediction of the categorization and position information of the objects according to the computation of the loss function after receiving the photos or video into the deep network, transforming the target detection problem into a regression problem solution [3]. Based on the YOLO detection architecture, YOLOv5 [4] employs someof the best algorithm optimization techniques developed recently in the field of convolutional neural networks, including auto learning bounding box anchors, mosaic data augmentation, the cross-stage partial network, and others. These techniques are responsible for various tasks in various parts of the YOLOv5 architecture. The input, backbone, neck, and output arethefourmajorcomponentsof the YOLOv5 architecture. The preparation of the data, including mosaic data augmentation [5] and adaptive image filling, is primarily done at the input terminal. The adaptive anchor framecomputationthatYOLOv5includesontheinput allows it to automatically set the starting anchor frame size when the dataset changes, allowing it to adapt to various datasets. In order to extract feature maps of various sizes from the input picture via multiple convolution and pooling, the backbone network mostly employs a cross-stage partial network (CSP) [6] and spatial pyramid pooling (SPP) [7]. While the SPP structure accomplishes the feature extraction from several scales forthesamefeaturemapandiscapableof generatingthree-scalefeaturemaps,whichhelpsenhancethe detection accuracy, BottleneckCSP is used to reduce the amount of calculation and speed up inference. The FPNandPANfeaturepyramidarchitecturesaredeployed as the neck network. Strong semantic features from the top feature maps are transmitted to the lower feature maps through the FPN [8] structure. The PAN [9] structure simultaneously transfers potent localization features from lower feature maps to higher feature maps. Together, these two structures reinforce the features obtained from various network levels in the backbone fusion process, which enhances the detection capabilities. The head output'sprimaryapplicationistoforecasttargetsof various sizes on featuremapsas the last detectingphase.The four architectures that make up the YOLOv5 are called YOLOv5s, YOLOv5m, YOLOv5l,and YOLOv5x.Thequantityof feature extraction modules and convolution kernels at particular points on the network is where they diverge most from one another. Figure 4 depicts the YOLOv5 network structure. Fig -4: YOLOv5 Architecture 2.2.1 CSP Backbone With fewer parameters and fewer FLOPS for problems of equivalent significance, the CSP solves duplicate gradient issues in other larger ConvNet backbones. For the YOLO
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 06 | Jun 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 2807 family, where inference speed and minimal model size are crucial, this is quite essential [10]. DenseNet is the foundation for the CSP models. DenseNet was created to connect layers in convolutional neural networks with the following goals in mind: to improve feature propagation, encourage the network to reuse features, and decrease the number of network parameters; to address the vanishing gradient problem (it is difficult to backprop loss signals through a very deep network) [11]. Fig -5: Cross Stage Partial DenseNet 2.2.2 PA-Net Neck Fig -6: PA-Net Neck 3. PROPOSED WORKFLOW Fig -7: Workflow The Proposed system uses yolov5. We also propose an approach to implement detection and segregation using Raspberry Pi and Arduino Nano. The accuracy of the model is above 90 %. The model will be deployed on the Raspberry Pi. The segregation of the PCB would be done by Arduino Uno. The PCB image is captured using the Pi Camera with Raspberry Pi. The yolo model deployed on the Raspberry Pi detects for any defects present on the PCB. If the model detects any defects on the PCB, the Arduino Uno move the PCB away. In the proposedsystemtoovercomethis problem, we create a new automated model, that helps to detect errors or defects on the PCBs. The model has over 95% accuracy as this is trained with a huge data set - approximately 10, 680 images that has been divided into 80% testing images and 20% valuation images. This model does not require any input image or any other extra sources as many models out there need. This model is trained to detect the defects directly. We make useofmodelslikeYOLO – You Only Look Once Py Torch vision model andsomeof the TensorFlow models to compare the resultsandtodeploy the most preferrable one – that is, it depends on the cost of
  • 4. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 06 | Jun 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 2808 performance and the accuracy while being not so resource hungry. Unlike the existing system wedonotmakeuseofthe template, that is we only need to capture the sample image to detect. In the proposed system we do not subtract the image rather let the computer decide if there is an error or not. This is made possible by using Artificial Intelligence. Even though AI is associated with its own drawbacks, the model is much more efficient than the existing one. We also add a belt system that makes the whole detection process automatic and much more reliable than that of the existing system. We make use of a microcontroller that gets the signals or results for the raspberry pi based on the detection results, and depending on those results thePCBisdiscarded. 4. RESULTS The DeepPCB dataset, which contains roughly 10,800 images, was utilized to train the model.Thisdatasetcontains 6 different types of defects. This section evaluates the proposed approach and describes the findings. PCBs with defects and PCBs that are in good condition are used to train the network. Several hyperparameters were adjusted to improve efficiency. There were 300 training epochs with a batch size of 64. At 300 epochs, the performance of both training models is assessed using thetestdatasetthatwasn't used during training. Fig -8: Input Image Fig -9: Detected Image 5. CONCLUSION In the proposed approach, we created a new automated model, that helps to detect errors or defectsonthePCBs.The model has over 95% accuracy as this is trained with a huge data set - approximately 10, 680 images that has been divided into 80% testing images and 20% valuation images. This model does not require any input image or any other extra sources as many models out there need. This model is trained to detect the defects directly. REFERENCES [1] https://mdpi.com/2079-9292/9/9/1547/pdf [2] https://ncbi.nlm.nih.gov/pmc/articles/PMC8347834/ [3] Improved YOLOV3 target recognition algorithm based on adaptive eged optimization. [4] https://github.com/ultralytics/yolov5 [5] Approaching GoogLeNet-Level accuracyofclassification and domain adaptation. [6] Improved center and scale prediction-based pedestrian detection using convolutional block. [7] Spatial pyramid pooling in deepconvolutional networks for visual recognition [8] Single shot multibox detector [9] Efficient and accurate arbitrary-shaped text detection with pixel aggregation network [10] CSPNET: A NEW BACKBONE THAT CAN ENHANCE LEARNING CAPABILITY OF CNN [11] Densely Connected Convolutional Networks [12] EfficientDet: Scalable and Efficient Object Detection [13] https://github.com/tangsanli5201/DeepPCB