a b/website_pages/preprocessing.html
1
<!DOCTYPE HTML>
2
<html>
3
    <head>
4
        <title>Pre-processing</title>
5
        <meta charset="utf-8" />
6
        <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
7
        <link rel="stylesheet" href="assets/css/main.css" />
8
        <noscript><link rel="stylesheet" href="assets/css/noscript.css" /></noscript>
9
    </head>
10
    <body class="is-preload">
11
        <div id="page-wrapper">
12
            <!-- Header -->
13
            <header id="header">
14
                <nav id="nav">
15
                    <ul>
16
                            <li><a href="index.html">Home</a></li>
17
                            <li><a href="model-deployment.html">Model Deployment</a></li>
18
                            <li>
19
                                <a href="#">Concepts</a>
20
                                <ul>
21
                                    <li><a href="model-architecture.html">Model Architeture</a></li>
22
                                    <li>
23
                                        <a href="#">Methodology</a>
24
                                        <ul>
25
                                            <li><a href="dataset.html">Dataset</a></li>
26
                                            <li><a href="preprocessing.html">Preprocessing</a></li>                                     
27
                                            <li><a href="results.html">Results</a></li>
28
                                        </ul>
29
                                    </li>
30
                                    <li><a href="future-scope.html">Future Scope</a></li>
31
                                </ul>
32
                            </li>
33
                            <li><a href="about-us.html">About Us</a></li>
34
                    </ul>
35
                </nav>
36
            </header>
37
            <!-- Main -->
38
            <div id="main" class="wrapper style1">
39
                <div class="container">
40
                    <header class="major">
41
                        <h2>Pre-processing</h2>
42
                    </header>
43
                    <center>
44
                        <h3>Method-I</h3>
45
                        <br /><br /><br />
46
                        <span class="image"><img src="images/p1.jpg" alt="" /></span>
47
                        <br /><br /><br />
48
                        <p>
49
                            The threshold of BSD (brain, subdural, bone) windowing of single slice was taken and the CT scan was transformed into three windows: brain window (Level:40, Width: 80), subdural window (Level: 80, Width: 200) and bone window (Level: 600, Width:2000). The three windows were concatenated to form three channel images. This was followed by a resampling technique to get a little more spatial resolution from adjacent slices which kept the pixel spacing consistent, else it may be hard for the model to generalize. Finally, the image was cropped to focus on the informative part.
50
                        </p>
51
                        <br /><br /><br />
52
                        <h3>Method-II</h3>
53
                        <br /><br /><br />
54
                        <span class="image"><img src="images/p2.jpg" alt="" /></span>
55
                        <br /><br /><br />
56
                        <p>
57
                            The three adjacent slices of CT scan with brain window (Level:40, Width: 80) was concatenated to construct RGB (Red, Green, Blue) images. The CT scan metadata enabled the information of the spatially adjacent slices: R = St-1, G = St, B = St+1; where St is the slice of the CT scan. Finally, the image was cropped to focus on the informative part.
58
                        </p>
59
                    </center>
60
                </div>
61
            </div>
62
        <!-- Scripts -->
63
            <script src="assets/js/jquery.min.js"></script>
64
            <script src="assets/js/jquery.scrolly.min.js"></script>
65
            <script src="assets/js/jquery.dropotron.min.js"></script>
66
            <script src="assets/js/jquery.scrollex.min.js"></script>
67
            <script src="assets/js/browser.min.js"></script>
68
            <script src="assets/js/breakpoints.min.js"></script>
69
            <script src="assets/js/util.js"></script>
70
            <script src="assets/js/main.js"></script>
71
72
    </body>
73
</html>