-
Notifications
You must be signed in to change notification settings - Fork 3
/
qmrlab-about.html
executable file
·50 lines (40 loc) · 2.25 KB
/
qmrlab-about.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<div id="about" class="section md-padding">
<!-- Container -->
<div class="container">
<!-- Row -->
<div class="row">
<!-- Section header -->
<div class="section-header text-center">
<h2 class="title">Welcome to qMRLab</h2>
<p>
qMRLab is an open-source software for quantitative MR image analysis. The main goal is to provide the community with an intuitive tool for data fitting, plotting, simulation and protocol optimization for a myriad of different quantitative models. The modularity of the implementation makes it easy to add any additional modules and we encourage everyone to contribute their favorite recipe for qMR!
</p>
</div>
<!-- /Section header -->
<!-- about -->
<div class="col-md-4">
<div class="about">
<i class="fa fa-cogs"></i>
<h3>Data simulator</h3>
<p>The simulation interface allows end users to easily simulate qMR data and evaluate how well these models perform under known parameters input, determine the most appropriate acquisition protocol and evaluate how fitting constraints impact the results.</p>
<a href="#">Read more</a>
</div>
</div>
<!-- /about -->
<!-- about -->
<div class="col-md-4">
<div class="about">
<i class="fa fa-magic"></i>
<h3>Data fitting and visualization</h3>
<p>The data fitting provides a simple interface to import real-world qMR data, fit them using the selected fitting procedure, and visualize the resulting parameter maps. More advanced users could also use the command line tools used in the background by the GUI to include data fitting in their analysis scripts.
</p>
<a href="#">Read more</a>
</div>
</div>
<!-- /about -->
</div>
<!-- /Row -->
</div>
<!-- /Container -->
</div>
<!-- /About -->