SlideShare a Scribd company logo
1 of 5
Download to read offline
International Journal of Trend in Scientific Research and Development (IJTSRD)
Volume 5 Issue 1, November-December 2020 Available Online: www.ijtsrd.com e-ISSN: 2456 – 6470
@ IJTSRD | Unique Paper ID – IJTSRD38173 | Volume – 5 | Issue – 1 | November-December 2020 Page 1191
Using Mask R-CNN to Isolate PV Panels from
Background Object in Images
Muhammet Sait, Atilla Erguzen, Erdal Erdal
Department of Computer Engineering, Kirikkale University, Kirikkale, Turkey
ABSTRACT
Identifying foreground objects in an image is one of the most common
operations used in image processing. In this work, Mask R-CNN algorithm is
used to identify solar photovoltaic (PV) panels in aerial images and create a
mask that can be used to remove the background from the images.Thisallows
processing the PV panels separately. Using ML to solve this problem can
generate more accurate results in comparison to more traditional image
processing techniques like using edge detection or Gaussian filtering
especially in images where the view might not be easily separable from the
objects of interest. The trained model was found to be successful in detecting
the PV panels and selecting the pixels that belong to them while ignoring the
background pixels. This kind of work can be useful in collecting information
about PV installation present in aerial or satellite imagery, or in analyzing the
health and integrity of PV modules in large-scale installations e.g., in a solar
power plant. The results show that this method is effective with a high
potential for improved results if the model is trained using larger and more
diverse datasets.
KEYWORD: Machine learning, Mask R-CNN, detection, image segmentation,
object recognition, solar energy, photovoltaics
How to cite this paper: Muhammet Sait |
Atilla Erguzen | Erdal Erdal "Using Mask
R-CNN to Isolate PV Panels from
BackgroundObjectin
Images" Published in
International Journal
of Trend in Scientific
Research and
Development(ijtsrd),
ISSN: 2456-6470,
Volume-5 | Issue-1,
December 2020, pp.1191-1195, URL:
www.ijtsrd.com/papers/ijtsrd38173.pdf
Copyright © 2020 by author(s) and
International Journal ofTrendinScientific
Research and Development Journal. This
is an Open Access article distributed
under the terms of
the Creative
CommonsAttribution
License (CC BY 4.0)
(http://creativecommons.org/licenses/by/4.0)
INTRODUCTION
There is a growing interest in high qualityinformationabout
small scale solar power (Photovoltaic, PV) installations
among governments, agencies, and decisionmakersinorder
to provide better estimates of the growth in powerdemands
and trends in renewable energy use. Currently, statistics on
the use of solar energy are based on data from the
importation and sales of PV panels. This methodology can
only give rough estimates, and cannot keep track of quick
local transitions. On the other hand, detecting PV panels in
imagery collected by drones in larger scale installations
helps process the images to find any faults or damagesinthe
system.
The problem of identifying objects of interest in an image
and isolating them from the background can be solved using
numerous methods. The most obvious route would be to try
using an edge detection algorithm in combination withsome
pre-processing for noise reduction and follow that with
some steps to separate the foreground from the rest of the
image. Processing certain types of images using filters and
other mathematical edge detection and pixel manipulation
techniques can be tricky due to the nature of the scene and
what kind of imaging conditions and equipment are used.
The popularity of deep learning use in image processing has
been growing and it has been applied in solving problems
like road detection[1–3], scene labeling [4], vehicle
detection[5], detection of people[6], and detection of
buildings[7]. Convolutional Neural Networks (CNNs) were
used in previous works for the task of classification and
detection of solar panels, where CNNs produced the best
results [8].
ML algorithms can provide crisp edges and locate the object
of interest in various views often resulting in much better
outcomes compared to other image processing methods.
Most notably, they surpass the traditional techniques when
the objects of interest are surrounded by other background
objects in different types of environments,i.e.,ifthedetected
objects are small compared to other objects in the view, or if
the studied images have different attributes like wide
difference levels of brightness and contrast, different
imaging resolution, etc.
In this work, one of the ML algorithms, Mask R-CNN[9], is
investigated to determine its suitability and effectiveness in
identifying photovoltaic modules in aerial photographs
taken by a drone flying over a power plant installation. The
dataset of images used in this study was collected and made
available online by SenseFly systems, usingtheirdrone eBee
Classic[10]. A number of other available datasets are
reviewed in a report by Curier et al., which can be useful for
developing studies in this area [11].
Table 1, Technical data about the studied dataset
Groundresolution 14.23 cm/px (5.6 in/px)
Coverage 0.08 square km (0.03 sq. mi)
Flight height 70 m (229.6 ft)
Number of images 1075
Image format TIFF
IJTSRD38173
International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470
@ IJTSRD | Unique Paper ID – IJTSRD38173 | Volume – 5 | Issue – 1 | November-December 2020 Page 1192
Applying Mask R-CNN
During our work on processing a dataset of PV panel images
for fault detection, there was a need for treatingthePVpanel
areas in isolation from the rest of the image pixels. This
allowed better results and less noise in the output since all
interactions with background objects are eliminated. Mask
R-CNN algorithm was selected for this application and its
results were evaluated.
Figure 1 One of the processed images, the respective
generated mask, result of multiplication
Mask R-CNN is a deep learning algorithm designed to detect
objects in an image and create a segmentation mask foreach
identified object. The algorithm uses Convolutional Neural
Networks (CNNs) as a backbone. Such networks are widely
used to perform image classificationandrecognition,suchas
face recognition or medical diagnosis.
Some of the computer vision tasks that can be solved using
CNNs:
Classification: does the object of interest appear in the
image?
Object detection: how many objects are there and what
are their positions?
Semantic segmentation: which pixels belong to objects
of interest.
Instance segmentation: determinesthepixelsforeachof
the object instances.
Figure 2 Comparison between semantic and instance
segmentation. Original image (A), semantic
segmentation result (B), instance segmentation result
(C)
The problem of removing the background can be solved
using semantic segmentation or sample segmentation
methods. By using deep learning for this step, more reliable
results compared to traditional imageprocessingtechniques
were achieved. It also made the software more useful when
processing image datasets captured under different
conditions, or when using different types of imaging
equipment, as this causes image properties to change.CNNs,
on the other hand, tend to give better results and are better
equipped to solve this problem.
Various algorithms have been considered during the
development of our application. Among the algorithms
investigated: Fast R-CNN [12], deep image matting[13],[14]
and other background removal studies [15], [16]. Canny
edge detection and Sobel filter-based methods were also
considered.
Mask R-CNN [9]was preferred over other algorithms for the
following reasons:
Multiple open-source applications are available and
ready to use;
Ease of use as the algorithm is well explained and
documented;
Training time is short;
Its results are superior to other algorithms;
A subset of the complete dataset was selected from the
original dataset to train the segmentation model. This new
dataset is split into two groups: a training set used to train
the model, and a validation set to adjust the model.
Both the training and validation set consist of:
1. Real images themselves (in original condition).
2. PV module mask corresponding to the fields of PVMs.
Masks used in the training and validation of the model were
created manually by a human annotator and stored as PNG
images where pixels have only two values: 0 for background
pixels, and 1 for PV pixels. The masks are later converted to
JSON annotations that can be loaded to be used to train the
Mask R-CNN model.
International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470
@ IJTSRD | Unique Paper ID – IJTSRD38173 | Volume – 5 | Issue – 1 | November-December 2020 Page 1193
Figure 3 Example images from the studied dataset along with their masks
Training the model
To train and evaluate the ML model, Detectron2 [17] was
chosen as an implementation of Mask R-CNN in this study. It
is a modern open-source software system that enhances
previous deep learning models and provides a largenumber
of modern ML algorithms implementations ready for
training and use.
To prepare the dataset for training and evaluation, masks
have been transformed into a custom JSON annotation that
can be read by Detectron2 and useddirectly.Thisannotation
was developed as part of the Microsoft COCO dataset [18].
This format is supported by many deep learning libraries,
making it the current de facto standard for image
segmentation datasets. JSON annotations were generated
from mask files stored as PNG images using a tool called
pycococreator[19].
Figure 4 Sample of the training input data
After preparing the training images and JSON annotations,
the training is executed on the GPU to minimize training
time. Google Colab[20]is used for this step. Colab is a free
service that allows running machinelearningcode writtenin
Python on servers equipped with NVIDIA Tesla K80 orP100
GPUs.
To achieve higher accuracy from the model using a small
training set, transfer learning[21] was used. Thismeansthat
instead of starting the training process from scratch, the
training starts from a pre-trained model on a different
dataset. This is useful because the model will know what to
look for even if it cannot yet define our custom object
classes.
The starting model selected is the R50-FPN Mask R-CNN
model that was pre-trained on COCO dataset. A new "pvm"
class was added and the model was tweaked so that it can
recognize these objects and create segmentation masks for
them.
Experimental results
The performance of the machine learning algorithm is
evaluated using a test dataset during the training phase.The
resulting Average Precision value is available in table2.This
metric shows how good the algorithmiswhenfindingmasks
for PVM class objects. More performance metrics resultsare
provided in table 3, which indicate the accuracy, sensitivity
and recall of the trained model.
The images used for both training and testing the models
were selected from the original datasetsothatblurryimages
and identical frames or almost identical frames were
eliminated. Images that did not contain PV panels at all were
also not used in the training or validation of the model.
Table 2, Bounding box Average Precision per category
Class AP
pvm 75.534
Table 3, Performance measurements of the trained
model
Accuracy Sensitivity Recall
0.774 0.75 0.877
International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470
@ IJTSRD | Unique Paper ID – IJTSRD38173 | Volume – 5 | Issue – 1 | November-December 2020 Page 1194
Two examples of pictures used to evaluate our educated
model are shown in.
Figure 5 Sample result of Mask R-CNN model
validation
Conclusion
Using ML algorithms in image segmentation and object
isolation from the background can be more useful and
accurate than traditional algorithms in manyuse cases
depending on the type and nature of the processed images.
The advances in both hardware and ML algorithms and
libraries allow applying these novel techniques in solving
older problems resulting in more accurate outputs. Trained
models on large training datasets can identify objects of
interest in different environments and under various
imaging conditions, compared to traditional image
processing which usually assumes certain conditions that
must be met for the algorithm to give optimal results. The
results show that the selected algorithm is effective and
accurate for this task. The performance measures
demonstrate that the algorithm could detectmostofthetrue
PV pixels while avoiding backgroundpixelssuccessfully.The
model was only trained using a small dataset which
contained images taken usingthesameequipmentunder the
same environmental conditions. Better results are expected
to be achieved when using larger datasetswith morediverse
images to train and validate the model. This work was used
in part to help assess large-scale PV installations and detect
faults and malfunctions. It can also be useful in information
gathering applications where PV panels are detected in
satellite and aerial images.
References
[1] V. Mnih, G. E. Hinton, Learning to detect roadsinhigh-
resolution aerial images, in: Lect. Notes Comput. Sci.
(Including Subser. Lect. Notes Artif. Intell. Lect. Notes
Bioinformatics), Springer Verlag, 2010: pp. 210–223.
https://doi.org/10.1007/978-3-642-15567-3_16.
[2] J. Fritsch, T. Kuhnl, A. Geiger, A new performance
measure and evaluation benchmark for road
detection algorithms, in: IEEE Conf. Intell. Transp.
Syst. Proceedings, ITSC, 2013: pp. 1693–1700.
https://doi.org/10.1109/ITSC.2013.6728473.
[3] C. César, T. Mendes, V. Frémont, D.F. Wolf, D.
Fernando, Exploiting Fully Convolutional Networks
for Fast Road Detection, 2016. https://hal.archives-
ouvertes.fr/hal-01260697 (accessed December 17,
2020).
[4] N. Audebert, B. Le Saux, S. Lefèvre, Semantic
Segmentation of Earth Observation Data Using
Multimodal and Multi-scale Deep Networks, Lect.
Notes Comput. Sci. (Including Subser. Lect. Notes
Artif. Intell. Lect. Notes Bioinformatics). 10111 LNCS
(2016) 180–196. http://arxiv.org/abs/1609.06846
(accessed December 17, 2020).
[5] X. Chen, S. Xiang, C. L. Liu, C. H. Pan, Vehicle detection
in satellite images by hybrid deep convolutional
neural networks, IEEE Geosci. Remote Sens. Lett. 11
(2014) 1797–1801.
https://doi.org/10.1109/LGRS.2014.2309695.
[6] D. C. De Oliveira, M. A. Wehrmeister, Towards real-
time people recognition on aerial imagery using
convolutional neural networks, in: Proc. - 2016 IEEE
19th Int. Symp. Real-Time Distrib. Comput. ISORC
2016, Institute of Electrical andElectronicsEngineers
Inc., 2016: pp. 27–34.
https://doi.org/10.1109/ISORC.2016.14.
[7] O. A. B. Penatti, K. Nogueira, J. A. Dos Santos, Do deep
features generalize from everyday objects to remote
sensing and aerial scenes domains?, in: IEEE Comput.
Soc. Conf. Comput. Vis. Pattern Recognit. Work., IEEE
Computer Society, 2015: pp. 44–51.
https://doi.org/10.1109/CVPRW.2015.7301382.
[8] J. M. Malof, L. M. Collins, K. Bradbury, A deep
convolutional neural network, with pre-training, for
solar photovoltaic array detection in aerial imagery,
in: Int. Geosci. Remote Sens. Symp., Institute of
Electrical and Electronics Engineers Inc., 2017: pp.
874–877.
https://doi.org/10.1109/IGARSS.2017.8127092.
[9] K. He, G. Gkioxari, P. Dollár, R. Girshick, Mask R-CNN,
IEEE Trans. Pattern Anal.Mach.Intell.42(2020)386–
397. https://doi.org/10.1109/TPAMI.2018.2844175.
[10] SenseFly, Solar Panel Installation, (n.d.).
https://www.sensefly.com/education/datasets/?data
set=1416 (accessed December 2, 2020).
[11] V. Of, T. H. E. Available, Monitoring spatial sustainable
development: Semi-automated analysis of satellite
and aerial images for energy transition and
sustainability indicators, ArXiv. (2018).
[12] R. Girshick, Fast R-CNN, Proc. IEEE Int. Conf. Comput.
Vis. 2015 Inter (2015) 1440–1448.
https://doi.org/10.1109/ICCV.2015.169.
[13] N. Xu, B. Price, S. Cohen, T. Huang, Deep image
International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470
@ IJTSRD | Unique Paper ID – IJTSRD38173 | Volume – 5 | Issue – 1 | November-December 2020 Page 1195
matting, Proc. - 30th IEEE Conf. Comput. Vis. Pattern
Recognition, CVPR 2017. 2017-Janua (2017) 311–
320. https://doi.org/10.1109/CVPR.2017.41.
[14] D. Swiggett, Image Matting and Applications, (n.d.)1–
17.
[15] A. Nikitakis, A novel Background Subtraction Scheme
for in - Camera Acceleration in Thermal Imagery,
2016 Des. Autom. Test Eur. Conf. Exhib.(2016)1497–
1500.
[16] D. Kim, J. Youn, C. Kim, Automatic photovoltaic panel
area extraction from UAV thermal infrared images, J.
Korean Soc. Surv. Geod. Photogramm. Cartogr. 34
(2016) 559–568.
https://doi.org/10.7848/ksgpc.2016.34.6.559.
[17] Y. Wu, A. Kirillov, F. Massa, W.-Y. Lo, R. Girshick,
Detectron2, (2019).
https://github.com/facebookresearch/detectron2.
[18] T. Y. Lin, M. Maire, S. Belongie, J. Hays, P. Perona, D.
Ramanan, P. Dollár, C.L. Zitnick, Microsoft COCO:
Common objects in context, Lect. Notes Comput. Sci.
(Including Subser. Lect. Notes Artif. Intell. Lect. Notes
Bioinformatics). 8693 LNCS (2014) 740–755.
https://doi.org/10.1007/978-3-319-10602-1_48.
[19] Waspinator, waspinator/pycococreator: Helper
functions to create COCO datasets, (2018).
https://github.com/waspinator/pycococreator.
[20] Colaboratory, (n.d.).
https://colab.research.google.com/notebooks/intro.i
pynb (accessed December 17, 2020).
[21] Y. Wei, Y. Zhang, J. Huang, Q. Yang, Transfer Learning
via Learning to Transfer, in: 35th Int. Conf. Mach.
Learn., PMLR, 2018: pp. 5085–5094.
http://proceedings.mlr.press/v80/wei18a.html
(accessed December 17, 2020).

More Related Content

What's hot

Zeeshan.ali.presentations
Zeeshan.ali.presentationsZeeshan.ali.presentations
Zeeshan.ali.presentationsZeeshan Ali
 
Reflectivity Parameter Extraction from RADAR Images Using Back Propagation Al...
Reflectivity Parameter Extraction from RADAR Images Using Back Propagation Al...Reflectivity Parameter Extraction from RADAR Images Using Back Propagation Al...
Reflectivity Parameter Extraction from RADAR Images Using Back Propagation Al...IJECEIAES
 
Development of a Location Invariant Crack Detection and Localisation Model (L...
Development of a Location Invariant Crack Detection and Localisation Model (L...Development of a Location Invariant Crack Detection and Localisation Model (L...
Development of a Location Invariant Crack Detection and Localisation Model (L...CSCJournals
 
Dataset creation for Deep Learning-based Geometric Computer Vision problems
Dataset creation for Deep Learning-based Geometric Computer Vision problemsDataset creation for Deep Learning-based Geometric Computer Vision problems
Dataset creation for Deep Learning-based Geometric Computer Vision problemsPetteriTeikariPhD
 
IRJET- Jeevn-Net: Brain Tumor Segmentation using Cascaded U-Net & Overall...
IRJET-  	  Jeevn-Net: Brain Tumor Segmentation using Cascaded U-Net & Overall...IRJET-  	  Jeevn-Net: Brain Tumor Segmentation using Cascaded U-Net & Overall...
IRJET- Jeevn-Net: Brain Tumor Segmentation using Cascaded U-Net & Overall...IRJET Journal
 
Development of algorithm for identification of maligant growth in cancer usin...
Development of algorithm for identification of maligant growth in cancer usin...Development of algorithm for identification of maligant growth in cancer usin...
Development of algorithm for identification of maligant growth in cancer usin...IJECEIAES
 
SWARM OPTIMIZED MODULAR NEURAL NETWORK BASED DIAGNOSTIC SYSTEM FOR BREAST CAN...
SWARM OPTIMIZED MODULAR NEURAL NETWORK BASED DIAGNOSTIC SYSTEM FOR BREAST CAN...SWARM OPTIMIZED MODULAR NEURAL NETWORK BASED DIAGNOSTIC SYSTEM FOR BREAST CAN...
SWARM OPTIMIZED MODULAR NEURAL NETWORK BASED DIAGNOSTIC SYSTEM FOR BREAST CAN...ijscai
 
MULTI-LEVEL FEATURE FUSION BASED TRANSFER LEARNING FOR PERSON RE-IDENTIFICATION
MULTI-LEVEL FEATURE FUSION BASED TRANSFER LEARNING FOR PERSON RE-IDENTIFICATIONMULTI-LEVEL FEATURE FUSION BASED TRANSFER LEARNING FOR PERSON RE-IDENTIFICATION
MULTI-LEVEL FEATURE FUSION BASED TRANSFER LEARNING FOR PERSON RE-IDENTIFICATIONgerogepatton
 
3.survey on wireless intelligent video surveillance system using moving objec...
3.survey on wireless intelligent video surveillance system using moving objec...3.survey on wireless intelligent video surveillance system using moving objec...
3.survey on wireless intelligent video surveillance system using moving objec...Alexander Decker
 
State-of-the-art Image Processing across all domains
State-of-the-art Image Processing across all domainsState-of-the-art Image Processing across all domains
State-of-the-art Image Processing across all domainsKnoldus Inc.
 
11.0003www.iiste.org call for paper.survey on wireless intelligent video surv...
11.0003www.iiste.org call for paper.survey on wireless intelligent video surv...11.0003www.iiste.org call for paper.survey on wireless intelligent video surv...
11.0003www.iiste.org call for paper.survey on wireless intelligent video surv...Alexander Decker
 
IRJET - Cryptanalysis of a Text Encryption Scheme based on Bit Plane Extraction
IRJET - Cryptanalysis of a Text Encryption Scheme based on Bit Plane ExtractionIRJET - Cryptanalysis of a Text Encryption Scheme based on Bit Plane Extraction
IRJET - Cryptanalysis of a Text Encryption Scheme based on Bit Plane ExtractionIRJET Journal
 
A new image steganography algorithm based
A new image steganography algorithm basedA new image steganography algorithm based
A new image steganography algorithm basedIJNSA Journal
 
“Imaging Systems for Applied Reinforcement Learning Control,” a Presentation ...
“Imaging Systems for Applied Reinforcement Learning Control,” a Presentation ...“Imaging Systems for Applied Reinforcement Learning Control,” a Presentation ...
“Imaging Systems for Applied Reinforcement Learning Control,” a Presentation ...Edge AI and Vision Alliance
 
Development of 3D convolutional neural network to recognize human activities ...
Development of 3D convolutional neural network to recognize human activities ...Development of 3D convolutional neural network to recognize human activities ...
Development of 3D convolutional neural network to recognize human activities ...journalBEEI
 
Interpretable AI: Not Just For Regulators
Interpretable AI: Not Just For RegulatorsInterpretable AI: Not Just For Regulators
Interpretable AI: Not Just For RegulatorsDatabricks
 
IRJET-Multiclass Classification Method Based On Deep Learning For Leaf Identi...
IRJET-Multiclass Classification Method Based On Deep Learning For Leaf Identi...IRJET-Multiclass Classification Method Based On Deep Learning For Leaf Identi...
IRJET-Multiclass Classification Method Based On Deep Learning For Leaf Identi...IRJET Journal
 

What's hot (20)

Zeeshan.ali.presentations
Zeeshan.ali.presentationsZeeshan.ali.presentations
Zeeshan.ali.presentations
 
Reflectivity Parameter Extraction from RADAR Images Using Back Propagation Al...
Reflectivity Parameter Extraction from RADAR Images Using Back Propagation Al...Reflectivity Parameter Extraction from RADAR Images Using Back Propagation Al...
Reflectivity Parameter Extraction from RADAR Images Using Back Propagation Al...
 
GANs in Digital Pathology
GANs in Digital PathologyGANs in Digital Pathology
GANs in Digital Pathology
 
Deep Learning for Computer Vision: Medical Imaging (UPC 2016)
Deep Learning for Computer Vision: Medical Imaging (UPC 2016)Deep Learning for Computer Vision: Medical Imaging (UPC 2016)
Deep Learning for Computer Vision: Medical Imaging (UPC 2016)
 
Development of a Location Invariant Crack Detection and Localisation Model (L...
Development of a Location Invariant Crack Detection and Localisation Model (L...Development of a Location Invariant Crack Detection and Localisation Model (L...
Development of a Location Invariant Crack Detection and Localisation Model (L...
 
Dataset creation for Deep Learning-based Geometric Computer Vision problems
Dataset creation for Deep Learning-based Geometric Computer Vision problemsDataset creation for Deep Learning-based Geometric Computer Vision problems
Dataset creation for Deep Learning-based Geometric Computer Vision problems
 
IRJET- Jeevn-Net: Brain Tumor Segmentation using Cascaded U-Net & Overall...
IRJET-  	  Jeevn-Net: Brain Tumor Segmentation using Cascaded U-Net & Overall...IRJET-  	  Jeevn-Net: Brain Tumor Segmentation using Cascaded U-Net & Overall...
IRJET- Jeevn-Net: Brain Tumor Segmentation using Cascaded U-Net & Overall...
 
Development of algorithm for identification of maligant growth in cancer usin...
Development of algorithm for identification of maligant growth in cancer usin...Development of algorithm for identification of maligant growth in cancer usin...
Development of algorithm for identification of maligant growth in cancer usin...
 
SWARM OPTIMIZED MODULAR NEURAL NETWORK BASED DIAGNOSTIC SYSTEM FOR BREAST CAN...
SWARM OPTIMIZED MODULAR NEURAL NETWORK BASED DIAGNOSTIC SYSTEM FOR BREAST CAN...SWARM OPTIMIZED MODULAR NEURAL NETWORK BASED DIAGNOSTIC SYSTEM FOR BREAST CAN...
SWARM OPTIMIZED MODULAR NEURAL NETWORK BASED DIAGNOSTIC SYSTEM FOR BREAST CAN...
 
MULTI-LEVEL FEATURE FUSION BASED TRANSFER LEARNING FOR PERSON RE-IDENTIFICATION
MULTI-LEVEL FEATURE FUSION BASED TRANSFER LEARNING FOR PERSON RE-IDENTIFICATIONMULTI-LEVEL FEATURE FUSION BASED TRANSFER LEARNING FOR PERSON RE-IDENTIFICATION
MULTI-LEVEL FEATURE FUSION BASED TRANSFER LEARNING FOR PERSON RE-IDENTIFICATION
 
3.survey on wireless intelligent video surveillance system using moving objec...
3.survey on wireless intelligent video surveillance system using moving objec...3.survey on wireless intelligent video surveillance system using moving objec...
3.survey on wireless intelligent video surveillance system using moving objec...
 
State-of-the-art Image Processing across all domains
State-of-the-art Image Processing across all domainsState-of-the-art Image Processing across all domains
State-of-the-art Image Processing across all domains
 
11.0003www.iiste.org call for paper.survey on wireless intelligent video surv...
11.0003www.iiste.org call for paper.survey on wireless intelligent video surv...11.0003www.iiste.org call for paper.survey on wireless intelligent video surv...
11.0003www.iiste.org call for paper.survey on wireless intelligent video surv...
 
IRJET - Cryptanalysis of a Text Encryption Scheme based on Bit Plane Extraction
IRJET - Cryptanalysis of a Text Encryption Scheme based on Bit Plane ExtractionIRJET - Cryptanalysis of a Text Encryption Scheme based on Bit Plane Extraction
IRJET - Cryptanalysis of a Text Encryption Scheme based on Bit Plane Extraction
 
A new image steganography algorithm based
A new image steganography algorithm basedA new image steganography algorithm based
A new image steganography algorithm based
 
“Imaging Systems for Applied Reinforcement Learning Control,” a Presentation ...
“Imaging Systems for Applied Reinforcement Learning Control,” a Presentation ...“Imaging Systems for Applied Reinforcement Learning Control,” a Presentation ...
“Imaging Systems for Applied Reinforcement Learning Control,” a Presentation ...
 
Image recognition
Image recognitionImage recognition
Image recognition
 
Development of 3D convolutional neural network to recognize human activities ...
Development of 3D convolutional neural network to recognize human activities ...Development of 3D convolutional neural network to recognize human activities ...
Development of 3D convolutional neural network to recognize human activities ...
 
Interpretable AI: Not Just For Regulators
Interpretable AI: Not Just For RegulatorsInterpretable AI: Not Just For Regulators
Interpretable AI: Not Just For Regulators
 
IRJET-Multiclass Classification Method Based On Deep Learning For Leaf Identi...
IRJET-Multiclass Classification Method Based On Deep Learning For Leaf Identi...IRJET-Multiclass Classification Method Based On Deep Learning For Leaf Identi...
IRJET-Multiclass Classification Method Based On Deep Learning For Leaf Identi...
 

Similar to Mask R-CNN Isolates PV Panels

Satellite Image Classification with Deep Learning Survey
Satellite Image Classification with Deep Learning SurveySatellite Image Classification with Deep Learning Survey
Satellite Image Classification with Deep Learning Surveyijtsrd
 
FACE PHOTO-SKETCH RECOGNITION USING DEEP LEARNING TECHNIQUES - A REVIEW
FACE PHOTO-SKETCH RECOGNITION USING DEEP LEARNING TECHNIQUES - A REVIEWFACE PHOTO-SKETCH RECOGNITION USING DEEP LEARNING TECHNIQUES - A REVIEW
FACE PHOTO-SKETCH RECOGNITION USING DEEP LEARNING TECHNIQUES - A REVIEWIRJET Journal
 
Intelligent System For Face Mask Detection
Intelligent System For Face Mask DetectionIntelligent System For Face Mask Detection
Intelligent System For Face Mask DetectionIRJET Journal
 
A Literature Survey on Image Linguistic Visual Question Answering
A Literature Survey on Image Linguistic Visual Question AnsweringA Literature Survey on Image Linguistic Visual Question Answering
A Literature Survey on Image Linguistic Visual Question AnsweringIRJET Journal
 
IRJET- 3D Object Recognition of Car Image Detection
IRJET-  	  3D Object Recognition of Car Image DetectionIRJET-  	  3D Object Recognition of Car Image Detection
IRJET- 3D Object Recognition of Car Image DetectionIRJET Journal
 
Classification of Images Using CNN Model and its Variants
Classification of Images Using CNN Model and its VariantsClassification of Images Using CNN Model and its Variants
Classification of Images Using CNN Model and its VariantsIRJET Journal
 
CROP PROTECTION AGAINST BIRDS USING DEEP LEARNING AND IOT
CROP PROTECTION AGAINST BIRDS USING DEEP LEARNING AND IOTCROP PROTECTION AGAINST BIRDS USING DEEP LEARNING AND IOT
CROP PROTECTION AGAINST BIRDS USING DEEP LEARNING AND IOTIRJET Journal
 
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
 
Development and Hardware Implementation of an Efficient Algorithm for Cloud D...
Development and Hardware Implementation of an Efficient Algorithm for Cloud D...Development and Hardware Implementation of an Efficient Algorithm for Cloud D...
Development and Hardware Implementation of an Efficient Algorithm for Cloud D...sipij
 
Dilated Inception U-Net for Nuclei Segmentation in Multi-Organ Histology Images
Dilated Inception U-Net for Nuclei Segmentation in Multi-Organ Histology ImagesDilated Inception U-Net for Nuclei Segmentation in Multi-Organ Histology Images
Dilated Inception U-Net for Nuclei Segmentation in Multi-Organ Histology ImagesIRJET Journal
 
Image Recognition Expert System based on deep learning
Image Recognition Expert System based on deep learningImage Recognition Expert System based on deep learning
Image Recognition Expert System based on deep learningPRATHAMESH REGE
 
A deep learning based stereo matching model for autonomous vehicle
A deep learning based stereo matching model for autonomous vehicleA deep learning based stereo matching model for autonomous vehicle
A deep learning based stereo matching model for autonomous vehicleIAESIJAI
 
A hybrid approach for face recognition using a convolutional neural network c...
A hybrid approach for face recognition using a convolutional neural network c...A hybrid approach for face recognition using a convolutional neural network c...
A hybrid approach for face recognition using a convolutional neural network c...IAESIJAI
 
Performance investigation of two-stage detection techniques using traffic lig...
Performance investigation of two-stage detection techniques using traffic lig...Performance investigation of two-stage detection techniques using traffic lig...
Performance investigation of two-stage detection techniques using traffic lig...IAESIJAI
 
Different Classification Technique for Data mining in Insurance Industry usin...
Different Classification Technique for Data mining in Insurance Industry usin...Different Classification Technique for Data mining in Insurance Industry usin...
Different Classification Technique for Data mining in Insurance Industry usin...IOSRjournaljce
 
Deep Learning based Multi-class Brain Tumor Classification
Deep Learning based Multi-class Brain Tumor ClassificationDeep Learning based Multi-class Brain Tumor Classification
Deep Learning based Multi-class Brain Tumor ClassificationIRJET Journal
 
Image super resolution using Generative Adversarial Network.
Image super resolution using Generative Adversarial Network.Image super resolution using Generative Adversarial Network.
Image super resolution using Generative Adversarial Network.IRJET Journal
 
A NOVEL IMAGE STEGANOGRAPHY APPROACH USING MULTI-LAYERS DCT FEATURES BASED ON...
A NOVEL IMAGE STEGANOGRAPHY APPROACH USING MULTI-LAYERS DCT FEATURES BASED ON...A NOVEL IMAGE STEGANOGRAPHY APPROACH USING MULTI-LAYERS DCT FEATURES BASED ON...
A NOVEL IMAGE STEGANOGRAPHY APPROACH USING MULTI-LAYERS DCT FEATURES BASED ON...ijma
 
CAR DAMAGE DETECTION USING DEEP LEARNING
CAR DAMAGE DETECTION USING DEEP LEARNINGCAR DAMAGE DETECTION USING DEEP LEARNING
CAR DAMAGE DETECTION USING DEEP LEARNINGIRJET Journal
 

Similar to Mask R-CNN Isolates PV Panels (20)

Satellite Image Classification with Deep Learning Survey
Satellite Image Classification with Deep Learning SurveySatellite Image Classification with Deep Learning Survey
Satellite Image Classification with Deep Learning Survey
 
FACE PHOTO-SKETCH RECOGNITION USING DEEP LEARNING TECHNIQUES - A REVIEW
FACE PHOTO-SKETCH RECOGNITION USING DEEP LEARNING TECHNIQUES - A REVIEWFACE PHOTO-SKETCH RECOGNITION USING DEEP LEARNING TECHNIQUES - A REVIEW
FACE PHOTO-SKETCH RECOGNITION USING DEEP LEARNING TECHNIQUES - A REVIEW
 
Intelligent System For Face Mask Detection
Intelligent System For Face Mask DetectionIntelligent System For Face Mask Detection
Intelligent System For Face Mask Detection
 
A Literature Survey on Image Linguistic Visual Question Answering
A Literature Survey on Image Linguistic Visual Question AnsweringA Literature Survey on Image Linguistic Visual Question Answering
A Literature Survey on Image Linguistic Visual Question Answering
 
IRJET- 3D Object Recognition of Car Image Detection
IRJET-  	  3D Object Recognition of Car Image DetectionIRJET-  	  3D Object Recognition of Car Image Detection
IRJET- 3D Object Recognition of Car Image Detection
 
Classification of Images Using CNN Model and its Variants
Classification of Images Using CNN Model and its VariantsClassification of Images Using CNN Model and its Variants
Classification of Images Using CNN Model and its Variants
 
CROP PROTECTION AGAINST BIRDS USING DEEP LEARNING AND IOT
CROP PROTECTION AGAINST BIRDS USING DEEP LEARNING AND IOTCROP PROTECTION AGAINST BIRDS USING DEEP LEARNING AND IOT
CROP PROTECTION AGAINST BIRDS USING DEEP LEARNING AND IOT
 
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...
 
Development and Hardware Implementation of an Efficient Algorithm for Cloud D...
Development and Hardware Implementation of an Efficient Algorithm for Cloud D...Development and Hardware Implementation of an Efficient Algorithm for Cloud D...
Development and Hardware Implementation of an Efficient Algorithm for Cloud D...
 
Dilated Inception U-Net for Nuclei Segmentation in Multi-Organ Histology Images
Dilated Inception U-Net for Nuclei Segmentation in Multi-Organ Histology ImagesDilated Inception U-Net for Nuclei Segmentation in Multi-Organ Histology Images
Dilated Inception U-Net for Nuclei Segmentation in Multi-Organ Histology Images
 
Image Recognition Expert System based on deep learning
Image Recognition Expert System based on deep learningImage Recognition Expert System based on deep learning
Image Recognition Expert System based on deep learning
 
A deep learning based stereo matching model for autonomous vehicle
A deep learning based stereo matching model for autonomous vehicleA deep learning based stereo matching model for autonomous vehicle
A deep learning based stereo matching model for autonomous vehicle
 
A hybrid approach for face recognition using a convolutional neural network c...
A hybrid approach for face recognition using a convolutional neural network c...A hybrid approach for face recognition using a convolutional neural network c...
A hybrid approach for face recognition using a convolutional neural network c...
 
Performance investigation of two-stage detection techniques using traffic lig...
Performance investigation of two-stage detection techniques using traffic lig...Performance investigation of two-stage detection techniques using traffic lig...
Performance investigation of two-stage detection techniques using traffic lig...
 
Different Classification Technique for Data mining in Insurance Industry usin...
Different Classification Technique for Data mining in Insurance Industry usin...Different Classification Technique for Data mining in Insurance Industry usin...
Different Classification Technique for Data mining in Insurance Industry usin...
 
Deep Learning based Multi-class Brain Tumor Classification
Deep Learning based Multi-class Brain Tumor ClassificationDeep Learning based Multi-class Brain Tumor Classification
Deep Learning based Multi-class Brain Tumor Classification
 
Image super resolution using Generative Adversarial Network.
Image super resolution using Generative Adversarial Network.Image super resolution using Generative Adversarial Network.
Image super resolution using Generative Adversarial Network.
 
A NOVEL IMAGE STEGANOGRAPHY APPROACH USING MULTI-LAYERS DCT FEATURES BASED ON...
A NOVEL IMAGE STEGANOGRAPHY APPROACH USING MULTI-LAYERS DCT FEATURES BASED ON...A NOVEL IMAGE STEGANOGRAPHY APPROACH USING MULTI-LAYERS DCT FEATURES BASED ON...
A NOVEL IMAGE STEGANOGRAPHY APPROACH USING MULTI-LAYERS DCT FEATURES BASED ON...
 
CAR DAMAGE DETECTION USING DEEP LEARNING
CAR DAMAGE DETECTION USING DEEP LEARNINGCAR DAMAGE DETECTION USING DEEP LEARNING
CAR DAMAGE DETECTION USING DEEP LEARNING
 
40120140507006
4012014050700640120140507006
40120140507006
 

More from ijtsrd

‘Six Sigma Technique’ A Journey Through its Implementation
‘Six Sigma Technique’ A Journey Through its Implementation‘Six Sigma Technique’ A Journey Through its Implementation
‘Six Sigma Technique’ A Journey Through its Implementationijtsrd
 
Edge Computing in Space Enhancing Data Processing and Communication for Space...
Edge Computing in Space Enhancing Data Processing and Communication for Space...Edge Computing in Space Enhancing Data Processing and Communication for Space...
Edge Computing in Space Enhancing Data Processing and Communication for Space...ijtsrd
 
Dynamics of Communal Politics in 21st Century India Challenges and Prospects
Dynamics of Communal Politics in 21st Century India Challenges and ProspectsDynamics of Communal Politics in 21st Century India Challenges and Prospects
Dynamics of Communal Politics in 21st Century India Challenges and Prospectsijtsrd
 
Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...
Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...
Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...ijtsrd
 
The Impact of Digital Media on the Decentralization of Power and the Erosion ...
The Impact of Digital Media on the Decentralization of Power and the Erosion ...The Impact of Digital Media on the Decentralization of Power and the Erosion ...
The Impact of Digital Media on the Decentralization of Power and the Erosion ...ijtsrd
 
Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...
Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...
Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...ijtsrd
 
Problems and Challenges of Agro Entreprenurship A Study
Problems and Challenges of Agro Entreprenurship A StudyProblems and Challenges of Agro Entreprenurship A Study
Problems and Challenges of Agro Entreprenurship A Studyijtsrd
 
Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...
Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...
Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...ijtsrd
 
The Impact of Educational Background and Professional Training on Human Right...
The Impact of Educational Background and Professional Training on Human Right...The Impact of Educational Background and Professional Training on Human Right...
The Impact of Educational Background and Professional Training on Human Right...ijtsrd
 
A Study on the Effective Teaching Learning Process in English Curriculum at t...
A Study on the Effective Teaching Learning Process in English Curriculum at t...A Study on the Effective Teaching Learning Process in English Curriculum at t...
A Study on the Effective Teaching Learning Process in English Curriculum at t...ijtsrd
 
The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...
The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...
The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...ijtsrd
 
Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...
Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...
Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...ijtsrd
 
Sustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. Sadiku
Sustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. SadikuSustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. Sadiku
Sustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. Sadikuijtsrd
 
Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...
Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...
Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...ijtsrd
 
Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...
Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...
Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...ijtsrd
 
Activating Geospatial Information for Sudans Sustainable Investment Map
Activating Geospatial Information for Sudans Sustainable Investment MapActivating Geospatial Information for Sudans Sustainable Investment Map
Activating Geospatial Information for Sudans Sustainable Investment Mapijtsrd
 
Educational Unity Embracing Diversity for a Stronger Society
Educational Unity Embracing Diversity for a Stronger SocietyEducational Unity Embracing Diversity for a Stronger Society
Educational Unity Embracing Diversity for a Stronger Societyijtsrd
 
Integration of Indian Indigenous Knowledge System in Management Prospects and...
Integration of Indian Indigenous Knowledge System in Management Prospects and...Integration of Indian Indigenous Knowledge System in Management Prospects and...
Integration of Indian Indigenous Knowledge System in Management Prospects and...ijtsrd
 
DeepMask Transforming Face Mask Identification for Better Pandemic Control in...
DeepMask Transforming Face Mask Identification for Better Pandemic Control in...DeepMask Transforming Face Mask Identification for Better Pandemic Control in...
DeepMask Transforming Face Mask Identification for Better Pandemic Control in...ijtsrd
 
Streamlining Data Collection eCRF Design and Machine Learning
Streamlining Data Collection eCRF Design and Machine LearningStreamlining Data Collection eCRF Design and Machine Learning
Streamlining Data Collection eCRF Design and Machine Learningijtsrd
 

More from ijtsrd (20)

‘Six Sigma Technique’ A Journey Through its Implementation
‘Six Sigma Technique’ A Journey Through its Implementation‘Six Sigma Technique’ A Journey Through its Implementation
‘Six Sigma Technique’ A Journey Through its Implementation
 
Edge Computing in Space Enhancing Data Processing and Communication for Space...
Edge Computing in Space Enhancing Data Processing and Communication for Space...Edge Computing in Space Enhancing Data Processing and Communication for Space...
Edge Computing in Space Enhancing Data Processing and Communication for Space...
 
Dynamics of Communal Politics in 21st Century India Challenges and Prospects
Dynamics of Communal Politics in 21st Century India Challenges and ProspectsDynamics of Communal Politics in 21st Century India Challenges and Prospects
Dynamics of Communal Politics in 21st Century India Challenges and Prospects
 
Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...
Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...
Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...
 
The Impact of Digital Media on the Decentralization of Power and the Erosion ...
The Impact of Digital Media on the Decentralization of Power and the Erosion ...The Impact of Digital Media on the Decentralization of Power and the Erosion ...
The Impact of Digital Media on the Decentralization of Power and the Erosion ...
 
Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...
Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...
Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...
 
Problems and Challenges of Agro Entreprenurship A Study
Problems and Challenges of Agro Entreprenurship A StudyProblems and Challenges of Agro Entreprenurship A Study
Problems and Challenges of Agro Entreprenurship A Study
 
Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...
Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...
Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...
 
The Impact of Educational Background and Professional Training on Human Right...
The Impact of Educational Background and Professional Training on Human Right...The Impact of Educational Background and Professional Training on Human Right...
The Impact of Educational Background and Professional Training on Human Right...
 
A Study on the Effective Teaching Learning Process in English Curriculum at t...
A Study on the Effective Teaching Learning Process in English Curriculum at t...A Study on the Effective Teaching Learning Process in English Curriculum at t...
A Study on the Effective Teaching Learning Process in English Curriculum at t...
 
The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...
The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...
The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...
 
Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...
Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...
Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...
 
Sustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. Sadiku
Sustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. SadikuSustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. Sadiku
Sustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. Sadiku
 
Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...
Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...
Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...
 
Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...
Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...
Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...
 
Activating Geospatial Information for Sudans Sustainable Investment Map
Activating Geospatial Information for Sudans Sustainable Investment MapActivating Geospatial Information for Sudans Sustainable Investment Map
Activating Geospatial Information for Sudans Sustainable Investment Map
 
Educational Unity Embracing Diversity for a Stronger Society
Educational Unity Embracing Diversity for a Stronger SocietyEducational Unity Embracing Diversity for a Stronger Society
Educational Unity Embracing Diversity for a Stronger Society
 
Integration of Indian Indigenous Knowledge System in Management Prospects and...
Integration of Indian Indigenous Knowledge System in Management Prospects and...Integration of Indian Indigenous Knowledge System in Management Prospects and...
Integration of Indian Indigenous Knowledge System in Management Prospects and...
 
DeepMask Transforming Face Mask Identification for Better Pandemic Control in...
DeepMask Transforming Face Mask Identification for Better Pandemic Control in...DeepMask Transforming Face Mask Identification for Better Pandemic Control in...
DeepMask Transforming Face Mask Identification for Better Pandemic Control in...
 
Streamlining Data Collection eCRF Design and Machine Learning
Streamlining Data Collection eCRF Design and Machine LearningStreamlining Data Collection eCRF Design and Machine Learning
Streamlining Data Collection eCRF Design and Machine Learning
 

Recently uploaded

Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxOH TEIK BIN
 
भारत-रोम व्यापार.pptx, Indo-Roman Trade,
भारत-रोम व्यापार.pptx, Indo-Roman Trade,भारत-रोम व्यापार.pptx, Indo-Roman Trade,
भारत-रोम व्यापार.pptx, Indo-Roman Trade,Virag Sontakke
 
Science 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsScience 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsKarinaGenton
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxSayali Powar
 
ENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptx
ENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptxENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptx
ENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptxAnaBeatriceAblay2
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxNirmalaLoungPoorunde1
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxpboyjonauth
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsanshu789521
 
Science lesson Moon for 4th quarter lesson
Science lesson Moon for 4th quarter lessonScience lesson Moon for 4th quarter lesson
Science lesson Moon for 4th quarter lessonJericReyAuditor
 
Pharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdfPharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdfMahmoud M. Sallam
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentInMediaRes1
 
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfEnzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfSumit Tiwari
 
Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxthorishapillay1
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Educationpboyjonauth
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Celine George
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTiammrhaywood
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Celine George
 
Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application ) Sakshi Ghasle
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityGeoBlogs
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13Steve Thomason
 

Recently uploaded (20)

Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptx
 
भारत-रोम व्यापार.pptx, Indo-Roman Trade,
भारत-रोम व्यापार.pptx, Indo-Roman Trade,भारत-रोम व्यापार.pptx, Indo-Roman Trade,
भारत-रोम व्यापार.pptx, Indo-Roman Trade,
 
Science 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsScience 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its Characteristics
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
 
ENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptx
ENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptxENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptx
ENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptx
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptx
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptx
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha elections
 
Science lesson Moon for 4th quarter lesson
Science lesson Moon for 4th quarter lessonScience lesson Moon for 4th quarter lesson
Science lesson Moon for 4th quarter lesson
 
Pharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdfPharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdf
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media Component
 
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfEnzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
 
Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptx
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Education
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17
 
Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application )
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13
 

Mask R-CNN Isolates PV Panels

  • 1. International Journal of Trend in Scientific Research and Development (IJTSRD) Volume 5 Issue 1, November-December 2020 Available Online: www.ijtsrd.com e-ISSN: 2456 – 6470 @ IJTSRD | Unique Paper ID – IJTSRD38173 | Volume – 5 | Issue – 1 | November-December 2020 Page 1191 Using Mask R-CNN to Isolate PV Panels from Background Object in Images Muhammet Sait, Atilla Erguzen, Erdal Erdal Department of Computer Engineering, Kirikkale University, Kirikkale, Turkey ABSTRACT Identifying foreground objects in an image is one of the most common operations used in image processing. In this work, Mask R-CNN algorithm is used to identify solar photovoltaic (PV) panels in aerial images and create a mask that can be used to remove the background from the images.Thisallows processing the PV panels separately. Using ML to solve this problem can generate more accurate results in comparison to more traditional image processing techniques like using edge detection or Gaussian filtering especially in images where the view might not be easily separable from the objects of interest. The trained model was found to be successful in detecting the PV panels and selecting the pixels that belong to them while ignoring the background pixels. This kind of work can be useful in collecting information about PV installation present in aerial or satellite imagery, or in analyzing the health and integrity of PV modules in large-scale installations e.g., in a solar power plant. The results show that this method is effective with a high potential for improved results if the model is trained using larger and more diverse datasets. KEYWORD: Machine learning, Mask R-CNN, detection, image segmentation, object recognition, solar energy, photovoltaics How to cite this paper: Muhammet Sait | Atilla Erguzen | Erdal Erdal "Using Mask R-CNN to Isolate PV Panels from BackgroundObjectin Images" Published in International Journal of Trend in Scientific Research and Development(ijtsrd), ISSN: 2456-6470, Volume-5 | Issue-1, December 2020, pp.1191-1195, URL: www.ijtsrd.com/papers/ijtsrd38173.pdf Copyright © 2020 by author(s) and International Journal ofTrendinScientific Research and Development Journal. This is an Open Access article distributed under the terms of the Creative CommonsAttribution License (CC BY 4.0) (http://creativecommons.org/licenses/by/4.0) INTRODUCTION There is a growing interest in high qualityinformationabout small scale solar power (Photovoltaic, PV) installations among governments, agencies, and decisionmakersinorder to provide better estimates of the growth in powerdemands and trends in renewable energy use. Currently, statistics on the use of solar energy are based on data from the importation and sales of PV panels. This methodology can only give rough estimates, and cannot keep track of quick local transitions. On the other hand, detecting PV panels in imagery collected by drones in larger scale installations helps process the images to find any faults or damagesinthe system. The problem of identifying objects of interest in an image and isolating them from the background can be solved using numerous methods. The most obvious route would be to try using an edge detection algorithm in combination withsome pre-processing for noise reduction and follow that with some steps to separate the foreground from the rest of the image. Processing certain types of images using filters and other mathematical edge detection and pixel manipulation techniques can be tricky due to the nature of the scene and what kind of imaging conditions and equipment are used. The popularity of deep learning use in image processing has been growing and it has been applied in solving problems like road detection[1–3], scene labeling [4], vehicle detection[5], detection of people[6], and detection of buildings[7]. Convolutional Neural Networks (CNNs) were used in previous works for the task of classification and detection of solar panels, where CNNs produced the best results [8]. ML algorithms can provide crisp edges and locate the object of interest in various views often resulting in much better outcomes compared to other image processing methods. Most notably, they surpass the traditional techniques when the objects of interest are surrounded by other background objects in different types of environments,i.e.,ifthedetected objects are small compared to other objects in the view, or if the studied images have different attributes like wide difference levels of brightness and contrast, different imaging resolution, etc. In this work, one of the ML algorithms, Mask R-CNN[9], is investigated to determine its suitability and effectiveness in identifying photovoltaic modules in aerial photographs taken by a drone flying over a power plant installation. The dataset of images used in this study was collected and made available online by SenseFly systems, usingtheirdrone eBee Classic[10]. A number of other available datasets are reviewed in a report by Curier et al., which can be useful for developing studies in this area [11]. Table 1, Technical data about the studied dataset Groundresolution 14.23 cm/px (5.6 in/px) Coverage 0.08 square km (0.03 sq. mi) Flight height 70 m (229.6 ft) Number of images 1075 Image format TIFF IJTSRD38173
  • 2. International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470 @ IJTSRD | Unique Paper ID – IJTSRD38173 | Volume – 5 | Issue – 1 | November-December 2020 Page 1192 Applying Mask R-CNN During our work on processing a dataset of PV panel images for fault detection, there was a need for treatingthePVpanel areas in isolation from the rest of the image pixels. This allowed better results and less noise in the output since all interactions with background objects are eliminated. Mask R-CNN algorithm was selected for this application and its results were evaluated. Figure 1 One of the processed images, the respective generated mask, result of multiplication Mask R-CNN is a deep learning algorithm designed to detect objects in an image and create a segmentation mask foreach identified object. The algorithm uses Convolutional Neural Networks (CNNs) as a backbone. Such networks are widely used to perform image classificationandrecognition,suchas face recognition or medical diagnosis. Some of the computer vision tasks that can be solved using CNNs: Classification: does the object of interest appear in the image? Object detection: how many objects are there and what are their positions? Semantic segmentation: which pixels belong to objects of interest. Instance segmentation: determinesthepixelsforeachof the object instances. Figure 2 Comparison between semantic and instance segmentation. Original image (A), semantic segmentation result (B), instance segmentation result (C) The problem of removing the background can be solved using semantic segmentation or sample segmentation methods. By using deep learning for this step, more reliable results compared to traditional imageprocessingtechniques were achieved. It also made the software more useful when processing image datasets captured under different conditions, or when using different types of imaging equipment, as this causes image properties to change.CNNs, on the other hand, tend to give better results and are better equipped to solve this problem. Various algorithms have been considered during the development of our application. Among the algorithms investigated: Fast R-CNN [12], deep image matting[13],[14] and other background removal studies [15], [16]. Canny edge detection and Sobel filter-based methods were also considered. Mask R-CNN [9]was preferred over other algorithms for the following reasons: Multiple open-source applications are available and ready to use; Ease of use as the algorithm is well explained and documented; Training time is short; Its results are superior to other algorithms; A subset of the complete dataset was selected from the original dataset to train the segmentation model. This new dataset is split into two groups: a training set used to train the model, and a validation set to adjust the model. Both the training and validation set consist of: 1. Real images themselves (in original condition). 2. PV module mask corresponding to the fields of PVMs. Masks used in the training and validation of the model were created manually by a human annotator and stored as PNG images where pixels have only two values: 0 for background pixels, and 1 for PV pixels. The masks are later converted to JSON annotations that can be loaded to be used to train the Mask R-CNN model.
  • 3. International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470 @ IJTSRD | Unique Paper ID – IJTSRD38173 | Volume – 5 | Issue – 1 | November-December 2020 Page 1193 Figure 3 Example images from the studied dataset along with their masks Training the model To train and evaluate the ML model, Detectron2 [17] was chosen as an implementation of Mask R-CNN in this study. It is a modern open-source software system that enhances previous deep learning models and provides a largenumber of modern ML algorithms implementations ready for training and use. To prepare the dataset for training and evaluation, masks have been transformed into a custom JSON annotation that can be read by Detectron2 and useddirectly.Thisannotation was developed as part of the Microsoft COCO dataset [18]. This format is supported by many deep learning libraries, making it the current de facto standard for image segmentation datasets. JSON annotations were generated from mask files stored as PNG images using a tool called pycococreator[19]. Figure 4 Sample of the training input data After preparing the training images and JSON annotations, the training is executed on the GPU to minimize training time. Google Colab[20]is used for this step. Colab is a free service that allows running machinelearningcode writtenin Python on servers equipped with NVIDIA Tesla K80 orP100 GPUs. To achieve higher accuracy from the model using a small training set, transfer learning[21] was used. Thismeansthat instead of starting the training process from scratch, the training starts from a pre-trained model on a different dataset. This is useful because the model will know what to look for even if it cannot yet define our custom object classes. The starting model selected is the R50-FPN Mask R-CNN model that was pre-trained on COCO dataset. A new "pvm" class was added and the model was tweaked so that it can recognize these objects and create segmentation masks for them. Experimental results The performance of the machine learning algorithm is evaluated using a test dataset during the training phase.The resulting Average Precision value is available in table2.This metric shows how good the algorithmiswhenfindingmasks for PVM class objects. More performance metrics resultsare provided in table 3, which indicate the accuracy, sensitivity and recall of the trained model. The images used for both training and testing the models were selected from the original datasetsothatblurryimages and identical frames or almost identical frames were eliminated. Images that did not contain PV panels at all were also not used in the training or validation of the model. Table 2, Bounding box Average Precision per category Class AP pvm 75.534 Table 3, Performance measurements of the trained model Accuracy Sensitivity Recall 0.774 0.75 0.877
  • 4. International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470 @ IJTSRD | Unique Paper ID – IJTSRD38173 | Volume – 5 | Issue – 1 | November-December 2020 Page 1194 Two examples of pictures used to evaluate our educated model are shown in. Figure 5 Sample result of Mask R-CNN model validation Conclusion Using ML algorithms in image segmentation and object isolation from the background can be more useful and accurate than traditional algorithms in manyuse cases depending on the type and nature of the processed images. The advances in both hardware and ML algorithms and libraries allow applying these novel techniques in solving older problems resulting in more accurate outputs. Trained models on large training datasets can identify objects of interest in different environments and under various imaging conditions, compared to traditional image processing which usually assumes certain conditions that must be met for the algorithm to give optimal results. The results show that the selected algorithm is effective and accurate for this task. The performance measures demonstrate that the algorithm could detectmostofthetrue PV pixels while avoiding backgroundpixelssuccessfully.The model was only trained using a small dataset which contained images taken usingthesameequipmentunder the same environmental conditions. Better results are expected to be achieved when using larger datasetswith morediverse images to train and validate the model. This work was used in part to help assess large-scale PV installations and detect faults and malfunctions. It can also be useful in information gathering applications where PV panels are detected in satellite and aerial images. References [1] V. Mnih, G. E. Hinton, Learning to detect roadsinhigh- resolution aerial images, in: Lect. Notes Comput. Sci. (Including Subser. Lect. Notes Artif. Intell. Lect. Notes Bioinformatics), Springer Verlag, 2010: pp. 210–223. https://doi.org/10.1007/978-3-642-15567-3_16. [2] J. Fritsch, T. Kuhnl, A. Geiger, A new performance measure and evaluation benchmark for road detection algorithms, in: IEEE Conf. Intell. Transp. Syst. Proceedings, ITSC, 2013: pp. 1693–1700. https://doi.org/10.1109/ITSC.2013.6728473. [3] C. César, T. Mendes, V. Frémont, D.F. Wolf, D. Fernando, Exploiting Fully Convolutional Networks for Fast Road Detection, 2016. https://hal.archives- ouvertes.fr/hal-01260697 (accessed December 17, 2020). [4] N. Audebert, B. Le Saux, S. Lefèvre, Semantic Segmentation of Earth Observation Data Using Multimodal and Multi-scale Deep Networks, Lect. Notes Comput. Sci. (Including Subser. Lect. Notes Artif. Intell. Lect. Notes Bioinformatics). 10111 LNCS (2016) 180–196. http://arxiv.org/abs/1609.06846 (accessed December 17, 2020). [5] X. Chen, S. Xiang, C. L. Liu, C. H. Pan, Vehicle detection in satellite images by hybrid deep convolutional neural networks, IEEE Geosci. Remote Sens. Lett. 11 (2014) 1797–1801. https://doi.org/10.1109/LGRS.2014.2309695. [6] D. C. De Oliveira, M. A. Wehrmeister, Towards real- time people recognition on aerial imagery using convolutional neural networks, in: Proc. - 2016 IEEE 19th Int. Symp. Real-Time Distrib. Comput. ISORC 2016, Institute of Electrical andElectronicsEngineers Inc., 2016: pp. 27–34. https://doi.org/10.1109/ISORC.2016.14. [7] O. A. B. Penatti, K. Nogueira, J. A. Dos Santos, Do deep features generalize from everyday objects to remote sensing and aerial scenes domains?, in: IEEE Comput. Soc. Conf. Comput. Vis. Pattern Recognit. Work., IEEE Computer Society, 2015: pp. 44–51. https://doi.org/10.1109/CVPRW.2015.7301382. [8] J. M. Malof, L. M. Collins, K. Bradbury, A deep convolutional neural network, with pre-training, for solar photovoltaic array detection in aerial imagery, in: Int. Geosci. Remote Sens. Symp., Institute of Electrical and Electronics Engineers Inc., 2017: pp. 874–877. https://doi.org/10.1109/IGARSS.2017.8127092. [9] K. He, G. Gkioxari, P. Dollár, R. Girshick, Mask R-CNN, IEEE Trans. Pattern Anal.Mach.Intell.42(2020)386– 397. https://doi.org/10.1109/TPAMI.2018.2844175. [10] SenseFly, Solar Panel Installation, (n.d.). https://www.sensefly.com/education/datasets/?data set=1416 (accessed December 2, 2020). [11] V. Of, T. H. E. Available, Monitoring spatial sustainable development: Semi-automated analysis of satellite and aerial images for energy transition and sustainability indicators, ArXiv. (2018). [12] R. Girshick, Fast R-CNN, Proc. IEEE Int. Conf. Comput. Vis. 2015 Inter (2015) 1440–1448. https://doi.org/10.1109/ICCV.2015.169. [13] N. Xu, B. Price, S. Cohen, T. Huang, Deep image
  • 5. International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470 @ IJTSRD | Unique Paper ID – IJTSRD38173 | Volume – 5 | Issue – 1 | November-December 2020 Page 1195 matting, Proc. - 30th IEEE Conf. Comput. Vis. Pattern Recognition, CVPR 2017. 2017-Janua (2017) 311– 320. https://doi.org/10.1109/CVPR.2017.41. [14] D. Swiggett, Image Matting and Applications, (n.d.)1– 17. [15] A. Nikitakis, A novel Background Subtraction Scheme for in - Camera Acceleration in Thermal Imagery, 2016 Des. Autom. Test Eur. Conf. Exhib.(2016)1497– 1500. [16] D. Kim, J. Youn, C. Kim, Automatic photovoltaic panel area extraction from UAV thermal infrared images, J. Korean Soc. Surv. Geod. Photogramm. Cartogr. 34 (2016) 559–568. https://doi.org/10.7848/ksgpc.2016.34.6.559. [17] Y. Wu, A. Kirillov, F. Massa, W.-Y. Lo, R. Girshick, Detectron2, (2019). https://github.com/facebookresearch/detectron2. [18] T. Y. Lin, M. Maire, S. Belongie, J. Hays, P. Perona, D. Ramanan, P. Dollár, C.L. Zitnick, Microsoft COCO: Common objects in context, Lect. Notes Comput. Sci. (Including Subser. Lect. Notes Artif. Intell. Lect. Notes Bioinformatics). 8693 LNCS (2014) 740–755. https://doi.org/10.1007/978-3-319-10602-1_48. [19] Waspinator, waspinator/pycococreator: Helper functions to create COCO datasets, (2018). https://github.com/waspinator/pycococreator. [20] Colaboratory, (n.d.). https://colab.research.google.com/notebooks/intro.i pynb (accessed December 17, 2020). [21] Y. Wei, Y. Zhang, J. Huang, Q. Yang, Transfer Learning via Learning to Transfer, in: 35th Int. Conf. Mach. Learn., PMLR, 2018: pp. 5085–5094. http://proceedings.mlr.press/v80/wei18a.html (accessed December 17, 2020).