SlideShare a Scribd company logo
1 of 8
Download to read offline
International Journal of Electrical and Computer Engineering (IJECE)
Vol. 11, No. 3, June 2021, pp. 2666~2673
ISSN: 2088-8708, DOI: 10.11591/ijece.v11i3.pp2666-2673  2666
Journal homepage: http://ijece.iaescore.com
Pine wilt disease spreading prevention system using semantic
segmentation
Chulhyun Hwang1
, Jaean Jeong2
, Hoekyung Jung3
1
Department of Smart IT Software, Kyungbok University, Namyangju, South Korea
2
K-Water, Hwaseongsi, Gyeonggido, South Korea
3
Department of Computer Engineering, PaiChai University, Daejeon, South Korea
Article Info ABSTRACT
Article history:
Received Jul 31, 2020
Revised Sep 22, 2020
Accepted Oct 14, 2020
Pine wilt disease is a disease that affects ecosystems by rapidly killing trees
in a short period of time due to the close interaction between three factors
such as trees, mediates, and pathogens. There are no 100% mortality
infectious forest pests. According to the Korea Forest Service survey, as of
April 2019, the damage of pine re-nematode disease was about 490,000 dead
trees in 117 cities, counties and wards across the country. It's a fatal
condition. In order to prevent this problem, this paper proposes a system that
detects dead trees, early infection trees, and the like, using deep learning-
based semantic segmentation. In addition, drones were used to photograph
the area of the forest, and a separate pixel segmentation label could be used
to identify three levels of transmission information: Suspicion, attention, and
confirmation. This allows the user to grasp information such as area,
location, and alarm to prevent the spread of re-nematode disease.
Keywords:
Deep learning
Drone
Pine wilt disease
Semantic segmentation
This is an open access article under the CC BY-SA license.
Corresponding Author:
Hoekyung Jung
Department of Computer Engineering
Paichai University
155-40 Baejae-ro, Seogu, DaeJeon, South Korea
Email: hkjung@pcu.ac.kr
1. INTRODUCTION
Recently, with the development of artificial intelligence, research on deep learning technology using
satellite photographs and aerial photographs has been actively conducted. In particular, the interest in the
technology for recognizing objects by using images or photos has been very high. Object detection is one of
the deepest technologies for deep learning that can identify multiple objects in one image and identify their
location. It is also applied as a technology for detecting pine objects to solve pine re-nematode disease.
However, the existing system is an object recognition-based system that learns whether a pine tree is infected
by learning a specific part of the image, but it is effective in simply recognizing an object and determining a
target. It is more efficient than the existing system. In addition, it showed high accuracy in relatively close
pictures, but low accuracy in high-altitude aerial and satellite photographs [1-7].
In order to solve this problem, this paper proposes a pine re nematode spreading prevention system
using semantic splitting. Semantic segmentation is a field of object detection that recognizes and labels a set
of pixels constituting different categories. Conventional object detection detects objects based on what are
inside a specific bounding box, but semantic segmentation is more precise than other forms of object
detection because it uses a segmentation label applied to pixels in the image. In this paper, a separate pixel
segmentation label was applied to the pine re-nematode data set photographed by the drone to identify the
Int J Elec & Comp Eng ISSN: 2088-8708 
Pine wilt disease spreading prevention system using semantic segmentation (Chulhyun Hwang)
2667
three stages of infectious information such as suspicion, attention, and confirmation. This allows the user to
grasp information such as area, location, and alarm to prevent the spread of re-nematode disease.
2. DETRECTION OF SUSPECTED PINE WILT DISEASE
2.1. Doubt detection with supervised classification
S. K. Lee et al. [8] acquired high resolution unmanned aerial vehicle (UAV) images in relapsing
areas of pine nematodes, and conducted suspicions of suspected pine nematodes through supervised
classification techniques such as SVM and ANN. Based on the acquired learning data, we applied two
techniques, ANN and SVM, to calculate 99.43% and 84.60% of user accuracy and manufacturer accuracy
using ANN, and 99.24% and 95.35% accuracy using SVM.
2.2. Extracting suspect space locations using RGB values
To identify the damage of pine re-nematode disease, the experiments were conducted by specifying
the damage RGB values (Red 139, Green 113, Blue 123) and increasing the range values corresponding to
RGB values from 1 to 10 [9-12]. In addition, when a clustering phenomenon occurs among the calculated
pixels, it is recognized as an object as a colony. The purpose of this study is to present an extraction
methodology that can extract damages using RGB values of images taken at high altitudes. However, due to
the characteristics of RGB values, it is difficult to calculate certain accuracy simply by changing the range of
RGB values, such as the RGB values varying due to various factors such as weather conditions, shadow
presence, shooting height, and pixel size [13-14].
3. SYSTEM DESIGN
3.1. Data set preprocessing
The data set used in this study is an aerial photograph with both infected and normal trees. The pine
tree infected with the pine re-nematode is characterized by browning and clustering. Clustering is a
characteristic of re-nematode disease, it spreads the media to surrounding pines, so it can be confirmed that
clustering phenomenon with surrounding pines occurs around the early tree of infection. Therefore, the data
set was preprocessed using this feature.
As shown in the circle in Figure 1, the focusing effect and noise reduction are performed around the
browned and clustered group to improve the accuracy of the data set. In addition, the noise generated during
the process is removed to improve the quality of the data set. As the preprocessing of the image proceeds, it
can be distinguished by the unaided eye and the boundary with the normal tree becomes clear. To evaluate
the accuracy of the data set preprocessing, the dataset was stored in a separate directory and compared with
the image without preprocessing.
Figure 1. Data set focusing
3.2. Overall system design
The purpose of this system is to prevent the spread of pine nematode disease. It aims to detect pine
tree infected with re-nematode disease and isolate it from normal tree based on the data set taken by aerial
photograph. Therefore, the area of infected trees, the area of normal trees, and the area of suspected suspicions are
required. The proposed system applies the preprocessed data set to the semantic partitioning model based on
SegNet and returns each area. It also visualizes the area returned and provides it to the user Figure 2.
The system is a two-stage structure. The first step is to collect, classify and correct the data. The
process is as: In the collecting phase, the user collects image data of the area suspected of pine re-nematode
disease Figure 3. Collected objects can effectively collect a wide range of aerial photographs and satellite
images. In the classification phase, you create a training set by labeling images so that you can classify areas
based on the collected data set. The criteria to classify the area is a label classified based on the RGB value of
 ISSN: 2088-8708
Int J Elec & Comp Eng, Vol. 11, No. 3, June 2021 : 2666 - 2673
2668
the image. Since the classification targets of this system are infection trees, suspicions, and normal trees, they
are defined based on the classification targets. In the correction step, the noise is removed from the image and
the focus is applied to the infected tree to improve the overall accuracy. The second step is to learn the data
set and the training set, and to derive the results. It is divided into modeling, segmentation, and output phases.
In the modeling stage, models based on SegNet can be selected and applied. In the segmentation step, the
image is segmented based on the learned results. The output step derives the visualized image based on the
divided image in the dividing step and returns the value of the divided area. It also returns the accuracy of the
segmented area and provides it to the user.
Figure 2. System diagram
Figure 3. System flow chart
3.3. Image classification area definition
Deep learning model is a model that maximizes the effect when built on a large amount of data.
Therefore, it is important to secure a large amount of data in semantic partitioning. In addition, since
semantic segmentation configures a data set by applying a label according to a classification target, an image
to be classified must be labeled by category.
Image labeling was done using MATLAB's ImageLabeler. After loading the image, specify an area
and a line to assign a label area to the image. Therefore, the classification targets were labeled as infectious,
suspicious and normal. In addition, infected trees, suspicious trees, and normal trees were labeled and labeled
as orange, blue, and yellow, respectively. This designates the labeled data set as the training set and the
partition used for training.
3.4. Model selection and training
Semantic partitioning is based on the encoder-decoder architecture. Each encoder has a
downsampling decoder and upsampling the structure. Among the models with the above structure,
representative models with high accuracy are FCN, Unet and DeepLabV3, which are similar to the existing
SegNet, but with high accuracy in a specific image. Therefore, in this paper, we designed to evaluate the
accuracy using the test image set trained and prepared based on the training data set prepared for all the
above models to compare the accuracy in a specific image [15-17].
Int J Elec & Comp Eng ISSN: 2088-8708 
Pine wilt disease spreading prevention system using semantic segmentation (Chulhyun Hwang)
2669
3.5. Image region segmentation
Image segmentation is the segmentation of test data using trained weights after model selection.
Classification areas are defined in a separate CSV file to provide visualization effects to users. Figure 4
shows the image inside the CSV file to define the RGB color.
Figure 4. The CSV file to define the RGB color
Infected, suspected infection, and uninfected are defined to be infected, suspicious, and normal,
respectively, and marked in red, yellow, and green. The other Sky and Sod mean sky and earth, respectively.
Void means an unspecified area and is marked in black.
3.6. FCN design
The biggest feature of FCN is the lack of a fully connected layer. Change the fully connected layer
to 1x1 convolution layer in the existing CNN structure. The reason for deleting the fully connected layer is to
obtain location information. The key to semantic segmentation is to get location information because the
location information disappears through the fully connected layer. Therefore, the last layer was replaced with
a 1x1 convolution layer in the VGG16-based model. We then upsampled using transposed convolution and
created a map the same size as the input. Also, in the upsampling process, feature maps of lower layers were
added to extract features by combining them with feature maps above. After that, all the features were
recombined through the skip connection to derive the results [9].
3.7. DeepLabV3 design
DeepLabV3 is based on ResNet learned from ImageNet. ResNet feature extractors can be used to
extract features of varying sizes. At the core of DeepLabV3 is the Atruos convolution layer. You can drill holes
in a typical convolution layer to capture larger features with the same amount of computation. Therefore, in
this paper, we designed the Atrous convolution layers in parallel to capture more features [18-22].
3.8. U-net design
U-Net is a U-shaped network with repeated contracting layers and upscaling. We can see that U-Net
divides the image into several images while gradually reducing the size of the image during the contract
process. Thereafter, the upsampling process is performed to obtain the divided image. In this paper, U-Net is
designed by adopting the above structure [23-25].
4. SYSTEM IMPLEMENTATION
This chapter deals with the implementation of a pine nematode disease prevention system. In
addition, we verify the effectiveness of the proposed system through consideration. The system building
environment is shown in Table 1. This paper builds Anaconda 4.5.11 environment in Window10 Pro
environment to build deep learning environment. GPU acceleration is used to improve training speed, and
CUDA version is 10.0. Also, the implementation of the system uses Tenserflow 1.14.0 based on Python, and
the library dependencies are OpenCV and numpy. The development tool used PyCharm and MATLAB's
Image Labeler to label the training set.
Table 1. System development environment
Type Composition
Desktop Specs
CPU : Intel Core i7-4670 @ 3.40 GHz, RAM : 16 GB
GPU : Geforce GTX1060ti 4 GB, OS : Window 10 Pro
Environmen Anaconda 4.5.11, Python3, CUDA 10.0
Library Tenserflow 1.14.0, OpenCV, numpy
Development Tools PyCharm, MATLAB Image Labeler
 ISSN: 2088-8708
Int J Elec & Comp Eng, Vol. 11, No. 3, June 2021 : 2666 - 2673
2670
4.1. System implementation
The system trains the semantic segmentation network model based on the labeled data set and
returns information such as suspicion, normal tree, and infected tree of the test set using the weight. Provides
the user with a visualized image and returns the area of the segmented area. The internal directory is divided
into a data set directory and a model directory. When you run train.py and select a model, it trains based on
the training set stored in the '../dataSet/train_Label' directory. test.py performs semantic partitioning of the
data sets in the '../dataSet/test' directory based on the training weights trained in the above process. The result
is stored in test_Label. To apply semantic splitting, you need a labeled training set. In this paper, a labeled
image was created based on suspicious, normal and infected trees, and training weights were generated by
applying semantic segmentation network models.
Figure 5 shows the data set stored in the test directory. Once all the training weights have been
generated, run test.py. After selecting the model and importing the above data set, the semantic segmentation
proceeds and the network model is evaluated together. Figure 6 shows the visualized image of the semantic
segmentation being completed. Green is an uninfected normal tree, and red is an infected pine tree. Yellow is
the suspicious tree and black is the unspecified area. Figure 7 shows the result screen showing the share of
each classification model in the total area. According to the area classification, 27.38% of infected trees,
35.52% of suspicious trees, 25.14% of normal trees, 3.32% of voids, and 8.64% of land. Pixel classification
accuracy is about 87%.
Figure 5. Test data set
Figure 6. Semantic segmentation results
Figure 7. Semantic segmentation area results
Int J Elec & Comp Eng ISSN: 2088-8708 
Pine wilt disease spreading prevention system using semantic segmentation (Chulhyun Hwang)
2671
4.2. Discussion
Most suspected pine re-nematode suspicion detection systems used supervised classification
techniques to directly assign classification targets or to extract and detect RGB values of suspicious trees.
However, the above method is an object recognition model that learns a specific part of the image. However,
the accuracy of the object recognition model is observed, but the position and area of the object cannot be
returned due to the characteristics of the object recognition model. Therefore, this study proposes a system
that improves accuracy and returns the position and area of an object by using semantic segmentation, an
object detection model, for suspicious detection. This section verifies the efficiency by comparing the
classification accuracy of the existing system with that of the proposed system. Also, we analyze the best
model by comparing the accuracy of semantic segmentation models applied to the proposed system.
The experimental method trains each model using a training set, extracts training weights, and
measures pixel classification accuracy and area accuracy using a test set. Table 2 is a learning set containing
the environment in which the experiment will be conducted. The experimental environment used for the
experiment is shown in Table 2. Using the models of FCN, DeepLabV3, SetNet, and U-Net, Batch Size is set
to 50 and Epoch is 50. The number of training sets to be used is three. The semantic segmentation is
performed by applying the trained model weights using the above test set.
Figure 8 is a graphical representation of the training data for each model. As a result, FCN, U-Net,
DeepLabV3 and SegNet have 87%, 88%, 91% and 85% classification accuracy, respectively. When the
experiment was conducted with three test sets, the accuracy is shown in Table 3. Test set 1 and test set 2,
which are relatively easy to classify, have high accuracy with average accuracy of 87.75% and 91.25%, but
81.75% for test set that is difficult to identify, such as test set 3. In addition, DeepLabV3 was selected as the
model with the highest accuracy with an average accuracy of 90%.
Table 2. Learning environment
Model Environment
FCN, U-Net, DeepLabV3, SegNet
Batch Size=50, Epoch=50
DataSet Count=3, TestSet Count=3
Figure 8. Model-specific epoch and classification accuracy
Table 3. Pixel classification accuracy by model
Model TestSet1 Accuracy TestSet1 Accuracy TestSet1 Accuracy
FCN 0.87 0.90 0.81
DeepLabV3 0.91 0.93 0.85
SegNet 0.85 0.89 0.77
U-Net 0.88 0.93 0.84
 ISSN: 2088-8708
Int J Elec & Comp Eng, Vol. 11, No. 3, June 2021 : 2666 - 2673
2672
5. CONCLUSION
Pine nematode disease is a forest pest epidemic with a 100% mortality rate. Therefore, early
detection is very important, and it is important to harvest the infected tree as quickly as possible. The Forest
Service operates a monitoring center to take control of the complaints. However, due to the nature of the
forest area, it is very difficult for humans to survey all areas. Recently, a system that combines machine
learning and drones to effectively detect a wide range has been studied. Due to the nature of pine nematode
disease, the location and area detection of suspicion is important. However, the object recognition model,
which is one of the weak points of the existing system, is effective in recognizing objects but cannot return
the position and area of the object.
To solve this problem, this paper proposes a prevention system to prevent the spread of pine
nematode disease using aerial photographs and satellite images. In this paper, semantic segmentation, an
object detection model, is used to classify infected trees, suspicious trees, and normal trees, visualize them,
and return the area and accuracy of the separated areas to the user. In addition, the average classification
accuracy of each model was about 86.9%, and the maximum classification accuracy was about 90%. Through
this, we could verify that the object detection model has similar classification accuracy without falling
classification accuracy compared with the existing object recognition model. Therefore, it was concluded that
the object recognition model, such as the related research in Section 2.3, is fast and effective for simple
object recognition, but that the object detection model is suitable for aeronautics and satellite images, which
have a lot of information.
ACKNOWLEDGEMENTS
This work was supported by the research grant of PaiChar University in 2021.
REFERENCES
[1] Lim, “Forest in Crisis by Pine Wilt Nematode,” Forest and Culture, vol. 26, no. 7, pp. 4-5, 2017.
[2] S. Khan and K. V. Kirubanand, “Comparing machine learning and ensemble learning in the field of football,”
International Journal of Electrical and Computer Engineering (IJECE), vol. 9, no. 5, pp. 4321-4325, 2019.
[3] “Korea Forest Service,” Korea Forest Service Home Page, 2019. [Online]. Available:
http://www.forest.go.kr/newkfsweb/html/HtmlPage.do?pg=/conser/conser_020103.html&mn=KFS_02_02_01_03.
[4] J. K. Rhee, "Prediction for Periodontal Disease using Gene Expression Profile Data based on Machine Learning,"
Journal of the Korea Institute of Information and Communication Engineering, vol. 23, no. 8, pp. 903-908, 2019.
[5] “MathWorks,” MathWorks Homepage, 2019. [Online]. Available: https://kr.mathworks.com/solutions/image-
video-processing/object-recognition.html.
[6] I. J. Choi, J. G. Seo, and H. Y. Park, “Object Recognition in Low Resolution Images using a Convolutional Neural
Network and an Image Enhancement Network,” The Journal of Korean Institute of Information Scientists and
Engineering, vol. 45, no. 8, pp. 831-837, 2018.
[7] G. S. Moon and Y. Kim, “A Combined Model of Outline Feature Map and CNN for Detection of People at the
Beach,” The Journal of Korean Institute of Information Scientists and Engineers, vol. 46, no. 1, pp. 31-38, 2019.
[8] S. K. Lee, S. J. Park, G. M. Baek, H. B. Kim, and G. W. Lee, “Detection of Damaged Pine Tree by the Pine Wilt
Disease Using UAV Image,” The Journal of Korean Society of Remote Sensing, vol. 35, no. 3, pp. 359-373, 2019.
[9] P. H. Huynh, V. H. Nguyen, T. N. Do, “Enhancing Gene Expression Classification of Support Vector Machines
with Generative Adversarial Networks," Journal of Information and Communication Convergence Engineering,
vol. 17, no. 1, pp. 14-20, 2019.
[10] I. S. Cho, S. J. Kwon, and J. Y. Yoon, “Occurrence of Peach Latent Mosaic Viroid Inducing Peach Calico Disease
of Peach Treess,” Horticulture abstracts, pp. 177-178, 2017.
[11] G. Y. Heo, "ROI Extraction for Automatic Placard Recognition," Journal of the Korea Institute of Information and
Communication Engineering, vol. 23, no. 4, pp. 374-380, 2019.
[12] H. D. Lee, “Identification of Damaged Trees by Pine Wilt Diseases Using Drone Images and GIS,” Dissertation,
Kyungil University, 2017.
[13] Lafferty, J, McCallum, A. and Pereira, F. C., “Conditional random fields: Probabilistic models for segmenting and
labeling sequence data,” ICML '01: Proceedings of the Eighteenth International Conference on Machine Learning,
2001, pp. 282-289.
[14] H. J. Shin and C. H. Oh, "Machine Learning based on Approach for Classification of Abnormal Data in Shop-
floor," Journal of the Korea Institute of Information and Communication Engineering, vol. 21, no. 11,
pp. 2037-2042, 2017.
[15] Suykens, J. A, and Vandewalle, J., “Least squares support vector machine classifiers,” Neural processing letters,
vol. 9, no. 3, pp. 293-300, 1999.
[16] X. T. Yang, J. S. Lee, and H. K. Jung, “Fault Diagnosis Management Model using Machine Learning,” Journal of
Information and Communication Convergence Engineering, vol. 17, no. 2, pp. 128-134, 2019.
Int J Elec & Comp Eng ISSN: 2088-8708 
Pine wilt disease spreading prevention system using semantic segmentation (Chulhyun Hwang)
2673
[17] S. R. Saluti, “A survey of big data and machine learning,” International Journal of Electrical and Computer
Engineering (IJECE), vol. 10, no. 1, pp. 575-580, 2020.
[18] L. C. Chen, G. Papandreou. G, I. Kokkinos, K. Murphy, and A. L. Yuille, “Deeplab: Semantic image segmentation
with deep convolutional nets, atrous convolution, and fully connected CRFS,” IEEE transactions on pattern
analysis and machine intelligence, vol. 40, no. 4, pp. 834-848, 2017.
[19] J. H. Yim and K. A. Sohn, “Investigating the Feature Collection for Semantic Segmentation via Single Skip
connection,” The Korean Institute of Information Scientists and Engineers, vol. 44, no. 12, pp. 1282-1289, 2017.
[20] J. H. Yim and K. A. Sohn, “Efficient Inference of Image Objects using Semantic Segmentation,” Journal of
Broadcast Engineering, vol. 24, no. 1, pp. 67-76, 2019.
[21] G. Wang and S. Y. Shin, “An Improved Text Classification Method for Sentiment Classification,” Journal of
Information and Communication Convergence Engineering, vol. 17, no. 1, pp. 41-48, 2019.
[22] B. Hao and D. S. Kang, “Research on Image Semantic Segmentation Based on FCN-VGG and Pyramid Pooling
Module,” The Journal of Korean Institute of Information Technology, vol. 16, no. 7, pp. 1-8, 2018.
[23] H. K. Kim, S. O. Lee, and H. K. Jung, “Human activity recognition by using convolutional neural network,”
International Journal of Electrical and Computer Engineering (IJECE), vol. 9, no. 6, pp. 5270-5276, 2019.
[24] S. Aich, S. Chakraborty, and H. C. Kim, “Convolutional neural network-based model for web-based text
classification,” International Journal of Electrical and Computer Engineering (IJECE), vol. 9, no. 6,
pp. 5185-5191, 2019.
[25] O. Ronneberger, P. Fischer, and T. Brox, “U-net: Convolutional networks for biomedical image segmentation,”
MICCAI 2015: Medical Image Computing and Computer-Assisted Intervention-MICCAI 2015, vol. 9351,
pp. 234-241, 2015.
BIOGRAPHIES OF AUTHORS
Chulhyun Hwang received the M. S. degree in 1995 and Ph. D. degree in 2017 from
Department of Computer Engineering of Pai Chai University, Korea. From 1991 to 2000. He
worked for Korea Navy as a Computer Officer. Since 2019, he has worked in the Department of
Smart IT Software at Kyung Bok University, where he works as a professor. His current research
interests include deep learning, machine learning, IoT, big data and artificial intelligence.
Jaean Jeong received the B. S. degree in 1992 from the Department of Computer Science of
Jeonbuk National University, and received the M.S degree in 2020 from the Department of
Computer Engineering of Paichai University, Korea. Since 1993, he has working in the Korea
water resources cooperation (Kwater), where he now works as a general director of Hwaseong
Office. His current research interests include big data analysis platform, open data platform, data
processing and machine learning.
Hoekyung Jung received the M. S. degree in 1987 and Ph. D. degree in 1993 from the
Department of Computer Engineering of Kwangwoon University, Korea. From 1994 to 1995, he
worked for ETRI as a researcher. Since 1994, he has worked in the Department of Computer
Engineering at Paichai University, where he now works as a professor. His current research
interests include multimedia document architecture modeling, information processing, embedded
system, machine learning, big data, and IoT.

More Related Content

What's hot

11.artificial neural network based cancer cell classification
11.artificial neural network based cancer cell classification11.artificial neural network based cancer cell classification
11.artificial neural network based cancer cell classification
Alexander Decker
 
Santoso 2019 j._phys.__conf._ser._1175_012057
Santoso 2019 j._phys.__conf._ser._1175_012057Santoso 2019 j._phys.__conf._ser._1175_012057
Santoso 2019 j._phys.__conf._ser._1175_012057
Budi Santo
 
MRI Brain Image Segmentation using Fuzzy Clustering Algorithms
MRI Brain Image Segmentation using Fuzzy Clustering AlgorithmsMRI Brain Image Segmentation using Fuzzy Clustering Algorithms
MRI Brain Image Segmentation using Fuzzy Clustering Algorithms
ijtsrd
 

What's hot (20)

Crop Leaf Disease Diagnosis using Convolutional Neural Network
Crop Leaf Disease Diagnosis using Convolutional Neural NetworkCrop Leaf Disease Diagnosis using Convolutional Neural Network
Crop Leaf Disease Diagnosis using Convolutional Neural Network
 
Classification of pneumonia from X-ray images using siamese convolutional net...
Classification of pneumonia from X-ray images using siamese convolutional net...Classification of pneumonia from X-ray images using siamese convolutional net...
Classification of pneumonia from X-ray images using siamese convolutional net...
 
La2418611866
La2418611866La2418611866
La2418611866
 
IRJET- Sugarcane Leaf Disease Detection
IRJET- Sugarcane Leaf Disease DetectionIRJET- Sugarcane Leaf Disease Detection
IRJET- Sugarcane Leaf Disease Detection
 
Pest Control in Agricultural Plantations Using Image Processing
Pest Control in Agricultural Plantations Using Image ProcessingPest Control in Agricultural Plantations Using Image Processing
Pest Control in Agricultural Plantations Using Image Processing
 
11.artificial neural network based cancer cell classification
11.artificial neural network based cancer cell classification11.artificial neural network based cancer cell classification
11.artificial neural network based cancer cell classification
 
Santoso 2019 j._phys.__conf._ser._1175_012057
Santoso 2019 j._phys.__conf._ser._1175_012057Santoso 2019 j._phys.__conf._ser._1175_012057
Santoso 2019 j._phys.__conf._ser._1175_012057
 
MRI Brain Image Segmentation using Fuzzy Clustering Algorithms
MRI Brain Image Segmentation using Fuzzy Clustering AlgorithmsMRI Brain Image Segmentation using Fuzzy Clustering Algorithms
MRI Brain Image Segmentation using Fuzzy Clustering Algorithms
 
Ca4201508513
Ca4201508513Ca4201508513
Ca4201508513
 
A Study of Image Processing in Agriculture
A Study of Image Processing in AgricultureA Study of Image Processing in Agriculture
A Study of Image Processing in Agriculture
 
International Journal of Computational Engineering Research(IJCER)
 International Journal of Computational Engineering Research(IJCER)  International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)
 
K011138084
K011138084K011138084
K011138084
 
Breast legion
Breast legionBreast legion
Breast legion
 
IRJET - Disease Detection in Plant using Machine Learning
IRJET -  	  Disease Detection in Plant using Machine LearningIRJET -  	  Disease Detection in Plant using Machine Learning
IRJET - Disease Detection in Plant using Machine Learning
 
IRJET- An Efficient Brain Tumor Detection System using Automatic Segmenta...
IRJET-  	  An Efficient Brain Tumor Detection System using Automatic Segmenta...IRJET-  	  An Efficient Brain Tumor Detection System using Automatic Segmenta...
IRJET- An Efficient Brain Tumor Detection System using Automatic Segmenta...
 
F1803042939
F1803042939F1803042939
F1803042939
 
G011134454
G011134454G011134454
G011134454
 
The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)
 
IRJET - Identification of Malarial Parasites using Deep Learning
IRJET -  	  Identification of Malarial Parasites using Deep LearningIRJET -  	  Identification of Malarial Parasites using Deep Learning
IRJET - Identification of Malarial Parasites using Deep Learning
 
A42050103
A42050103A42050103
A42050103
 

Similar to Pine wilt disease spreading prevention system using semantic segmentation

7743-Article Text-13981-1-10-20210530 (1).pdf
7743-Article Text-13981-1-10-20210530 (1).pdf7743-Article Text-13981-1-10-20210530 (1).pdf
7743-Article Text-13981-1-10-20210530 (1).pdf
NehaBhati30
 
Artificial neural network based cancer cell classification
Artificial neural network based cancer cell classificationArtificial neural network based cancer cell classification
Artificial neural network based cancer cell classification
Alexander Decker
 

Similar to Pine wilt disease spreading prevention system using semantic segmentation (20)

Corn plant disease classification based on leaf using residual networks-9 arc...
Corn plant disease classification based on leaf using residual networks-9 arc...Corn plant disease classification based on leaf using residual networks-9 arc...
Corn plant disease classification based on leaf using residual networks-9 arc...
 
IRJET - Plant Leaf Disease Diagnosis from Color Imagery using Co-Occurrence M...
IRJET - Plant Leaf Disease Diagnosis from Color Imagery using Co-Occurrence M...IRJET - Plant Leaf Disease Diagnosis from Color Imagery using Co-Occurrence M...
IRJET - Plant Leaf Disease Diagnosis from Color Imagery using Co-Occurrence M...
 
20615-38907-3-PB.pdf
20615-38907-3-PB.pdf20615-38907-3-PB.pdf
20615-38907-3-PB.pdf
 
7743-Article Text-13981-1-10-20210530 (1).pdf
7743-Article Text-13981-1-10-20210530 (1).pdf7743-Article Text-13981-1-10-20210530 (1).pdf
7743-Article Text-13981-1-10-20210530 (1).pdf
 
IJSRED-V2I2P60
IJSRED-V2I2P60IJSRED-V2I2P60
IJSRED-V2I2P60
 
Detection of urban tree canopy from very high resolution imagery using an ob...
Detection of urban tree canopy from very high resolution  imagery using an ob...Detection of urban tree canopy from very high resolution  imagery using an ob...
Detection of urban tree canopy from very high resolution imagery using an ob...
 
Plant Diseases Prediction Using Image Processing
Plant Diseases Prediction Using Image ProcessingPlant Diseases Prediction Using Image Processing
Plant Diseases Prediction Using Image Processing
 
T2_219a.pdf
T2_219a.pdfT2_219a.pdf
T2_219a.pdf
 
EARLY BLIGHT AND LATE BLIGHT DISEASE DETECTION ON POTATO LEAVES USING CONVOLU...
EARLY BLIGHT AND LATE BLIGHT DISEASE DETECTION ON POTATO LEAVES USING CONVOLU...EARLY BLIGHT AND LATE BLIGHT DISEASE DETECTION ON POTATO LEAVES USING CONVOLU...
EARLY BLIGHT AND LATE BLIGHT DISEASE DETECTION ON POTATO LEAVES USING CONVOLU...
 
IRJET- Detection and Classification of Leaf Diseases
IRJET-  	  Detection and Classification of Leaf DiseasesIRJET-  	  Detection and Classification of Leaf Diseases
IRJET- Detection and Classification of Leaf Diseases
 
Foliage Measurement Using Image Processing Techniques
Foliage Measurement Using Image Processing TechniquesFoliage Measurement Using Image Processing Techniques
Foliage Measurement Using Image Processing Techniques
 
Artificial neural network based cancer cell classification
Artificial neural network based cancer cell classificationArtificial neural network based cancer cell classification
Artificial neural network based cancer cell classification
 
Using deep learning algorithms to classify crop diseases
Using deep learning algorithms to classify crop diseasesUsing deep learning algorithms to classify crop diseases
Using deep learning algorithms to classify crop diseases
 
Plant Monitoring using Image Processing, Raspberry PI & IOT
 	  Plant Monitoring using Image Processing, Raspberry PI & IOT 	  Plant Monitoring using Image Processing, Raspberry PI & IOT
Plant Monitoring using Image Processing, Raspberry PI & IOT
 
Automatic detection of rust disease of Lentil by machine learning system usin...
Automatic detection of rust disease of Lentil by machine learning system usin...Automatic detection of rust disease of Lentil by machine learning system usin...
Automatic detection of rust disease of Lentil by machine learning system usin...
 
Plant Disease Detection using Convolution Neural Network (CNN)
Plant Disease Detection using Convolution Neural Network (CNN)Plant Disease Detection using Convolution Neural Network (CNN)
Plant Disease Detection using Convolution Neural Network (CNN)
 
PADDY CROP DISEASE DETECTION USING SVM AND CNN ALGORITHM
PADDY CROP DISEASE DETECTION USING SVM AND CNN ALGORITHMPADDY CROP DISEASE DETECTION USING SVM AND CNN ALGORITHM
PADDY CROP DISEASE DETECTION USING SVM AND CNN ALGORITHM
 
A Crop Pests Image Classification Algorithm Based on Deep Convolutional Neura...
A Crop Pests Image Classification Algorithm Based on Deep Convolutional Neura...A Crop Pests Image Classification Algorithm Based on Deep Convolutional Neura...
A Crop Pests Image Classification Algorithm Based on Deep Convolutional Neura...
 
IRJET- Detection of Plant Leaf Diseases using Image Processing and Soft-C...
IRJET-  	  Detection of Plant Leaf Diseases using Image Processing and Soft-C...IRJET-  	  Detection of Plant Leaf Diseases using Image Processing and Soft-C...
IRJET- Detection of Plant Leaf Diseases using Image Processing and Soft-C...
 
Weeds detection efficiency through different convolutional neural networks te...
Weeds detection efficiency through different convolutional neural networks te...Weeds detection efficiency through different convolutional neural networks te...
Weeds detection efficiency through different convolutional neural networks te...
 

More from IJECEIAES

Remote field-programmable gate array laboratory for signal acquisition and de...
Remote field-programmable gate array laboratory for signal acquisition and de...Remote field-programmable gate array laboratory for signal acquisition and de...
Remote field-programmable gate array laboratory for signal acquisition and de...
IJECEIAES
 
An efficient security framework for intrusion detection and prevention in int...
An efficient security framework for intrusion detection and prevention in int...An efficient security framework for intrusion detection and prevention in int...
An efficient security framework for intrusion detection and prevention in int...
IJECEIAES
 
A review on internet of things-based stingless bee's honey production with im...
A review on internet of things-based stingless bee's honey production with im...A review on internet of things-based stingless bee's honey production with im...
A review on internet of things-based stingless bee's honey production with im...
IJECEIAES
 
Seizure stage detection of epileptic seizure using convolutional neural networks
Seizure stage detection of epileptic seizure using convolutional neural networksSeizure stage detection of epileptic seizure using convolutional neural networks
Seizure stage detection of epileptic seizure using convolutional neural networks
IJECEIAES
 
Hyperspectral object classification using hybrid spectral-spatial fusion and ...
Hyperspectral object classification using hybrid spectral-spatial fusion and ...Hyperspectral object classification using hybrid spectral-spatial fusion and ...
Hyperspectral object classification using hybrid spectral-spatial fusion and ...
IJECEIAES
 
SADCNN-ORBM: a hybrid deep learning model based citrus disease detection and ...
SADCNN-ORBM: a hybrid deep learning model based citrus disease detection and ...SADCNN-ORBM: a hybrid deep learning model based citrus disease detection and ...
SADCNN-ORBM: a hybrid deep learning model based citrus disease detection and ...
IJECEIAES
 
Performance enhancement of machine learning algorithm for breast cancer diagn...
Performance enhancement of machine learning algorithm for breast cancer diagn...Performance enhancement of machine learning algorithm for breast cancer diagn...
Performance enhancement of machine learning algorithm for breast cancer diagn...
IJECEIAES
 
A deep learning framework for accurate diagnosis of colorectal cancer using h...
A deep learning framework for accurate diagnosis of colorectal cancer using h...A deep learning framework for accurate diagnosis of colorectal cancer using h...
A deep learning framework for accurate diagnosis of colorectal cancer using h...
IJECEIAES
 
Predicting churn with filter-based techniques and deep learning
Predicting churn with filter-based techniques and deep learningPredicting churn with filter-based techniques and deep learning
Predicting churn with filter-based techniques and deep learning
IJECEIAES
 
Automatic customer review summarization using deep learningbased hybrid senti...
Automatic customer review summarization using deep learningbased hybrid senti...Automatic customer review summarization using deep learningbased hybrid senti...
Automatic customer review summarization using deep learningbased hybrid senti...
IJECEIAES
 

More from IJECEIAES (20)

Remote field-programmable gate array laboratory for signal acquisition and de...
Remote field-programmable gate array laboratory for signal acquisition and de...Remote field-programmable gate array laboratory for signal acquisition and de...
Remote field-programmable gate array laboratory for signal acquisition and de...
 
Detecting and resolving feature envy through automated machine learning and m...
Detecting and resolving feature envy through automated machine learning and m...Detecting and resolving feature envy through automated machine learning and m...
Detecting and resolving feature envy through automated machine learning and m...
 
Smart monitoring technique for solar cell systems using internet of things ba...
Smart monitoring technique for solar cell systems using internet of things ba...Smart monitoring technique for solar cell systems using internet of things ba...
Smart monitoring technique for solar cell systems using internet of things ba...
 
An efficient security framework for intrusion detection and prevention in int...
An efficient security framework for intrusion detection and prevention in int...An efficient security framework for intrusion detection and prevention in int...
An efficient security framework for intrusion detection and prevention in int...
 
Developing a smart system for infant incubators using the internet of things ...
Developing a smart system for infant incubators using the internet of things ...Developing a smart system for infant incubators using the internet of things ...
Developing a smart system for infant incubators using the internet of things ...
 
A review on internet of things-based stingless bee's honey production with im...
A review on internet of things-based stingless bee's honey production with im...A review on internet of things-based stingless bee's honey production with im...
A review on internet of things-based stingless bee's honey production with im...
 
A trust based secure access control using authentication mechanism for intero...
A trust based secure access control using authentication mechanism for intero...A trust based secure access control using authentication mechanism for intero...
A trust based secure access control using authentication mechanism for intero...
 
Fuzzy linear programming with the intuitionistic polygonal fuzzy numbers
Fuzzy linear programming with the intuitionistic polygonal fuzzy numbersFuzzy linear programming with the intuitionistic polygonal fuzzy numbers
Fuzzy linear programming with the intuitionistic polygonal fuzzy numbers
 
The performance of artificial intelligence in prostate magnetic resonance im...
The performance of artificial intelligence in prostate  magnetic resonance im...The performance of artificial intelligence in prostate  magnetic resonance im...
The performance of artificial intelligence in prostate magnetic resonance im...
 
Seizure stage detection of epileptic seizure using convolutional neural networks
Seizure stage detection of epileptic seizure using convolutional neural networksSeizure stage detection of epileptic seizure using convolutional neural networks
Seizure stage detection of epileptic seizure using convolutional neural networks
 
Analysis of driving style using self-organizing maps to analyze driver behavior
Analysis of driving style using self-organizing maps to analyze driver behaviorAnalysis of driving style using self-organizing maps to analyze driver behavior
Analysis of driving style using self-organizing maps to analyze driver behavior
 
Hyperspectral object classification using hybrid spectral-spatial fusion and ...
Hyperspectral object classification using hybrid spectral-spatial fusion and ...Hyperspectral object classification using hybrid spectral-spatial fusion and ...
Hyperspectral object classification using hybrid spectral-spatial fusion and ...
 
Fuzzy logic method-based stress detector with blood pressure and body tempera...
Fuzzy logic method-based stress detector with blood pressure and body tempera...Fuzzy logic method-based stress detector with blood pressure and body tempera...
Fuzzy logic method-based stress detector with blood pressure and body tempera...
 
SADCNN-ORBM: a hybrid deep learning model based citrus disease detection and ...
SADCNN-ORBM: a hybrid deep learning model based citrus disease detection and ...SADCNN-ORBM: a hybrid deep learning model based citrus disease detection and ...
SADCNN-ORBM: a hybrid deep learning model based citrus disease detection and ...
 
Performance enhancement of machine learning algorithm for breast cancer diagn...
Performance enhancement of machine learning algorithm for breast cancer diagn...Performance enhancement of machine learning algorithm for breast cancer diagn...
Performance enhancement of machine learning algorithm for breast cancer diagn...
 
A deep learning framework for accurate diagnosis of colorectal cancer using h...
A deep learning framework for accurate diagnosis of colorectal cancer using h...A deep learning framework for accurate diagnosis of colorectal cancer using h...
A deep learning framework for accurate diagnosis of colorectal cancer using h...
 
Swarm flip-crossover algorithm: a new swarm-based metaheuristic enriched with...
Swarm flip-crossover algorithm: a new swarm-based metaheuristic enriched with...Swarm flip-crossover algorithm: a new swarm-based metaheuristic enriched with...
Swarm flip-crossover algorithm: a new swarm-based metaheuristic enriched with...
 
Predicting churn with filter-based techniques and deep learning
Predicting churn with filter-based techniques and deep learningPredicting churn with filter-based techniques and deep learning
Predicting churn with filter-based techniques and deep learning
 
Taxi-out time prediction at Mohammed V Casablanca Airport
Taxi-out time prediction at Mohammed V Casablanca AirportTaxi-out time prediction at Mohammed V Casablanca Airport
Taxi-out time prediction at Mohammed V Casablanca Airport
 
Automatic customer review summarization using deep learningbased hybrid senti...
Automatic customer review summarization using deep learningbased hybrid senti...Automatic customer review summarization using deep learningbased hybrid senti...
Automatic customer review summarization using deep learningbased hybrid senti...
 

Recently uploaded

Integrated Test Rig For HTFE-25 - Neometrix
Integrated Test Rig For HTFE-25 - NeometrixIntegrated Test Rig For HTFE-25 - Neometrix
Integrated Test Rig For HTFE-25 - Neometrix
Neometrix_Engineering_Pvt_Ltd
 
Call Girls in South Ex (delhi) call me [🔝9953056974🔝] escort service 24X7
Call Girls in South Ex (delhi) call me [🔝9953056974🔝] escort service 24X7Call Girls in South Ex (delhi) call me [🔝9953056974🔝] escort service 24X7
Call Girls in South Ex (delhi) call me [🔝9953056974🔝] escort service 24X7
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
"Lesotho Leaps Forward: A Chronicle of Transformative Developments"
"Lesotho Leaps Forward: A Chronicle of Transformative Developments""Lesotho Leaps Forward: A Chronicle of Transformative Developments"
"Lesotho Leaps Forward: A Chronicle of Transformative Developments"
mphochane1998
 
Digital Communication Essentials: DPCM, DM, and ADM .pptx
Digital Communication Essentials: DPCM, DM, and ADM .pptxDigital Communication Essentials: DPCM, DM, and ADM .pptx
Digital Communication Essentials: DPCM, DM, and ADM .pptx
pritamlangde
 
Standard vs Custom Battery Packs - Decoding the Power Play
Standard vs Custom Battery Packs - Decoding the Power PlayStandard vs Custom Battery Packs - Decoding the Power Play
Standard vs Custom Battery Packs - Decoding the Power Play
Epec Engineered Technologies
 

Recently uploaded (20)

Integrated Test Rig For HTFE-25 - Neometrix
Integrated Test Rig For HTFE-25 - NeometrixIntegrated Test Rig For HTFE-25 - Neometrix
Integrated Test Rig For HTFE-25 - Neometrix
 
Thermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.pptThermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.ppt
 
Employee leave management system project.
Employee leave management system project.Employee leave management system project.
Employee leave management system project.
 
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
 
Call Girls in South Ex (delhi) call me [🔝9953056974🔝] escort service 24X7
Call Girls in South Ex (delhi) call me [🔝9953056974🔝] escort service 24X7Call Girls in South Ex (delhi) call me [🔝9953056974🔝] escort service 24X7
Call Girls in South Ex (delhi) call me [🔝9953056974🔝] escort service 24X7
 
Learn the concepts of Thermodynamics on Magic Marks
Learn the concepts of Thermodynamics on Magic MarksLearn the concepts of Thermodynamics on Magic Marks
Learn the concepts of Thermodynamics on Magic Marks
 
Generative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPTGenerative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPT
 
Computer Networks Basics of Network Devices
Computer Networks  Basics of Network DevicesComputer Networks  Basics of Network Devices
Computer Networks Basics of Network Devices
 
Work-Permit-Receiver-in-Saudi-Aramco.pptx
Work-Permit-Receiver-in-Saudi-Aramco.pptxWork-Permit-Receiver-in-Saudi-Aramco.pptx
Work-Permit-Receiver-in-Saudi-Aramco.pptx
 
"Lesotho Leaps Forward: A Chronicle of Transformative Developments"
"Lesotho Leaps Forward: A Chronicle of Transformative Developments""Lesotho Leaps Forward: A Chronicle of Transformative Developments"
"Lesotho Leaps Forward: A Chronicle of Transformative Developments"
 
School management system project Report.pdf
School management system project Report.pdfSchool management system project Report.pdf
School management system project Report.pdf
 
Digital Communication Essentials: DPCM, DM, and ADM .pptx
Digital Communication Essentials: DPCM, DM, and ADM .pptxDigital Communication Essentials: DPCM, DM, and ADM .pptx
Digital Communication Essentials: DPCM, DM, and ADM .pptx
 
HAND TOOLS USED AT ELECTRONICS WORK PRESENTED BY KOUSTAV SARKAR
HAND TOOLS USED AT ELECTRONICS WORK PRESENTED BY KOUSTAV SARKARHAND TOOLS USED AT ELECTRONICS WORK PRESENTED BY KOUSTAV SARKAR
HAND TOOLS USED AT ELECTRONICS WORK PRESENTED BY KOUSTAV SARKAR
 
DC MACHINE-Motoring and generation, Armature circuit equation
DC MACHINE-Motoring and generation, Armature circuit equationDC MACHINE-Motoring and generation, Armature circuit equation
DC MACHINE-Motoring and generation, Armature circuit equation
 
Unleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leapUnleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leap
 
Theory of Time 2024 (Universal Theory for Everything)
Theory of Time 2024 (Universal Theory for Everything)Theory of Time 2024 (Universal Theory for Everything)
Theory of Time 2024 (Universal Theory for Everything)
 
Bhubaneswar🌹Call Girls Bhubaneswar ❤Komal 9777949614 💟 Full Trusted CALL GIRL...
Bhubaneswar🌹Call Girls Bhubaneswar ❤Komal 9777949614 💟 Full Trusted CALL GIRL...Bhubaneswar🌹Call Girls Bhubaneswar ❤Komal 9777949614 💟 Full Trusted CALL GIRL...
Bhubaneswar🌹Call Girls Bhubaneswar ❤Komal 9777949614 💟 Full Trusted CALL GIRL...
 
Unit 4_Part 1 CSE2001 Exception Handling and Function Template and Class Temp...
Unit 4_Part 1 CSE2001 Exception Handling and Function Template and Class Temp...Unit 4_Part 1 CSE2001 Exception Handling and Function Template and Class Temp...
Unit 4_Part 1 CSE2001 Exception Handling and Function Template and Class Temp...
 
Standard vs Custom Battery Packs - Decoding the Power Play
Standard vs Custom Battery Packs - Decoding the Power PlayStandard vs Custom Battery Packs - Decoding the Power Play
Standard vs Custom Battery Packs - Decoding the Power Play
 
PE 459 LECTURE 2- natural gas basic concepts and properties
PE 459 LECTURE 2- natural gas basic concepts and propertiesPE 459 LECTURE 2- natural gas basic concepts and properties
PE 459 LECTURE 2- natural gas basic concepts and properties
 

Pine wilt disease spreading prevention system using semantic segmentation

  • 1. International Journal of Electrical and Computer Engineering (IJECE) Vol. 11, No. 3, June 2021, pp. 2666~2673 ISSN: 2088-8708, DOI: 10.11591/ijece.v11i3.pp2666-2673  2666 Journal homepage: http://ijece.iaescore.com Pine wilt disease spreading prevention system using semantic segmentation Chulhyun Hwang1 , Jaean Jeong2 , Hoekyung Jung3 1 Department of Smart IT Software, Kyungbok University, Namyangju, South Korea 2 K-Water, Hwaseongsi, Gyeonggido, South Korea 3 Department of Computer Engineering, PaiChai University, Daejeon, South Korea Article Info ABSTRACT Article history: Received Jul 31, 2020 Revised Sep 22, 2020 Accepted Oct 14, 2020 Pine wilt disease is a disease that affects ecosystems by rapidly killing trees in a short period of time due to the close interaction between three factors such as trees, mediates, and pathogens. There are no 100% mortality infectious forest pests. According to the Korea Forest Service survey, as of April 2019, the damage of pine re-nematode disease was about 490,000 dead trees in 117 cities, counties and wards across the country. It's a fatal condition. In order to prevent this problem, this paper proposes a system that detects dead trees, early infection trees, and the like, using deep learning- based semantic segmentation. In addition, drones were used to photograph the area of the forest, and a separate pixel segmentation label could be used to identify three levels of transmission information: Suspicion, attention, and confirmation. This allows the user to grasp information such as area, location, and alarm to prevent the spread of re-nematode disease. Keywords: Deep learning Drone Pine wilt disease Semantic segmentation This is an open access article under the CC BY-SA license. Corresponding Author: Hoekyung Jung Department of Computer Engineering Paichai University 155-40 Baejae-ro, Seogu, DaeJeon, South Korea Email: hkjung@pcu.ac.kr 1. INTRODUCTION Recently, with the development of artificial intelligence, research on deep learning technology using satellite photographs and aerial photographs has been actively conducted. In particular, the interest in the technology for recognizing objects by using images or photos has been very high. Object detection is one of the deepest technologies for deep learning that can identify multiple objects in one image and identify their location. It is also applied as a technology for detecting pine objects to solve pine re-nematode disease. However, the existing system is an object recognition-based system that learns whether a pine tree is infected by learning a specific part of the image, but it is effective in simply recognizing an object and determining a target. It is more efficient than the existing system. In addition, it showed high accuracy in relatively close pictures, but low accuracy in high-altitude aerial and satellite photographs [1-7]. In order to solve this problem, this paper proposes a pine re nematode spreading prevention system using semantic splitting. Semantic segmentation is a field of object detection that recognizes and labels a set of pixels constituting different categories. Conventional object detection detects objects based on what are inside a specific bounding box, but semantic segmentation is more precise than other forms of object detection because it uses a segmentation label applied to pixels in the image. In this paper, a separate pixel segmentation label was applied to the pine re-nematode data set photographed by the drone to identify the
  • 2. Int J Elec & Comp Eng ISSN: 2088-8708  Pine wilt disease spreading prevention system using semantic segmentation (Chulhyun Hwang) 2667 three stages of infectious information such as suspicion, attention, and confirmation. This allows the user to grasp information such as area, location, and alarm to prevent the spread of re-nematode disease. 2. DETRECTION OF SUSPECTED PINE WILT DISEASE 2.1. Doubt detection with supervised classification S. K. Lee et al. [8] acquired high resolution unmanned aerial vehicle (UAV) images in relapsing areas of pine nematodes, and conducted suspicions of suspected pine nematodes through supervised classification techniques such as SVM and ANN. Based on the acquired learning data, we applied two techniques, ANN and SVM, to calculate 99.43% and 84.60% of user accuracy and manufacturer accuracy using ANN, and 99.24% and 95.35% accuracy using SVM. 2.2. Extracting suspect space locations using RGB values To identify the damage of pine re-nematode disease, the experiments were conducted by specifying the damage RGB values (Red 139, Green 113, Blue 123) and increasing the range values corresponding to RGB values from 1 to 10 [9-12]. In addition, when a clustering phenomenon occurs among the calculated pixels, it is recognized as an object as a colony. The purpose of this study is to present an extraction methodology that can extract damages using RGB values of images taken at high altitudes. However, due to the characteristics of RGB values, it is difficult to calculate certain accuracy simply by changing the range of RGB values, such as the RGB values varying due to various factors such as weather conditions, shadow presence, shooting height, and pixel size [13-14]. 3. SYSTEM DESIGN 3.1. Data set preprocessing The data set used in this study is an aerial photograph with both infected and normal trees. The pine tree infected with the pine re-nematode is characterized by browning and clustering. Clustering is a characteristic of re-nematode disease, it spreads the media to surrounding pines, so it can be confirmed that clustering phenomenon with surrounding pines occurs around the early tree of infection. Therefore, the data set was preprocessed using this feature. As shown in the circle in Figure 1, the focusing effect and noise reduction are performed around the browned and clustered group to improve the accuracy of the data set. In addition, the noise generated during the process is removed to improve the quality of the data set. As the preprocessing of the image proceeds, it can be distinguished by the unaided eye and the boundary with the normal tree becomes clear. To evaluate the accuracy of the data set preprocessing, the dataset was stored in a separate directory and compared with the image without preprocessing. Figure 1. Data set focusing 3.2. Overall system design The purpose of this system is to prevent the spread of pine nematode disease. It aims to detect pine tree infected with re-nematode disease and isolate it from normal tree based on the data set taken by aerial photograph. Therefore, the area of infected trees, the area of normal trees, and the area of suspected suspicions are required. The proposed system applies the preprocessed data set to the semantic partitioning model based on SegNet and returns each area. It also visualizes the area returned and provides it to the user Figure 2. The system is a two-stage structure. The first step is to collect, classify and correct the data. The process is as: In the collecting phase, the user collects image data of the area suspected of pine re-nematode disease Figure 3. Collected objects can effectively collect a wide range of aerial photographs and satellite images. In the classification phase, you create a training set by labeling images so that you can classify areas based on the collected data set. The criteria to classify the area is a label classified based on the RGB value of
  • 3.  ISSN: 2088-8708 Int J Elec & Comp Eng, Vol. 11, No. 3, June 2021 : 2666 - 2673 2668 the image. Since the classification targets of this system are infection trees, suspicions, and normal trees, they are defined based on the classification targets. In the correction step, the noise is removed from the image and the focus is applied to the infected tree to improve the overall accuracy. The second step is to learn the data set and the training set, and to derive the results. It is divided into modeling, segmentation, and output phases. In the modeling stage, models based on SegNet can be selected and applied. In the segmentation step, the image is segmented based on the learned results. The output step derives the visualized image based on the divided image in the dividing step and returns the value of the divided area. It also returns the accuracy of the segmented area and provides it to the user. Figure 2. System diagram Figure 3. System flow chart 3.3. Image classification area definition Deep learning model is a model that maximizes the effect when built on a large amount of data. Therefore, it is important to secure a large amount of data in semantic partitioning. In addition, since semantic segmentation configures a data set by applying a label according to a classification target, an image to be classified must be labeled by category. Image labeling was done using MATLAB's ImageLabeler. After loading the image, specify an area and a line to assign a label area to the image. Therefore, the classification targets were labeled as infectious, suspicious and normal. In addition, infected trees, suspicious trees, and normal trees were labeled and labeled as orange, blue, and yellow, respectively. This designates the labeled data set as the training set and the partition used for training. 3.4. Model selection and training Semantic partitioning is based on the encoder-decoder architecture. Each encoder has a downsampling decoder and upsampling the structure. Among the models with the above structure, representative models with high accuracy are FCN, Unet and DeepLabV3, which are similar to the existing SegNet, but with high accuracy in a specific image. Therefore, in this paper, we designed to evaluate the accuracy using the test image set trained and prepared based on the training data set prepared for all the above models to compare the accuracy in a specific image [15-17].
  • 4. Int J Elec & Comp Eng ISSN: 2088-8708  Pine wilt disease spreading prevention system using semantic segmentation (Chulhyun Hwang) 2669 3.5. Image region segmentation Image segmentation is the segmentation of test data using trained weights after model selection. Classification areas are defined in a separate CSV file to provide visualization effects to users. Figure 4 shows the image inside the CSV file to define the RGB color. Figure 4. The CSV file to define the RGB color Infected, suspected infection, and uninfected are defined to be infected, suspicious, and normal, respectively, and marked in red, yellow, and green. The other Sky and Sod mean sky and earth, respectively. Void means an unspecified area and is marked in black. 3.6. FCN design The biggest feature of FCN is the lack of a fully connected layer. Change the fully connected layer to 1x1 convolution layer in the existing CNN structure. The reason for deleting the fully connected layer is to obtain location information. The key to semantic segmentation is to get location information because the location information disappears through the fully connected layer. Therefore, the last layer was replaced with a 1x1 convolution layer in the VGG16-based model. We then upsampled using transposed convolution and created a map the same size as the input. Also, in the upsampling process, feature maps of lower layers were added to extract features by combining them with feature maps above. After that, all the features were recombined through the skip connection to derive the results [9]. 3.7. DeepLabV3 design DeepLabV3 is based on ResNet learned from ImageNet. ResNet feature extractors can be used to extract features of varying sizes. At the core of DeepLabV3 is the Atruos convolution layer. You can drill holes in a typical convolution layer to capture larger features with the same amount of computation. Therefore, in this paper, we designed the Atrous convolution layers in parallel to capture more features [18-22]. 3.8. U-net design U-Net is a U-shaped network with repeated contracting layers and upscaling. We can see that U-Net divides the image into several images while gradually reducing the size of the image during the contract process. Thereafter, the upsampling process is performed to obtain the divided image. In this paper, U-Net is designed by adopting the above structure [23-25]. 4. SYSTEM IMPLEMENTATION This chapter deals with the implementation of a pine nematode disease prevention system. In addition, we verify the effectiveness of the proposed system through consideration. The system building environment is shown in Table 1. This paper builds Anaconda 4.5.11 environment in Window10 Pro environment to build deep learning environment. GPU acceleration is used to improve training speed, and CUDA version is 10.0. Also, the implementation of the system uses Tenserflow 1.14.0 based on Python, and the library dependencies are OpenCV and numpy. The development tool used PyCharm and MATLAB's Image Labeler to label the training set. Table 1. System development environment Type Composition Desktop Specs CPU : Intel Core i7-4670 @ 3.40 GHz, RAM : 16 GB GPU : Geforce GTX1060ti 4 GB, OS : Window 10 Pro Environmen Anaconda 4.5.11, Python3, CUDA 10.0 Library Tenserflow 1.14.0, OpenCV, numpy Development Tools PyCharm, MATLAB Image Labeler
  • 5.  ISSN: 2088-8708 Int J Elec & Comp Eng, Vol. 11, No. 3, June 2021 : 2666 - 2673 2670 4.1. System implementation The system trains the semantic segmentation network model based on the labeled data set and returns information such as suspicion, normal tree, and infected tree of the test set using the weight. Provides the user with a visualized image and returns the area of the segmented area. The internal directory is divided into a data set directory and a model directory. When you run train.py and select a model, it trains based on the training set stored in the '../dataSet/train_Label' directory. test.py performs semantic partitioning of the data sets in the '../dataSet/test' directory based on the training weights trained in the above process. The result is stored in test_Label. To apply semantic splitting, you need a labeled training set. In this paper, a labeled image was created based on suspicious, normal and infected trees, and training weights were generated by applying semantic segmentation network models. Figure 5 shows the data set stored in the test directory. Once all the training weights have been generated, run test.py. After selecting the model and importing the above data set, the semantic segmentation proceeds and the network model is evaluated together. Figure 6 shows the visualized image of the semantic segmentation being completed. Green is an uninfected normal tree, and red is an infected pine tree. Yellow is the suspicious tree and black is the unspecified area. Figure 7 shows the result screen showing the share of each classification model in the total area. According to the area classification, 27.38% of infected trees, 35.52% of suspicious trees, 25.14% of normal trees, 3.32% of voids, and 8.64% of land. Pixel classification accuracy is about 87%. Figure 5. Test data set Figure 6. Semantic segmentation results Figure 7. Semantic segmentation area results
  • 6. Int J Elec & Comp Eng ISSN: 2088-8708  Pine wilt disease spreading prevention system using semantic segmentation (Chulhyun Hwang) 2671 4.2. Discussion Most suspected pine re-nematode suspicion detection systems used supervised classification techniques to directly assign classification targets or to extract and detect RGB values of suspicious trees. However, the above method is an object recognition model that learns a specific part of the image. However, the accuracy of the object recognition model is observed, but the position and area of the object cannot be returned due to the characteristics of the object recognition model. Therefore, this study proposes a system that improves accuracy and returns the position and area of an object by using semantic segmentation, an object detection model, for suspicious detection. This section verifies the efficiency by comparing the classification accuracy of the existing system with that of the proposed system. Also, we analyze the best model by comparing the accuracy of semantic segmentation models applied to the proposed system. The experimental method trains each model using a training set, extracts training weights, and measures pixel classification accuracy and area accuracy using a test set. Table 2 is a learning set containing the environment in which the experiment will be conducted. The experimental environment used for the experiment is shown in Table 2. Using the models of FCN, DeepLabV3, SetNet, and U-Net, Batch Size is set to 50 and Epoch is 50. The number of training sets to be used is three. The semantic segmentation is performed by applying the trained model weights using the above test set. Figure 8 is a graphical representation of the training data for each model. As a result, FCN, U-Net, DeepLabV3 and SegNet have 87%, 88%, 91% and 85% classification accuracy, respectively. When the experiment was conducted with three test sets, the accuracy is shown in Table 3. Test set 1 and test set 2, which are relatively easy to classify, have high accuracy with average accuracy of 87.75% and 91.25%, but 81.75% for test set that is difficult to identify, such as test set 3. In addition, DeepLabV3 was selected as the model with the highest accuracy with an average accuracy of 90%. Table 2. Learning environment Model Environment FCN, U-Net, DeepLabV3, SegNet Batch Size=50, Epoch=50 DataSet Count=3, TestSet Count=3 Figure 8. Model-specific epoch and classification accuracy Table 3. Pixel classification accuracy by model Model TestSet1 Accuracy TestSet1 Accuracy TestSet1 Accuracy FCN 0.87 0.90 0.81 DeepLabV3 0.91 0.93 0.85 SegNet 0.85 0.89 0.77 U-Net 0.88 0.93 0.84
  • 7.  ISSN: 2088-8708 Int J Elec & Comp Eng, Vol. 11, No. 3, June 2021 : 2666 - 2673 2672 5. CONCLUSION Pine nematode disease is a forest pest epidemic with a 100% mortality rate. Therefore, early detection is very important, and it is important to harvest the infected tree as quickly as possible. The Forest Service operates a monitoring center to take control of the complaints. However, due to the nature of the forest area, it is very difficult for humans to survey all areas. Recently, a system that combines machine learning and drones to effectively detect a wide range has been studied. Due to the nature of pine nematode disease, the location and area detection of suspicion is important. However, the object recognition model, which is one of the weak points of the existing system, is effective in recognizing objects but cannot return the position and area of the object. To solve this problem, this paper proposes a prevention system to prevent the spread of pine nematode disease using aerial photographs and satellite images. In this paper, semantic segmentation, an object detection model, is used to classify infected trees, suspicious trees, and normal trees, visualize them, and return the area and accuracy of the separated areas to the user. In addition, the average classification accuracy of each model was about 86.9%, and the maximum classification accuracy was about 90%. Through this, we could verify that the object detection model has similar classification accuracy without falling classification accuracy compared with the existing object recognition model. Therefore, it was concluded that the object recognition model, such as the related research in Section 2.3, is fast and effective for simple object recognition, but that the object detection model is suitable for aeronautics and satellite images, which have a lot of information. ACKNOWLEDGEMENTS This work was supported by the research grant of PaiChar University in 2021. REFERENCES [1] Lim, “Forest in Crisis by Pine Wilt Nematode,” Forest and Culture, vol. 26, no. 7, pp. 4-5, 2017. [2] S. Khan and K. V. Kirubanand, “Comparing machine learning and ensemble learning in the field of football,” International Journal of Electrical and Computer Engineering (IJECE), vol. 9, no. 5, pp. 4321-4325, 2019. [3] “Korea Forest Service,” Korea Forest Service Home Page, 2019. [Online]. Available: http://www.forest.go.kr/newkfsweb/html/HtmlPage.do?pg=/conser/conser_020103.html&mn=KFS_02_02_01_03. [4] J. K. Rhee, "Prediction for Periodontal Disease using Gene Expression Profile Data based on Machine Learning," Journal of the Korea Institute of Information and Communication Engineering, vol. 23, no. 8, pp. 903-908, 2019. [5] “MathWorks,” MathWorks Homepage, 2019. [Online]. Available: https://kr.mathworks.com/solutions/image- video-processing/object-recognition.html. [6] I. J. Choi, J. G. Seo, and H. Y. Park, “Object Recognition in Low Resolution Images using a Convolutional Neural Network and an Image Enhancement Network,” The Journal of Korean Institute of Information Scientists and Engineering, vol. 45, no. 8, pp. 831-837, 2018. [7] G. S. Moon and Y. Kim, “A Combined Model of Outline Feature Map and CNN for Detection of People at the Beach,” The Journal of Korean Institute of Information Scientists and Engineers, vol. 46, no. 1, pp. 31-38, 2019. [8] S. K. Lee, S. J. Park, G. M. Baek, H. B. Kim, and G. W. Lee, “Detection of Damaged Pine Tree by the Pine Wilt Disease Using UAV Image,” The Journal of Korean Society of Remote Sensing, vol. 35, no. 3, pp. 359-373, 2019. [9] P. H. Huynh, V. H. Nguyen, T. N. Do, “Enhancing Gene Expression Classification of Support Vector Machines with Generative Adversarial Networks," Journal of Information and Communication Convergence Engineering, vol. 17, no. 1, pp. 14-20, 2019. [10] I. S. Cho, S. J. Kwon, and J. Y. Yoon, “Occurrence of Peach Latent Mosaic Viroid Inducing Peach Calico Disease of Peach Treess,” Horticulture abstracts, pp. 177-178, 2017. [11] G. Y. Heo, "ROI Extraction for Automatic Placard Recognition," Journal of the Korea Institute of Information and Communication Engineering, vol. 23, no. 4, pp. 374-380, 2019. [12] H. D. Lee, “Identification of Damaged Trees by Pine Wilt Diseases Using Drone Images and GIS,” Dissertation, Kyungil University, 2017. [13] Lafferty, J, McCallum, A. and Pereira, F. C., “Conditional random fields: Probabilistic models for segmenting and labeling sequence data,” ICML '01: Proceedings of the Eighteenth International Conference on Machine Learning, 2001, pp. 282-289. [14] H. J. Shin and C. H. Oh, "Machine Learning based on Approach for Classification of Abnormal Data in Shop- floor," Journal of the Korea Institute of Information and Communication Engineering, vol. 21, no. 11, pp. 2037-2042, 2017. [15] Suykens, J. A, and Vandewalle, J., “Least squares support vector machine classifiers,” Neural processing letters, vol. 9, no. 3, pp. 293-300, 1999. [16] X. T. Yang, J. S. Lee, and H. K. Jung, “Fault Diagnosis Management Model using Machine Learning,” Journal of Information and Communication Convergence Engineering, vol. 17, no. 2, pp. 128-134, 2019.
  • 8. Int J Elec & Comp Eng ISSN: 2088-8708  Pine wilt disease spreading prevention system using semantic segmentation (Chulhyun Hwang) 2673 [17] S. R. Saluti, “A survey of big data and machine learning,” International Journal of Electrical and Computer Engineering (IJECE), vol. 10, no. 1, pp. 575-580, 2020. [18] L. C. Chen, G. Papandreou. G, I. Kokkinos, K. Murphy, and A. L. Yuille, “Deeplab: Semantic image segmentation with deep convolutional nets, atrous convolution, and fully connected CRFS,” IEEE transactions on pattern analysis and machine intelligence, vol. 40, no. 4, pp. 834-848, 2017. [19] J. H. Yim and K. A. Sohn, “Investigating the Feature Collection for Semantic Segmentation via Single Skip connection,” The Korean Institute of Information Scientists and Engineers, vol. 44, no. 12, pp. 1282-1289, 2017. [20] J. H. Yim and K. A. Sohn, “Efficient Inference of Image Objects using Semantic Segmentation,” Journal of Broadcast Engineering, vol. 24, no. 1, pp. 67-76, 2019. [21] G. Wang and S. Y. Shin, “An Improved Text Classification Method for Sentiment Classification,” Journal of Information and Communication Convergence Engineering, vol. 17, no. 1, pp. 41-48, 2019. [22] B. Hao and D. S. Kang, “Research on Image Semantic Segmentation Based on FCN-VGG and Pyramid Pooling Module,” The Journal of Korean Institute of Information Technology, vol. 16, no. 7, pp. 1-8, 2018. [23] H. K. Kim, S. O. Lee, and H. K. Jung, “Human activity recognition by using convolutional neural network,” International Journal of Electrical and Computer Engineering (IJECE), vol. 9, no. 6, pp. 5270-5276, 2019. [24] S. Aich, S. Chakraborty, and H. C. Kim, “Convolutional neural network-based model for web-based text classification,” International Journal of Electrical and Computer Engineering (IJECE), vol. 9, no. 6, pp. 5185-5191, 2019. [25] O. Ronneberger, P. Fischer, and T. Brox, “U-net: Convolutional networks for biomedical image segmentation,” MICCAI 2015: Medical Image Computing and Computer-Assisted Intervention-MICCAI 2015, vol. 9351, pp. 234-241, 2015. BIOGRAPHIES OF AUTHORS Chulhyun Hwang received the M. S. degree in 1995 and Ph. D. degree in 2017 from Department of Computer Engineering of Pai Chai University, Korea. From 1991 to 2000. He worked for Korea Navy as a Computer Officer. Since 2019, he has worked in the Department of Smart IT Software at Kyung Bok University, where he works as a professor. His current research interests include deep learning, machine learning, IoT, big data and artificial intelligence. Jaean Jeong received the B. S. degree in 1992 from the Department of Computer Science of Jeonbuk National University, and received the M.S degree in 2020 from the Department of Computer Engineering of Paichai University, Korea. Since 1993, he has working in the Korea water resources cooperation (Kwater), where he now works as a general director of Hwaseong Office. His current research interests include big data analysis platform, open data platform, data processing and machine learning. Hoekyung Jung received the M. S. degree in 1987 and Ph. D. degree in 1993 from the Department of Computer Engineering of Kwangwoon University, Korea. From 1994 to 1995, he worked for ETRI as a researcher. Since 1994, he has worked in the Department of Computer Engineering at Paichai University, where he now works as a professor. His current research interests include multimedia document architecture modeling, information processing, embedded system, machine learning, big data, and IoT.