<!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>Feature-Based Approach for Severity Scoring of Lung Tuberculosis from CT Images</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Kirill Bogomasov</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Ludmila Himmelspach</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Gerhard Klassen</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Martha Tatusch</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Stefan Conrad</string-name>
          <email>conradg@cs.uni-duesseldorf.de</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Heinrich-Heine-Universitat Dusseldorf, Institut fur Informatik Universitatsstra e 1</institution>
          ,
          <addr-line>40225 Dusseldorf</addr-line>
          ,
          <country country="DE">Germany</country>
        </aff>
      </contrib-group>
      <abstract>
        <p>Nowadays tuberculosis is still a widespread disease that causes worldwide more than one million deaths and ten million new infections every year. As part of ImageCLEF 2018, we investigated whether the severity of the disease can be determined from CT scans, only. We therefore extracted features from the images which we then tested with several classi ers. Afterwards we chose the best combinations of di erent feature sets and classi cation models. Our best approach is based on three features, namely cavitation, cavity tissue, and infection ratio. Combined with random forests we achieved rank 10 regarding the RMSE measure.</p>
      </abstract>
      <kwd-group>
        <kwd>feature extraction</kwd>
        <kwd>image classi cation</kwd>
        <kwd>lung tuberculosis</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>Introduction</title>
      <p>
        In 2018 tuberculosis was listed as one of the top ten causes of death worldwide [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ].
Depending on the severity degree of the disease di erent medical treatments are
necessary. To this day the distinction of the severity degree has been executed
by medical experts based on diverse information including the results of the
mycobacterial culture test, pleural uid and cerebrospinal uid (CSF) analyses,
lesion patterns in radiological images of the lungs, patient's age, duration of
treatment and others [
        <xref ref-type="bibr" rid="ref11">11</xref>
        ]. In patients with tuberculosis, computed tomography
(CT) is often performed for analyzing the lesion patterns in the lungs. The
human-based analysis of the existing data is an expensive and time-consuming
task. Additionally, a manual classi cation can be error-prone. In contrast to the
manual examination of CT scans, a computer-based method could lower the
error rate and simplify the procedure.
      </p>
      <p>
        In this paper we present a feature-based approach for severity scoring of
lung tuberculosis exclusively based on CT scans. This work is a contribution
to the severity score tuberculosis task of ImageCLEF 2018 [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ], [
        <xref ref-type="bibr" rid="ref9">9</xref>
        ]. Besides the
tuberculosis degree determination, the main goal of our approach was to
create a descriptive classi cation framework that provides information about the
in uence of di erent kinds of irregularities in lungs on severity scores.
      </p>
    </sec>
    <sec id="sec-2">
      <title>Feature Extraction</title>
      <p>
        We extracted features from CT images assuming that medical experts look for
irregularities in the lungs that are typical for tuberculosis while analyzing CT
scans in the context of severity score determination. In the medical literature,
di erent kinds of irregularities and lesions in the lung associated with pulmonary
tuberculosis are described. Our feature choice is for the most part based on this
description. In this section, feature extraction methods are described that we
used in our approach. Since the most of our feature extraction methods worked
on binary images, we binarized all CT images using IsoData method [
        <xref ref-type="bibr" rid="ref16">16</xref>
        ] in a
preprocessing step. Hereby we also used lung masks which were extracted by the
algorithm that was published in [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ].
2.1
      </p>
      <sec id="sec-2-1">
        <title>Lung Calci cation</title>
        <p>
          Calci cation is signi cant to the disease pattern of tuberculosis[
          <xref ref-type="bibr" rid="ref2">2</xref>
          ]. We assume
that the identi cation and quanti cation of chalk within lung lobes can be a
meaningful feature. Houns eld Units (HU)[
          <xref ref-type="bibr" rid="ref4">4</xref>
          ] of chalk vary around 700 depending
on its density. These HU values overlap with those of bones (300 HU - 1500 HU),
which are often located in the boundary area of the masks. Hence, a simple
thresholding approach is not su cient. In order to avoid misclassi cation, we
therefore had to adapt the size of the masks as long as parts of the bones were
contained. Finally, pixel with the value 700 are counted because we regard
those as calci cations. In detail our approach contains the following steps:
(1) Slice-wise CT scan preparation: Set values below 700 to
3024 (no density)
(2) Slice-wise boundary analysis:
2.1 Boundary identi cation in mask slices:
        </p>
        <p>boundary[i] = mask[i] erode(mask[i]); with i 2 f0; slices(mask)g
2.2 Boundary extraction from CT scans:</p>
        <p>bscan[i] = boundary[i] scan[i]
2.3 Adaption of masks:
while (max(bscan[i] ) 700) do
mask[i] = erode(mask[i] )</p>
        <p>Step 2.2
end while
(3) Summation of pixels with value</p>
        <p>
          700 in mask[i] scan[i]
With erode [
          <xref ref-type="bibr" rid="ref10">10</xref>
          ], the function which executes an erosion on a binarized image
slice.
2.2
        </p>
      </sec>
      <sec id="sec-2-2">
        <title>Lung Wateriness</title>
        <p>
          Water accumulation is a potential concomitant of an existing tuberculosis
disease. Nevertheless we assumed that an existing tuberculosis infection weakens
the immune system of the patient and may lead to trace-diseases. There are
several indispositions that are associated with uid retention within the lungs or
in the pleural space between the lungs and the ribs, such as pleural e usion[
          <xref ref-type="bibr" rid="ref19">19</xref>
          ].
Our assumption was that water e usion is a clear evidence for an advanced level
of infection or traces of a cured serious illness. The process of searching the
water retention was based on the HU[
          <xref ref-type="bibr" rid="ref4">4</xref>
          ]. The searching algorithm is the same as in
Section 2.1.
2.3
        </p>
      </sec>
      <sec id="sec-2-3">
        <title>Pulmonary Cavities</title>
        <p>
          One of the classic indicators of lung tuberculosis are the pulmonary cavities
which occur in 50 percent of patients [
          <xref ref-type="bibr" rid="ref14">14</xref>
          ]. According to [
          <xref ref-type="bibr" rid="ref13">13</xref>
          ] pulmonary cavitation
formed as a result of tuberculosis is a site of very high mycobacterial burden.
They may lead to transmission of the infection to other humans and they are
associated with emergence of drug resistance. Furthermore, in [
          <xref ref-type="bibr" rid="ref12">12</xref>
          ], the authors
reported about the relationship between the cavity wall thickness combined with
the diameter of the lesion and the malignancy of the disease. Therefore, we
extracted the size of pulmonary cavities and cavity walls from CT images as
further features for severity scoring of lung tuberculosis. Although pulmonary
cavities may also occur as a result of other diseases like lung cancer [
          <xref ref-type="bibr" rid="ref14">14</xref>
          ], the
presence of additional pulmonary diseases in patients with lung tuberculosis
may increase the degree of tuberculosis.
        </p>
        <p>
          We extracted the pulmonary cavities from single CT image slices as dark
spots completely surrounded by light tissue. Since we wanted to avoid nding
(a)
(b)
similar structures in other parts of CT images than lungs, we used the lung masks
that were provided by the organizers of the task using the approach described
in [
          <xref ref-type="bibr" rid="ref7">7</xref>
          ]. Due to variations of Houns eld Units in di erent regions of cavities and
cavity walls in di erent CT images, rst, we binarized the CT images as described
above. We had to make some adjustments to the lung masks because they did
not cover the entire lung and often the cavities were cut out from the masks
(compare Figure 1). Therefore, we closed all holes in the masks. Since we also
closed the holes that correctly indicated bronchi, we cut out the middle part of
the lung masks to avoid incorrectly recognizing bronchi as pulmonary cavities.
        </p>
        <p>After processing the lung masks we performed the pulmonary cavitation
search in binarized CT images as follows: First, we removed all objects smaller
than 20 pixels because it is unlikely for a cavitation to be of such small size and
analyzing such objects would unnecessarily require processing time. Since
bronchioles scanned across and shadows caused by breathing and body movements
could be falsely recognized as cavities, in the second step, we closed all holes that
were smaller than two pixels. Obviously, the internal parts of undesired objects
could be larger than 2 pixels, but, on the other side, we had to prevent
erroneously discarding parts of real cavities. Because cavity walls are usually thicker
than bronchiole walls, in the third step, we performed morphological opening
with a 2 2 square to discard undesired objects remained after the second step.
We considered all holes that were completely surrounded by walls as pulmonary
cavities after performing these three preprocessing steps. For performance
reasons we estimated the volumes of pulmonary cavities by simply summing up the
pixels of found cavities and cavity walls, respectively, over all CT scan slices in
the le.
2.4</p>
      </sec>
      <sec id="sec-2-4">
        <title>Infection Ratio</title>
        <p>
          Pulmonary tuberculosis is an infectious lung disease whose bacilli spread through
the lungs and cause lung tissue damage. Depending on the type of tuberculosis
di erent types of lesions occur in the lungs (see Figure 2). That makes it di cult
to estimate the amount of the a ected part of the lungs automatically. Since the
infection of the most tuberculosis types cause a thickening of the lung tissue
which can be recognized in CT scans, we simply estimated the ratio of the lung
tissue to the entire lung volume. In our approach we did not di erentiate between
healthy and a ected lung tissue which is a di cult task, our approach is based
on the assumption that the lung tissue ratio compared to the lung volume is
smaller in healthy persons than in persons su ering from tuberculosis. In order
to highlight the lung lesions, we rst binarized the CT images as described above.
After the binarization we simply counted the number of white pixels and related
it to the number of pixels in the lung mask [
          <xref ref-type="bibr" rid="ref7">7</xref>
          ].
Since its introduction in 1972 [
          <xref ref-type="bibr" rid="ref17">17</xref>
          ] the technology of X-Ray computed
tomography (CT) has been continuously re ned. Over time several di erent devices
with di erent parameter sets were developed [
          <xref ref-type="bibr" rid="ref5">5</xref>
          ]. The di erent technology and
the parameters do not only concern the distance and time between images, but
also the Houns eld Units represented in the nal image [
          <xref ref-type="bibr" rid="ref15">15</xref>
          ]. That leads to the
problem, that the same object can have di erent Houns eld Units on di erent
images [
          <xref ref-type="bibr" rid="ref5">5</xref>
          ]. As there is no information provided what hardware and what
parameters were involved in creating the scans for the dataset, it is di cult to look for
certain Houns eld Units which are comparable throughout all scans.
        </p>
        <p>In order to overcome this problem we decided to compare intervals of
Hounseld Units with the help of histograms. As the intervals of Houns eld Units of
di erent tissues overlap, it is di cult to determine reasonable bins. Therefore we
divided the interval of [ 1024; 3000] into 20 equal sized bins. In the classi cation
task every bin has been regarded as a single feature.
Since we assume that the degree of pulmonary tuberculosis can correlate with
the overall health of a patient, we considered the shape of the lungs, as well. We
also assume that the di erence between the shapes of the two lungs can provide
information about the patient's health. To obtain a comparison measure, it is
su cient to look at the masks.</p>
        <p>
          Note, that the following procedure needs all slices to be processed separately.
In order to compare the di erent lungs, all masks have to be divided into two
separate lung masks. Afterwards the contours of the relevant regions are
calculated. In [
          <xref ref-type="bibr" rid="ref18">18</xref>
          ] a border following method is introduced to describe the contour
of an object. The silhouettes of the lungs are calculated and stored in a
vector of points using the ndContours-method of OpenCV [
          <xref ref-type="bibr" rid="ref3">3</xref>
          ]. They can then be
matched with OpenCV's matchShapes-method. A measure for the match can be
computed by the following equation:
        </p>
        <p>
          7
I(A; B) = X jmiA
miBj
(1)
with
miA = sign(hiA) log(hiA) and
miB = sign(hiB) log(hiB) ;
where hiA and hiB are the Hu Moments of the contours A and B [
          <xref ref-type="bibr" rid="ref8">8</xref>
          ].
        </p>
        <p>Now there are comparison values for each slice of the CT Scan but it is desired
to receive one representative measure for the match. So nally, the average value
over all slices has to be calculated.
3</p>
      </sec>
    </sec>
    <sec id="sec-3">
      <title>Classi cation Methods</title>
      <p>We used di erent classi ers for predicting the severity score and the severity
level of tuberculosis using the feature set obtained from the feature extraction
step described in Section 2. In the training phase of classi cation models, we
performed feature selection based on the cross-validation mean square error for
severity score on the training set. We tried di erent classi cation methods
including the multi-class support vector machine (SVM) with RBF kernel, the
k-nearest-neighbor (kNN) algorithm, and the multi-layer perceptron classi er
with di erent parameter settings. Below we describe the best classi cation
models with respect to the mean square error on the training set and the way of
predicting the severity score and the severity level of tuberculosis.
3.1</p>
      <sec id="sec-3-1">
        <title>Decision Tree</title>
        <p>Using the Chi Square method it turned out that 13 of the 17 features are the
most meaningful. Apparently the histograms of the higher Houns eld Units are
not very informative. Therefore, all features have been considered for the decision
tree, except for the histograms of ranges with values greater than 50.</p>
        <p>In Figure 3 the structure of the resulting decision tree is demonstrated. The
numbers followed by an H stand for the ranges of the histograms. The assigned
classes of the leaf nodes are highlighted in blue. Arrows to the left indicate
that the condition of the parent node applies. Arrows to the right represent the
non-applicability. The classi er was tted using the Gini Impurity, a minimum
fraction of 3% per leaf and a minimum quality gain of 0:01. The structure shows
that most scores of the same severity class ("LOW"/"HIGH") share similar
features. But the scores 3 and 4 are often separated by only one property, as
well. According to the paths of the decision tree, the distinction between score
3 and 4 is the most di cult task and probably represents the biggest source of
errors regarding the AUC score, since both degrees belong to di erent severity
classes.
3.2</p>
      </sec>
      <sec id="sec-3-2">
        <title>Random Forests and Linear Regression</title>
        <p>Using random forests and linear regression as classi ers we interpreted the
prediction of the severity score and the severity level of tuberculosis as a regression
problem. In our rst attempt, we converted the severity level into the numbers 0
Inf Ratio &lt;
0.7631
3
4
Inner Cav &lt;</p>
        <p>156
2</p>
        <p>1
Outer Cav &lt;</p>
        <p>6897
1
2</p>
        <p>Outer Cav &lt;</p>
        <p>9481
1
and 1, where 1 means "HIGH" and 0 means "LOW" severity level. We used the
random forest classi er with the maximum depth value of 2 because the larger
values led to over tting of the classi cation model. We calculated the severity
scores from the predicted severity levels by dividing the severity level values into
intervals.</p>
        <p>In the second test, we trained two separate classi cation models for the
severity score and the severity level prediction. Since the severity score and the severity
level values mismatched for some data items, we adjusted the severity score
values depending on the corresponding severity level values at the extreme
boundaries of the severity level. In particular, we set the severity score values to 1
if the corresponding severity level values were higher than 0.95. If the severity
level values were below 0.22, we set the corresponding severity score values to
5 regardless the values that were predicted for the severity score before. Here,
we also used the random forest classi er with the maximum depth value of 3.
Additionally, we submitted a linear regression model which we trained on a
subset of the training set for which we achieved the best results with respect to
the cross-validation mean square error for the severity score. We used only a
subset of the training set because linear regression is sensitive to outliers that
we assumed in the training set due to variations in the mean square errors in
di erent cross-validation runs.</p>
        <p>Due to performance variations for the severity level in di erent cross-validation
runs for the random forest model trained in the second test, we assumed that the
classi cation model for prediction of the severity level over tted on the training
set. Therefore, in the third test, we reduced the maximum depth value to 2 for
the random forest model. Furthermore, we refrained from the adjustment of the
severity score values based on the severity level.
4</p>
      </sec>
    </sec>
    <sec id="sec-4">
      <title>Evaluation and Results</title>
      <p>A maximum of 10 runs could be submitted by each group per subtask in the
ImageCLEF 2018 TB task. This section shows the nal performance results of
our feature-based approach in the severity scoring challenge (subtask 3). The
nal ranking was based on the root mean square error (RMSE) for the severity
score. Table 1 summarizes the results for di erent runs of our approach ordered
by the ranking provided by the subtask organizers. Additionally, we listed the
results of the best runs with respect to the root mean square error (RMSE) and
the Area Under the ROC Curve (AUC) submitted in the competition.</p>
      <p>The best run of our approach was obtained by the random forest classi cation
model with severity score adjustment described in the second test in Section
3.2 (indicated as Rnd Frst depth 3 in the table) using only three features: size
of cavity, size of cavity tissue, and the infection ratio. Although our best run
achieved the tenth rank regarding the RMSE measure, it was ranked sixteenth
according to the AUC measure. In order to improve the results regarding the
AUC measure too, we performed feature selection based on the cross-validation
AUC value for the severity level on the training set using the same classi cation
method. The so selected features were calci cation, infection ratio, size of cavity,
and the third, the sixth and the tenth bins of the histogram. Although this run
was only ranked on the 25th placed regarding the RMSE, it achieved the eight
place regarding the AUC measure.</p>
      <p>Our second best run was achieved by the random forest classi cation model
with the maximum depth value of 2 without severity score adjustment and the
linear regression model trained on the subset of the training set (indicated as
Rnd Frst depth 2 and Lin Reg part in the table) on the same feature subset
as our best run. The performance results of our approach that calculated the
severity score from the predicted severity level values by the random forest
classication model (indicated as Rnd Frst score by level in the table) were the worst
among the regression based approaches described in Section 3.2. Although the
AUC value for the severity level was the same as for our best run, the RMSE
value for the severity score calculated based on the severity level was much worse
than for the separate severity scores prediction model.</p>
      <p>The decision trees unfortunately performed worst. They only achieved the
ranks 32-34 regarding the RMSE measure. The severity class was determined
on the basis of the received scores. For this, two methods were used. In the rst
approach, the values 1, 2 and 3 represent the class "HIGH", and 4 and 5 belong
to class "LOW". In the other method the probability p of a high severity was
calculated by the formula p = 5 y^</p>
      <p>4 , where y^ stands for the predicted severity score
of the decision tree. The results showed that the rst method scored signi cantly
better AUC values. Our best decision tree even reached the ninth rank in regard
to the AUC measure.
{ { 0.7840 1
{ { 0.8934 5
Rnd Frst depth 3 cav., cav. tissue, inf. ratio 0.9626 10
Rnd Frst depth 2 cav., cav. tissue, inf. ratio 0.9768 13
Lin Reg part cav., cav. tissue, inf. ratio 0.9768 14
Rnd Frst depth 3 calc., inf. ratio, cav., 1.1046 25</p>
      <p>
        hist. bins 3,6,10
Rnd Frst score by level cav., cav. tissue, inf. ratio 1.2040 29
In this paper we have shown that our feature-based approach is competitive to
other participants of the ImageCLEF 2018 challenge [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ]. With our best methods
we achieved rank 10 regarding the RMSE and rank 8 regarding the AUC
measure. Almost all features in our approach were extracted using the lung masks
provided by the organizers of the task. These masks were created by an
automatic segmentation algorithm [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ] that failed to recognize especially large lesions
in the lungs in some cases. Consequently, our feature extraction algorithms also
failed to work in such cases. Therefore, we assume that an optimization of the
masks could lead to a more precise feature extraction and improvement of the
nal results of our approach. As the reproduction of Houns eld Units of CT
scanners may vary, further information about the hardware and the used
parameters could lead to an improvement of the results. These could also be used
to determine reasonable bins for the Houns eld histograms.
      </p>
      <p>Finally, the feature choice in our approach was for the most part based on
own observations that could be approved by medical studies published in the
literature in recent years. We believe that we could improve the feature extraction
and consequently the nal results of our approach by consulting medical experts
specialized in treatment of pulmonary tuberculosis.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          1. World health organization.
          <source>Website</source>
          (
          <year>2018</year>
          ), http://www.who.int/en/newsroom/fact-sheets/detail/tuberculosis; visited on 31. May
          <year>2018</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          2.
          <string-name>
            <surname>Ball</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Greene</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Camp</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Rowntree</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          :
          <article-title>Calci cation in tuberculosis of the suprarenal glands: Roentgenographic study in addison's disease</article-title>
          .
          <source>Journal of the American Medical Association</source>
          <volume>98</volume>
          (
          <issue>12</issue>
          ),
          <volume>954</volume>
          {
          <fpage>961</fpage>
          (
          <year>1932</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          3.
          <string-name>
            <surname>Bradski</surname>
            ,
            <given-names>G.</given-names>
          </string-name>
          :
          <article-title>The OpenCV Library</article-title>
          .
          <source>Dr. Dobb's Journal of Software Tools</source>
          (
          <year>2000</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          4.
          <string-name>
            <surname>Brooks</surname>
            ,
            <given-names>R.:</given-names>
          </string-name>
          <article-title>A quantitative theory of the houns eld unit and its application to dual energy scanning</article-title>
          .
          <source>Journal of Computer Assisted Tomography</source>
          <volume>1</volume>
          (
          <issue>4</issue>
          ),
          <volume>487</volume>
          {
          <fpage>493</fpage>
          (
          <year>1977</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          5.
          <string-name>
            <surname>Cropp</surname>
            ,
            <given-names>R.J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Seslija</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Tso</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Thakur</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          :
          <article-title>Scanner and kVp dependence of measured CT numbers in the ACR CT phantom</article-title>
          .
          <source>Journal of Applied Clinical Medical Physics</source>
          <volume>14</volume>
          (
          <issue>6</issue>
          ),
          <volume>338</volume>
          {
          <fpage>349</fpage>
          (
          <year>2013</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          6.
          <string-name>
            <given-names>Dicente</given-names>
            <surname>Cid</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            ,
            <surname>Liauchuk</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            ,
            <surname>Kovalev</surname>
          </string-name>
          ,
          <string-name>
            <surname>V.</surname>
          </string-name>
          , , Muller, H.:
          <article-title>Overview of ImageCLEFtuberculosis 2018 - detecting multi-drug resistance, classifying tuberculosis type, and assessing severity score</article-title>
          .
          <source>In: CLEF2018 Working Notes. CEUR Workshop Proceedings</source>
          , CEUR-WS.org &lt;http://ceur-ws.
          <source>org&gt;</source>
          , Avignon,
          <source>France (September 10- 14</source>
          <year>2018</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          7.
          <string-name>
            <given-names>Dicente</given-names>
            <surname>Cid</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            ,
            <surname>Jimenez del Toro</surname>
          </string-name>
          ,
          <string-name>
            <given-names>O.A.</given-names>
            ,
            <surname>Depeursinge</surname>
          </string-name>
          ,
          <string-name>
            <surname>A.</surname>
          </string-name>
          , Muller, H.:
          <article-title>E cient and fully automatic segmentation of the lungs in ct volumes</article-title>
          .
          <source>In: Proceedings of the VISCERAL Anatomy Grand Challenge at the 2015 IEEE International Symposium on Biomedical Imaging (ISBI)</source>
          . pp.
          <volume>31</volume>
          {
          <fpage>35</fpage>
          .
          <string-name>
            <surname>CEUR-WS</surname>
          </string-name>
          (
          <year>2015</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          8.
          <string-name>
            <surname>Hu</surname>
            ,
            <given-names>M.K.</given-names>
          </string-name>
          :
          <article-title>Visual pattern recognition by moment invariants</article-title>
          .
          <source>IRE Transactions on Information Theory</source>
          <volume>8</volume>
          (
          <issue>2</issue>
          ),
          <volume>179</volume>
          {
          <fpage>187</fpage>
          (
          <year>1962</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          9.
          <string-name>
            <surname>Ionescu</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          , Muller, H.,
          <string-name>
            <surname>Villegas</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Garc</surname>
            a Seco de Herrera,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Eickho</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Andrearczyk</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          ,
          <string-name>
            <given-names>Dicente</given-names>
            <surname>Cid</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            ,
            <surname>Liauchuk</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            ,
            <surname>Kovalev</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V.</given-names>
            ,
            <surname>Hasan</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.A.</given-names>
            ,
            <surname>Ling</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            ,
            <surname>Farri</surname>
          </string-name>
          ,
          <string-name>
            <given-names>O.</given-names>
            ,
            <surname>Liu</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            ,
            <surname>Lungren</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            ,
            <surname>Dang-Nguyen</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.T.</given-names>
            ,
            <surname>Piras</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            ,
            <surname>Riegler</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            ,
            <surname>Zhou</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            ,
            <surname>Lux</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            ,
            <surname>Gurrin</surname>
          </string-name>
          ,
          <string-name>
            <surname>C.</surname>
          </string-name>
          : Overview of ImageCLEF 2018:
          <article-title>Challenges, datasets and evaluation. In: Experimental IR Meets Multilinguality, Multimodality, and Interaction</article-title>
          .
          <source>Proceedings of the Ninth International Conference of the CLEF Association (CLEF</source>
          <year>2018</year>
          ),
          <source>LNCS Lecture Notes in Computer Science</source>
          , Springer, Avignon,
          <source>France (September 10-14</source>
          <year>2018</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          10.
          <string-name>
            <surname>Jankowski</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          :
          <article-title>Erosion, dilation and related operators</article-title>
          .
          <source>In: Proceedings of 8th International Mathematica Symposium</source>
          (
          <year>2006</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          11.
          <string-name>
            <surname>Koegelenberg</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <given-names>A</given-names>
            <surname>Balkema</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C.</given-names>
            ,
            <surname>Jooste</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Y.</given-names>
            ,
            <surname>Taljaard</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            ,
            <surname>Irusen</surname>
          </string-name>
          , E.:
          <article-title>Validation of a severity-of-illness score in patients with tuberculosis requiring intensive care unit admission</article-title>
          .
          <source>South African Medical Journal</source>
          <volume>105</volume>
          (
          <issue>5</issue>
          ),
          <volume>389</volume>
          {
          <fpage>392</fpage>
          (
          <year>2015</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          12.
          <string-name>
            <surname>Nin</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>de Souza</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Alves</surname>
          </string-name>
          , G.,
          <string-name>
            <surname>do</surname>
            <given-names>Amaral</given-names>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            ,
            <surname>Irion</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            ,
            <surname>Marchiori</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E.</given-names>
            ,
            <surname>Hochhegger</surname>
          </string-name>
          ,
          <string-name>
            <surname>B.</surname>
          </string-name>
          :
          <article-title>Solitary lung cavities: Ct ndings in malignant and non-malignant disease</article-title>
          .
          <source>Clinical radiology</source>
          <volume>71</volume>
          (
          <issue>11</issue>
          ),
          <volume>1132</volume>
          {
          <fpage>1136</fpage>
          (
          <year>2016</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          13.
          <string-name>
            <surname>Ong</surname>
            ,
            <given-names>C.W.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Elkington</surname>
            ,
            <given-names>P.T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Friedland</surname>
            ,
            <given-names>J.S.</given-names>
          </string-name>
          :
          <article-title>Tuberculosis, pulmonary cavitation, and matrix metalloproteinases</article-title>
          .
          <source>American journal of respiratory and critical care medicine 190(1)</source>
          ,
          <volume>9</volume>
          {
          <fpage>18</fpage>
          (
          <year>2014</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          14.
          <string-name>
            <surname>Parkar</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kandiah</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          :
          <article-title>Di erential diagnosis of cavitary lung lesions</article-title>
          .
          <source>Journal of the Belgian Society of Radiology</source>
          <volume>100</volume>
          (
          <issue>1</issue>
          ) (
          <year>2016</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          15.
          <string-name>
            <surname>Richter</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Hu</surname>
            ,
            <given-names>Q.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Steglich</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Baier</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Wilbert</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Guckenberger</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Flentje</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          :
          <article-title>Investigation of the usability of conebeam ct data sets for dose calculation</article-title>
          .
          <source>Radiation Oncology</source>
          <volume>3</volume>
          (
          <issue>1</issue>
          ),
          <volume>42</volume>
          (
          <year>2008</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          16.
          <string-name>
            <surname>Ridler</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Calvard</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          :
          <article-title>Picture Thresholding Using an Iterative Selection Method</article-title>
          .
          <source>IEEE Transactions on Systems, Man and Cybernetics</source>
          <volume>8</volume>
          (
          <issue>8</issue>
          ),
          <volume>630</volume>
          {
          <fpage>632</fpage>
          (
          <year>1978</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          17.
          <string-name>
            <surname>Subburaj</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          : CT Scanning {
          <article-title>Techniques and Applications</article-title>
          .
          <source>IntechOpen</source>
          (
          <year>2011</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref18">
        <mixed-citation>
          18.
          <string-name>
            <surname>Suzuki</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Abe</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          :
          <article-title>Topological structural analysis of digitized binary images by border following</article-title>
          .
          <source>Computer Vision</source>
          , Graphics, and
          <source>Image Processing</source>
          <volume>30</volume>
          (
          <issue>1</issue>
          ),
          <volume>32</volume>
          {
          <fpage>46</fpage>
          (
          <year>1985</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref19">
        <mixed-citation>
          19.
          <string-name>
            <surname>Vorster</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Allwood</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Diacon</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Koegelenberg</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          :
          <article-title>Tuberculous pleural effusions: Advances and controversies</article-title>
          .
          <source>Journal of Thoracic Disease</source>
          <volume>7</volume>
          (
          <issue>6</issue>
          ),
          <volume>981</volume>
          {
          <fpage>991</fpage>
          (
          <year>2015</year>
          )
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>