<!DOCTYPE article PUBLIC "-//NLM//DTD JATS (Z39.96) Journal Archiving and Interchange DTD v1.0 20120330//EN" "JATS-archivearticle1.dtd">
<article xmlns:xlink="http://www.w3.org/1999/xlink">
  <front>
    <journal-meta />
    <article-meta>
      <title-group>
        <article-title>CENTERNET-BASED DETECTION MODEL AND U-NET-BASED MULTI-CLASS SEGMENTATION MODEL FOR GASTROINTESTINAL DISEASES</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Yoon Ho Choi</string-name>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Yeong Chan Lee</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Sanghoon Hong</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Junyoung Kim</string-name>
          <xref ref-type="aff" rid="aff2">2</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Hong-Hee Won</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Taejun Kim</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
          <xref ref-type="aff" rid="aff2">2</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Dept. of Digital Health, Samsung Advanced Institute for Health Sciences and Tech. (SAIHST), &amp; Sungkyunkwan University, Samsung Medical Center</institution>
          ,
          <addr-line>Seoul</addr-line>
          ,
          <country>Republic of Korea</country>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>Dept. of Health Sciences &amp; Tech., Samsung Advanced Institute for Health Sciences &amp; Tech. (SAIHST), Sungkyunkwan University, Samsung Medical Center</institution>
          ,
          <addr-line>Seoul</addr-line>
          ,
          <country>Republic of Korea</country>
        </aff>
        <aff id="aff2">
          <label>2</label>
          <institution>Dept. of Medicine, Samsung Medical Center, Sungkyunkwan University School of Medicine</institution>
          ,
          <addr-line>Seoul</addr-line>
          ,
          <country country="KR">Korea</country>
        </aff>
      </contrib-group>
      <abstract>
        <p>From the perspective of the computer-aided diagnosis system, it is important to build automated techniques that detect and diagnose lesions to reduce the missing rate of clinicians. Recently, various diagnosis techniques using computer vision and artificial intelligence have been developed.However, they need to diagnose various lesions more accurately to be used in actual clinical practice. Accordingly, we developed CenterNet-based object detection model and U-Net-based class-wise binary segmentation model. These models were trained with random augmentation methods including color and morphological changes. For the 43 test set images, our model shows 0.1932 0.0622 of mean average precision with standard deviation in detection, and 0.2544 0.2080 of semantic score in segmentation.</p>
      </abstract>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>1. INTRODUCTION</title>
      <p>
        Endoscopists can recognize diverse lesions related with
digestive disorders in gastrointestinal organs through
endoscopic examinations. The detected lesion is clinically
managed or resected in compliance with medical guidelines.
However, it is not typically diagnosed until the results of
pathological examination are known. Some endoscopic
examinations are effective for the early diagnosis and prevention
of gastrointestinal disease, but detecting lesions is highly
dependent on the skill and experience of the endoscopists. For
example, some studies have reported that the missing rate of
polyps during colonoscopy ranges from 17% to 28% [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ].
      </p>
      <p>Recently, computer-aided system has remarkably
improved with medical imaging. Especially, recent studies have
shown that artificial intelligence can meet the endoscopists’
needs. A prospective randomized controlled trial showed that</p>
      <p>
        Copyright c 2020 for this paper by its authors. Use permitted under
Creative Commons License Attribution 4.0 International (CC BY 4.0).
adenoma detection rates of colorectal polyps significantly
increased when endoscopists co-worked with real-time
automatic detection system [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ]. Another randomized controlled
trial showed that deep convolutional neural network using
deep reinforcement learning achieved real-time monitoring
blind spots with a high accuracy during
esophagogastroduodenoscopy [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ].
      </p>
      <p>We participated in sub-challenge II: Endoscopic
Disease Detection and Segmentation (EDD2020) of Endoscopy
Computer Vision Challenges on Segmentation and Detection
(EndoCV2020). Deep learning models were developed for
detecting or segmenting lesions from 4 different organs for
this challenge.</p>
      <p>For this challenge, A CenterNet-based model was
designed to detect lesions and a class-wise U-Net-based model
was developed to segment lesions.</p>
    </sec>
    <sec id="sec-2">
      <title>2. DATASETS</title>
      <p>
        In total, 386 endoscopic images of the training set were
obtained from 5 multi-centers [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ]. Every image was assigned
to at least 1 class from 5 disease classes with Barretts
esophagus (BE), high grade dysplasia (HGD), cancer, polyp and
suspicious region from 4 different organs. These images had
corresponding bounding boxes and pixel-level labels of each
lesion and were annotated by medical experts. The number of
images in the entire training set was imbalanced across
disease classes. (BE : 160, HGD : 74, cancer : 53, polyp : 127,
and suspicious : 88).
      </p>
    </sec>
    <sec id="sec-3">
      <title>3. METHODS</title>
    </sec>
    <sec id="sec-4">
      <title>3.1. Image preprocessing</title>
      <p>Class imbalance can lead to biased results towards a
particular class during the training of the model. Thus, prior
to image pre-processing, we randomly duplicated images
in insufficient classes to balance the number of images in
all classes. At this point, it was important to minimize the
number of duplicated images, since indiscriminately
duplicated images may cause substantial bias in the trained model.
Therefore, every round we identified the class with the
highest number of images and the class with the lowest number.
Then we randomly duplicated images of the lowest class. To
ensure that, the images containing objects of the highest class
were excluded from the random duplication.</p>
      <p>After balancing the number of images belonging to each
class, we preprocessed the training data to reduce
overfitting of our models to it and generalize the models to the test
data. Firstly, all images in the training data were standardized
for each channel and randomly augmented 86 times using
rotation, flipping, contrast enhancement, and brightness
adjustment. Next, to train the model with invariant properties
for the scale, we randomly changed the resolution of the
original image from 320 to 602 every 10 epochs and then
converted it to a size of 512 512 pixels.</p>
    </sec>
    <sec id="sec-5">
      <title>3.2. Model development for detection</title>
      <p>For disease detection, we focused on single-stage object
detection model with fast execution speed that is
appropriate for real-time object detection and can possibly be used
in clinical practice because the endoscopic image consist of
video frame images rather than still images.</p>
      <p>
        CenterNet was shown to work more simply and efficiently
by predicting both key points and bounding boxes of objects
in images at the same time instead of sliding anchors that
compute image features by identifying possible bounding
boxes [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ]. Because it has recently demonstrated excellent
performance in real-time target detection, we applied
CenterNet to endoscopic disease detection. Our CenterNet-based
EDD detection model predicts the center points of the
lesions, offsets to the x and y axes, and the width and height of
bounding boxes.
      </p>
      <p>
        The backbone architecture of our detection model is a
ResNet50 [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ] model pre-trained on the PASCAL VOC 2012
and EDD2020 datasets [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ] for multiclass classification. We
fine-tuned this detection model with the following training
options. The batch size and epoch were 8 and 150 times,
respectively, and the initial learning rate was 5e-4 and divided
by 10 after every 80 epochs. The input image size was 512
and the test image was restored to its original size by
applying an affine transformation. The threshold of the confidence
score was set to 0.2.
      </p>
    </sec>
    <sec id="sec-6">
      <title>3.3. Model development for segmentation</title>
      <p>
        For disease segmentation, we modified the decoder part of
Vanilla U-Net [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ] to build a multi- class segmentation model
that can infer independent result for each class. Because some
classes overlap with other disease classes in the EDD2020
data, it would be inappropriate to implement general multi
class segmentation that constitutes the final layer as softmax
operation. Therefore, we replaced the final layer of vanilla
UNet with class-wise binary segmentation branches for multi
class segmentation. As shown in Fig 1, we designed a branch
structure in which the last up-convolution layer of U-Net
performed segmentations for each class independently. Through
these branches, the class-wise binary segmentation model was
trained by dice similarity coefficient loss. The same backbone
architecture used for the detection model was used for of our
segmentation model. Training of our segmentation model was
carried out with batch size of 4 and 150 epochs, and the
initial learning rate was 5e-4 and divided by 10 after every 80
epochs.
      </p>
    </sec>
    <sec id="sec-7">
      <title>4. RESULTS</title>
      <p>For the 43 test set images, our model showed mean average
precision of 0.1932 0.0622 in detection, and semantic score
of 0.2544 0.2080 in segmentation.</p>
    </sec>
    <sec id="sec-8">
      <title>5. DISCUSSION &amp; CONCLUSION</title>
      <p>EndoCV2020 is an annual global competition for detecting
and segmenting lesions of endoscopic images from
gastrointestinal organs. We developed deep learning models for each
task. The detection model achieved mean average precision
of 0.1932 0.0622 and the segmentation model achieved
semantic score of 0.2544 0.2080 in the test dataset.</p>
      <p>The challenging problem was extremely small data size.
Only 386 images were given as a training set to classify and
localize 5 imbalanced classes. Even suspicious class literally
comprised unclear regions that endoscopists could not define.
To overcome this problem, the images of minority classes
from the training set were oversampled to balance with other
classes, and all images were augmented through various
image preprocessing techniques.</p>
      <p>Further research is required to develop an artificial
intelligence model that can fulfill the standard for practical
endoscopic examination.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>Nam</given-names>
            <surname>Hee</surname>
          </string-name>
          <string-name>
            <given-names>Kim</given-names>
            , Yoon Suk Jung, Woo Shin Jeong, HyoJoon Yang,
            <surname>Soo-Kyung</surname>
          </string-name>
          <string-name>
            <surname>Park</surname>
          </string-name>
          , Kyuyong Choi, and Dong Il Park.
          <article-title>Miss rate of colorectal neoplastic polyps and risk factors for missed polyps in consecutive colonoscopies</article-title>
          .
          <source>Intestinal research</source>
          ,
          <volume>15</volume>
          (
          <issue>3</issue>
          ):
          <fpage>411</fpage>
          ,
          <year>2017</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>Pu</given-names>
            <surname>Wang</surname>
          </string-name>
          ,
          <string-name>
            <surname>Tyler M Berzin</surname>
            , Jeremy Romek Glissen Brown, Shishira Bharadwaj, Aymeric Becq, Xun Xiao, Peixi Liu,
            <given-names>Liangping</given-names>
          </string-name>
          <string-name>
            <surname>Li</surname>
            ,
            <given-names>Yan</given-names>
          </string-name>
          <string-name>
            <surname>Song</surname>
            ,
            <given-names>Di</given-names>
          </string-name>
          <string-name>
            <surname>Zhang</surname>
          </string-name>
          , et al.
          <article-title>Real-time automatic detection system increases colonoscopic polyp and adenoma detection rates: a prospective randomised controlled study</article-title>
          .
          <source>Gut</source>
          ,
          <volume>68</volume>
          (
          <issue>10</issue>
          ):
          <fpage>1813</fpage>
          -
          <lpage>1819</lpage>
          ,
          <year>2019</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>Lianlian</given-names>
            <surname>Wu</surname>
          </string-name>
          , Jun Zhang, Wei Zhou,
          <string-name>
            <surname>Ping</surname>
            <given-names>An</given-names>
          </string-name>
          , Lei Shen, Jun Liu, Xiaoda Jiang, Xu Huang, Ganggang Mu,
          <string-name>
            <given-names>Xinyue</given-names>
            <surname>Wan</surname>
          </string-name>
          , et al.
          <article-title>Randomised controlled trial of wisense, a realtime quality improving system for monitoring blind spots during esophagogastroduodenoscopy</article-title>
          .
          <source>Gut</source>
          ,
          <volume>68</volume>
          (
          <issue>12</issue>
          ):
          <fpage>2161</fpage>
          -
          <lpage>2169</lpage>
          ,
          <year>2019</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <given-names>Sharib</given-names>
            <surname>Ali</surname>
          </string-name>
          , Noha Ghatwary, Barbara Braden, Dominique Lamarque, Adam Bailey, Stefano Realdon, Renato Cannizzaro, Jens Rittscher,
          <string-name>
            <given-names>Christian</given-names>
            <surname>Daul</surname>
          </string-name>
          , and
          <string-name>
            <given-names>James</given-names>
            <surname>East</surname>
          </string-name>
          .
          <source>Endoscopy disease detection challenge</source>
          <year>2020</year>
          . arXiv preprint arXiv:
          <year>2003</year>
          .03376,
          <year>2020</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <given-names>Kaiwen</given-names>
            <surname>Duan</surname>
          </string-name>
          , Song Bai, Lingxi Xie, Honggang Qi, Qingming Huang, and
          <string-name>
            <given-names>Qi</given-names>
            <surname>Tian</surname>
          </string-name>
          . Centernet:
          <article-title>Keypoint triplets for object detection</article-title>
          .
          <source>In Proceedings of the IEEE International Conference on Computer Vision</source>
          , pages
          <fpage>6569</fpage>
          -
          <lpage>6578</lpage>
          ,
          <year>2019</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          [6]
          <string-name>
            <given-names>Kaiming</given-names>
            <surname>He</surname>
          </string-name>
          , Xiangyu Zhang, Shaoqing Ren, and
          <string-name>
            <given-names>Jian</given-names>
            <surname>Sun</surname>
          </string-name>
          .
          <article-title>Deep residual learning for image recognition</article-title>
          .
          <source>arxiv 2015. arXiv preprint arXiv:1512.03385</source>
          ,
          <year>2015</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          [7]
          <string-name>
            <given-names>Olaf</given-names>
            <surname>Ronneberger</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Philipp</given-names>
            <surname>Fischer</surname>
          </string-name>
          , and
          <string-name>
            <given-names>Thomas</given-names>
            <surname>Brox</surname>
          </string-name>
          . Unet:
          <article-title>Convolutional networks for biomedical image segmentation</article-title>
          . In International Conference on
          <article-title>Medical image computing and computer-assisted intervention</article-title>
          , pages
          <fpage>234</fpage>
          -
          <lpage>241</lpage>
          . Springer,
          <year>2015</year>
          .
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>