-
Notifications
You must be signed in to change notification settings - Fork 2
/
dicom4miccai2017.html
817 lines (770 loc) · 47.2 KB
/
dicom4miccai2017.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Hands-on tutorial at the MICCAI 2017 focusing on the aspects of using
the DICOM standard for quantitative imaging research applications.">
<meta name="author" content="Andrey Fedorov, QIICR">
<meta property="og:title" content="DICOM tutorial at MICCAI 2017">
<meta property="title" content="DICOM tutorial at MICCAI 2017">
<meta property="og:image" content="http://qiicr.org/dicom4miccai/img/dicom4miccai.jpg">
<meta property="og:description" content="Hands-on tutorial at the MICCAI 2017 focusing on the aspects of using
the DICOM standard for quantitative imaging research applications.">
<title>DICOM tutorial at MICCAI 2017</title>
<!-- Bootstrap Core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom Fonts -->
<link href="vendor/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
<link href='https://fonts.googleapis.com/css?family=Kaushan+Script' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Roboto+Slab:400,100,300,700' rel='stylesheet' type='text/css'>
<!-- Theme CSS -->
<link href="css/agency.css" rel="stylesheet">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js" integrity="sha384-0s5Pv64cNZJieYFkXYOTId2HMA2Lfb6q2nAcx2n0RTLUnCAoTTsS0nKEO27XyKcY" crossorigin="anonymous"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js" integrity="sha384-ZoaMbDF+4LeFxg6WdScQ9nnR1QC2MIRxA1O9KWEXQwns1G8UNyIEZIQidzb0T1fo" crossorigin="anonymous"></script>
<![endif]-->
</head>
<body id="page-top" class="index">
<!-- Navigation -->
<nav id="mainNav" class="navbar navbar-default navbar-custom navbar-fixed-top">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header page-scroll">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span> Menu <i class="fa fa-bars"></i>
</button>
<a class="navbar-brand page-scroll" href="#page-top">DICOM for MICCAI 2017</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li class="hidden">
<a href="#page-top"></a>
</li>
<li>
<a class="page-scroll" href="#about">About</a>
</li>
<li>
<a class="page-scroll" href="#schedule">Schedule</a>
</li>
<li>
<a class="page-scroll" href="#team">Speakers</a>
</li>
<li>
<a class="page-scroll" href="#feedback">Feedback</a>
</li>
<!--
<li>
<a class="page-scroll" href="#register">Registration</a>
</li> -->
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container-fluid -->
</nav>
<!-- Header -->
<header>
<div class="container">
<div class="intro-text">
<div class="intro-lead-in">21st Century DICOM for Quantitative Imaging Research</div>
<div class="intro-heading"> Why, What, and How</div>
<a href="#about" class="page-scroll btn btn-xl">Tell Me More</a>
</div>
</div>
</header>
<section id="about">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">About</h2>
<p class="larger thick">When: 1:30pm-5:30pm, Sunday, September 10, 2017</p>
<p class="larger thick">Where: <a href="http://www.miccai2017.org/">MICCAI 2017</a>, Quebec Convention Center, Room 205B</p>
<p class="larger text-muted">DICOM4MICCAI is a new tutorial that we presented at the <a href="http://www.miccai2017.org/">MICCAI 2017</a> conference. All of the materials (slides, software, datasets, instructions) are accessible following the links below. Please give it a try! If you have any suggestions or feedback, you can use the form at the bottom of this page to let us know how we did, and what we can do better!</p>
<p class="larger text-muted">The objective of this tutorial is to introduce the <a href="http://miccai.org/">MICCAI</a> community to the new kinds of DICOM objects and capabilities that can be used for storage and communication of the data typically produced in the process of quantitative image analysis.</p>
<p class="larger text-muted">Over the course of presentations and hands-on sessions, we explain how DICOM can, and perhaps should, be used for storing your processing results such as segmentations, parametric maps and volumetric measurements. </p>
<p class="larger text-muted">After completing this tutorial, attendees are expected to develop an understanding of the relevant new capabilities of the DICOM standard, as well as some of the tools that they can use to experiment with adoption of the standard in their everyday research.</p>
</div>
</div>
<div class="row">
<img class="img-centered img-responsive" src="img/about/map.jpg" alt="">
</div>
</div>
</section>
<!-- Services Section
<section id="services">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Services</h2>
<h3 class="section-subheading text-muted">Lorem ipsum dolor sit amet consectetur.</h3>
</div>
</div>
<div class="row text-center">
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fa fa-shopping-cart fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading">E-Commerce</h4>
<p class="text-muted">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Minima maxime quam architecto quo inventore harum ex magni, dicta impedit.</p>
</div>
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fa fa-laptop fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading">Responsive Design</h4>
<p class="text-muted">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Minima maxime quam architecto quo inventore harum ex magni, dicta impedit.</p>
</div>
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fa fa-lock fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading">Web Security</h4>
<p class="text-muted">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Minima maxime quam architecto quo inventore harum ex magni, dicta impedit.</p>
</div>
</div>
</div>
</section>
-->
<!-- Portfolio Grid Section
<section id="portfolio" class="bg-light-gray">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Portfolio</h2>
<h3 class="section-subheading text-muted">Lorem ipsum dolor sit amet consectetur.</h3>
</div>
</div>
<div class="row">
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="#portfolioModal1" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/roundicons.png" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>Round Icons</h4>
<p class="text-muted">Graphic Design</p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="#portfolioModal2" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/startup-framework.png" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>Startup Framework</h4>
<p class="text-muted">Website Design</p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="#portfolioModal3" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/treehouse.png" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>Treehouse</h4>
<p class="text-muted">Website Design</p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="#portfolioModal4" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/golden.png" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>Golden</h4>
<p class="text-muted">Website Design</p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="#portfolioModal5" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/escape.png" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>Escape</h4>
<p class="text-muted">Website Design</p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="#portfolioModal6" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img src="img/portfolio/dreams.png" class="img-responsive" alt="">
</a>
<div class="portfolio-caption">
<h4>Dreams</h4>
<p class="text-muted">Website Design</p>
</div>
</div>
</div>
</div>
</section>
-->
<!-- About Section -->
<section id="schedule">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Schedule</h2>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<ul class="timeline">
<li>
<div class="timeline-image">
<img class="img-circle img-responsive" src="img/about/takeoff.jpg" alt="">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>1:30pm</h4>
<h4 class="subheading">Introduction, goals, scope</h4>
</div>
<div class="timeline-body">
<!--
<p class="text-muted">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Sunt ut voluptatum eius sapiente, totam reiciendis temporibus qui quibusdam, recusandae sit vero unde, sed, incidunt et ea quo dolore laudantium consectetur!</p>
-->
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-image">
<img class="img-circle img-responsive" src="img/team/clunie.jpeg" alt="">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>1:40pm</h4>
<h4 class="subheading">DICOM: Overview and historical perspective - David Clunie</h4>
</div>
<div class="timeline-body">
<p class="text-muted">This talk will introduce the main concepts of the DICOM standard, the role it plays in the modern healthcare enterprise, its overall purpose and capabilities.</p>
<p class="text-muted">Slides - <a href="https://github.com/QIICR/dicom4miccai-handson/releases/download/miccai2017/dicom4miccai2017-Clunie-slides.pdf">PDF</a></p>
</div>
</div>
</li>
<li class="timeline">
<div class="timeline-image">
<img class="img-circle img-responsive" src="img/team/fedorov.jpeg" alt="">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>2:10pm</h4>
<h4 class="subheading">DICOM for Quantitative Imaging - Andrey Fedorov</h4>
</div>
<div class="timeline-body">
<p class="text-muted">This talk will discuss the relevance of the DICOM standard in quantitative imaging research, motivate its use and discuss specific capabilities as applied to the storage of common image analysis outputs, such as image segmentation results, parametric maps and region-based quantitative measurements.</p>
<p class="text-muted">Slides - <a href="https://github.com/QIICR/dicom4miccai-handson/releases/download/miccai2017/dicom4miccai2017-Fedorov-slides.pdf">PDF</a></p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-image">
<img class="img-circle img-responsive" src="img/team/nolden.png" alt="">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>2:35pm</h4>
<h4 class="subheading">Standardizing on DICOM for oncology use cases - Marco Nolden</h4>
</div>
<div class="timeline-body">
<p class="text-muted">This presentation will discuss how the concepts and capabilities of DICOM standard can be utilized to support quantitative imaging in cancer research applications.</p>
<p class="text-muted">Slides - <a href="https://github.com/QIICR/dicom4miccai-handson/releases/download/miccai2017/dicom4miccai2017-Nolden-slides.pdf">PDF</a></p>
</div>
</div>
</li>
<li class="timeline">
<div class="timeline-image">
<img class="img-circle img-responsive" src="img/schedule/legos.jpg" alt="">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>3:00pm</h4>
<h4 class="subheading">Hands-on tutorial prerequisites setup</h4>
</div>
<div class="timeline-body">
<p class="text-muted">Attendees will be guided over the steps of installing the free open source software tools that will be used in the tutorial, and which can help the attendees work with the DICOM data in their everyday work after the conference. The tools utilized in the tutorial will include <a href="http://slicer.org">3D Slicer</a>, <a href="http://mitk.org">MITK</a>, <a href="http://dcmtk.org">DCMTK</a>, <a href="https://atom.io">Atom</a>, and <a href="https://github.com/qiicr/dcmqi">dcmqi</a>. We will also distribute the sample dataset that will be used in the tutorial.</p>
<p class="text-muted thick"><a href="assets/dicom4miccai-handson-prerequisites.pdf">Follow this link</a> for the instructions on how to install the prerequisites for your platform in advance of the tutorial!</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-image">
<img class="img-circle img-responsive" src="img/schedule/coffee.jpg" alt="">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>3:30pm</h4>
<h4 class="subheading">Coffee!</h4>
</div>
<div class="timeline-body">
<p class="text-muted">The specific roast of coffee that will be served is to be finalized by the MICCAI 2017 organizers, but we promise it will be free (considering you paid the registration fee) ;-)</p>
</div>
</div>
</li>
<li class="timeline">
<div class="timeline-image">
<img class="img-circle img-responsive" src="img/schedule/hnc24.jpg" alt="">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>4:00pm</h4>
<h4 class="subheading">Hands on session: Using DICOM to store your analysis results</h4>
</div>
<div class="timeline-body">
<p class="text-muted">Starting with an example of image segmentation task, we will demonstrate how 3D Slicer can be used to segment a DICOM image, calculate quantitative measurements over the segmented regions, and store the result using DICOM Segmentation object and DICOM Structured Report. We will then explore the content of the resulting objects, and demonstrate how they can be interpreted using MITK. If there is time left, we will continue with the demonstrations of how to convert legacy analysis results generated using non-DICOM-aware tools into the standard format, and how to convert quantitative image analysis results stored in DICOM into popular research formats.</p>
<p class="text-muted thick"><a href="http://bit.ly/dicom4miccai-handson">Tutorial materials</a></p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-image">
<img class="img-circle img-responsive" src="img/schedule/hnc-plot.jpg" alt="">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>4:45pm</h4>
<h4 class="subheading">Hands on session: Exploring data stored in DICOM</h4>
</div>
<div class="timeline-body">
<p class="text-muted">Starting with a relatively large publicly available DICOM dataset that contains PET and CT image data together with multiple segmentations of various structures and quantitative measures extracted from those, we will demonstrate how to convert DICOM data into a tabular form suitable for analysis, and will use Jupyter notebook and related python data analysis tools to explore various types of data present in DICOM.</p>
<p class="text-muted thick"><a href="http://bit.ly/dicom4miccai-handson">Tutorial materials</a></p>
</div>
</div>
</li>
<!--
<li class="timeline">
<div class="timeline-image">
<h4>Time for<br>discussion</h4>
</div>
</li>
-->
</ul>
</div>
</div>
</div>
</section>
<!-- Team Section -->
<section id="team" class="bg-light-gray">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Speakers</h2>
<h3 class="section-subheading text-muted">We look forward to meeting you!</h3>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<div class="team-member">
<img src="img/team/clunie.jpeg" class="img-responsive img-circle" alt="">
<h4>David Clunie</h4>
<p class="text-muted">Radiologist, medical informaticist, DICOM open source software author and editor of the DICOM standard. Formerly the co-chair of the IHE Radiology Technical Committee and industry co-chairman of the DICOM Standards Committee.</p>
<ul class="list-inline social-buttons">
<li><a href="http://dclunie.com"><i class="fa fa-home"></i></a>
</li>
</ul>
</div>
</div>
<div class="col-sm-4">
<div class="team-member">
<img src="img/team/fedorov.jpeg" class="img-responsive img-circle" alt="">
<h4>Andrey Fedorov</h4>
<p class="text-muted">Assistant Professor in Radiology at the Brigham and Women's Hospital Department of Radiology, and Harvard Medical School. Together with Ron Kikinis, Andrey is a co-PI of the Quantitative Image Informatics for Cancer Research project.</p>
<ul class="list-inline social-buttons">
<li><a href="https://fedorov.github.io"><i class="fa fa-home"></i></a>
</li>
</ul>
</div>
</div>
<div class="col-sm-4">
<div class="team-member">
<img src="img/team/nolden.png" class="img-responsive img-circle" alt="">
<h4>Marco Nolden</h4>
<p class="text-muted">Medical Imaging Interaction Toolkit (MITK) team lead at the German Cancer Research Center. His work focuses on research enabling technologies, interoperability, open source and application-oriented research in radiology, surgery and radiation oncology.</p>
<ul class="list-inline social-buttons">
<li><a href="https://www.dkfz.de/en/mic/team/people/Marco_Nolden.html"><i class="fa fa-home"></i></a>
</li>
</ul>
</div>
</div>
</div>
<!--
<div class="row">
<div class="col-lg-8 col-lg-offset-2 text-center">
<p class="large text-muted">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aut eaque, laboriosam veritatis, quos non quis ad perspiciatis, totam corporis ea, alias ut unde.</p>
</div>
</div>
-->
</div>
</section>
<!--
<section id="setup">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Prerequisites</h2>
<p class="larger text-muted">You will need a computer if you want to follow the steps demonstrated in the tutorial. We will NOT be providing computers at the venue, so bring your own if you want to do the hands on part. We will use several open source software tools, and several DICOM datasets during the tutorial.</p>
<p class="larger text-muted">We allocated the time for the setup during the tutorial, but you can also download and install both software and data in advance of the tutorial to save the time at MICCAI. This will leave us more time for the actual tutorial!</p>
<p class="larger text-muted thick"><a href="assets/dicom4miccai-handson-prerequisites.pdf">Follow this link</a> for the instructions on how to install the prerequisites for your platform in advance of the tutorial!</p>
</div>
</div>
</div>
</section>
<section id="register" class="bg-light-gray">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Registration</h2>
<h3 class="section-subheading text-muted">Registration is not required to attend the tutorial, but we will appreciate if you let us know in advance that you are planning to join!</h3>
<iframe src="https://docs.google.com/forms/d/e/1FAIpQLSfymcuxa7tUpj7FE29Jk2Eh5L9RY5MZDQ7ICpt7GbgxNzuHHA/viewform?embedded=true" width="560" height="1200" frameborder="0" marginheight="0" marginwidth="0">Loading...</iframe>
</div>
</div>
</div>
</section>
-->
<section id="feedback" class="bg-light-gray">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Feedback</h2>
<h3 class="section-subheading text-muted">Your feedback can help us improve the tutorial materials, and do a better job next time we teach it in person!</h3>
<iframe src="https://docs.google.com/forms/d/e/1FAIpQLSdFgk0yNHS_CKGWC1Zoi6sHFIXVW48-5MqxwqAC31crY7XdbQ/viewform?embedded=true" width="560" height="1200" frameborder="0" marginheight="0" marginwidth="0">Loading...</iframe>
</div>
</div>
</div>
</section>
<!-- Clients Aside -->
<!--
<aside class="clients">
<div class="container">
<div class="row">
<div class="col-md-3 col-sm-6">
<a href="#">
<img src="img/logos/envato.jpg" class="img-responsive img-centered" alt="">
</a>
</div>
<div class="col-md-3 col-sm-6">
<a href="#">
<img src="img/logos/designmodo.jpg" class="img-responsive img-centered" alt="">
</a>
</div>
<div class="col-md-3 col-sm-6">
<a href="#">
<img src="img/logos/themeforest.jpg" class="img-responsive img-centered" alt="">
</a>
</div>
<div class="col-md-3 col-sm-6">
<a href="#">
<img src="img/logos/creative-market.jpg" class="img-responsive img-centered" alt="">
</a>
</div>
</div>
</div>
</aside>
-->
<!-- Contact Section -->
<!--
<section id="contact">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Contact Us</h2>
<h3 class="section-subheading text-muted">Lorem ipsum dolor sit amet consectetur.</h3>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<form name="sentMessage" id="contactForm" novalidate>
<div class="row">
<div class="col-md-6">
<div class="form-group">
<input type="text" class="form-control" placeholder="Your Name *" id="name" required data-validation-required-message="Please enter your name.">
<p class="help-block text-danger"></p>
</div>
<div class="form-group">
<input type="email" class="form-control" placeholder="Your Email *" id="email" required data-validation-required-message="Please enter your email address.">
<p class="help-block text-danger"></p>
</div>
<div class="form-group">
<input type="tel" class="form-control" placeholder="Your Phone *" id="phone" required data-validation-required-message="Please enter your phone number.">
<p class="help-block text-danger"></p>
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<textarea class="form-control" placeholder="Your Message *" id="message" required data-validation-required-message="Please enter a message."></textarea>
<p class="help-block text-danger"></p>
</div>
</div>
<div class="clearfix"></div>
<div class="col-lg-12 text-center">
<div id="success"></div>
<button type="submit" class="btn btn-xl">Send Message</button>
</div>
</div>
</form>
</div>
</div>
</div>
</section>
-->
<footer>
<div class="container">
<div class="row">
<div class="col-md-4">
<span class="copyright">Copyright © <a href="http://qiicr.org">QIICR</a> 2017</span>
</div>
<div class="col-md-4">
<ul class="list-inline social-buttons">
<li><a href="https://github.com/qiicr"><i class="fa fa-github"></i></a>
</li>
<li><a href="http://qiicr.org"><i class="fa fa-home"></i></a>
</li>
<li><a href="https://twitter.com/itcr_qiicr"><i class="fa fa-twitter"></i></a>
</li>
<li><a href="https://plus.google.com/+qiicrOrg"><i class="fa fa-google-plus"></i></a>
</li>
</ul>
</div>
<div class="col-md-4">
<ul class="list-inline quicklinks">
<li><a href="https://github.com/BlackrockDigital/startbootstrap-agency">Agency</a> template by <a href="https://startbootstrap.com/">Start Bootstrap</a>
<!--
<li><a href="#">Privacy Policy</a>
</li>
<li><a href="#">Terms of Use</a>
</li>
-->
</ul>
</div>
</div>
</div>
</footer>
<!-- Portfolio Modals -->
<!-- Use the modals below to showcase details about your portfolio projects! -->
<!-- Portfolio Modal 1 -->
<div class="portfolio-modal modal fade" id="portfolioModal1" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<!-- Project Details Go Here -->
<h2>Project Name</h2>
<p class="item-intro text-muted">Lorem ipsum dolor sit amet consectetur.</p>
<img class="img-responsive img-centered" src="img/portfolio/roundicons-free.png" alt="">
<p>Use this area to describe your project. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Est blanditiis dolorem culpa incidunt minus dignissimos deserunt repellat aperiam quasi sunt officia expedita beatae cupiditate, maiores repudiandae, nostrum, reiciendis facere nemo!</p>
<p>
<strong>Want these icons in this portfolio item sample?</strong>You can download 60 of them for free, courtesy of <a href="https://getdpd.com/cart/hoplink/18076?referrer=bvbo4kax5k8ogc">RoundIcons.com</a>, or you can purchase the 1500 icon set <a href="https://getdpd.com/cart/hoplink/18076?referrer=bvbo4kax5k8ogc">here</a>.</p>
<ul class="list-inline">
<li>Date: July 2014</li>
<li>Client: Round Icons</li>
<li>Category: Graphic Design</li>
</ul>
<button type="button" class="btn btn-primary" data-dismiss="modal"><i class="fa fa-times"></i> Close Project</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio Modal 2 -->
<div class="portfolio-modal modal fade" id="portfolioModal2" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<h2>Project Heading</h2>
<p class="item-intro text-muted">Lorem ipsum dolor sit amet consectetur.</p>
<img class="img-responsive img-centered" src="img/portfolio/startup-framework-preview.png" alt="">
<p><a href="http://designmodo.com/startup/?u=787">Startup Framework</a> is a website builder for professionals. Startup Framework contains components and complex blocks (PSD+HTML Bootstrap themes and templates) which can easily be integrated into almost any design. All of these components are made in the same style, and can easily be integrated into projects, allowing you to create hundreds of solutions for your future projects.</p>
<p>You can preview Startup Framework <a href="http://designmodo.com/startup/?u=787">here</a>.</p>
<button type="button" class="btn btn-primary" data-dismiss="modal"><i class="fa fa-times"></i> Close Project</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio Modal 3 -->
<div class="portfolio-modal modal fade" id="portfolioModal3" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<!-- Project Details Go Here -->
<h2>Project Name</h2>
<p class="item-intro text-muted">Lorem ipsum dolor sit amet consectetur.</p>
<img class="img-responsive img-centered" src="img/portfolio/treehouse-preview.png" alt="">
<p>Treehouse is a free PSD web template built by <a href="https://www.behance.net/MathavanJaya">Mathavan Jaya</a>. This is bright and spacious design perfect for people or startup companies looking to showcase their apps or other projects.</p>
<p>You can download the PSD template in this portfolio sample item at <a href="http://freebiesxpress.com/gallery/treehouse-free-psd-web-template/">FreebiesXpress.com</a>.</p>
<button type="button" class="btn btn-primary" data-dismiss="modal"><i class="fa fa-times"></i> Close Project</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio Modal 4 -->
<div class="portfolio-modal modal fade" id="portfolioModal4" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<!-- Project Details Go Here -->
<h2>Project Name</h2>
<p class="item-intro text-muted">Lorem ipsum dolor sit amet consectetur.</p>
<img class="img-responsive img-centered" src="img/portfolio/golden-preview.png" alt="">
<p>Start Bootstrap's Agency theme is based on Golden, a free PSD website template built by <a href="https://www.behance.net/MathavanJaya">Mathavan Jaya</a>. Golden is a modern and clean one page web template that was made exclusively for Best PSD Freebies. This template has a great portfolio, timeline, and meet your team sections that can be easily modified to fit your needs.</p>
<p>You can download the PSD template in this portfolio sample item at <a href="http://freebiesxpress.com/gallery/golden-free-one-page-web-template/">FreebiesXpress.com</a>.</p>
<button type="button" class="btn btn-primary" data-dismiss="modal"><i class="fa fa-times"></i> Close Project</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio Modal 5 -->
<div class="portfolio-modal modal fade" id="portfolioModal5" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<!-- Project Details Go Here -->
<h2>Project Name</h2>
<p class="item-intro text-muted">Lorem ipsum dolor sit amet consectetur.</p>
<img class="img-responsive img-centered" src="img/portfolio/escape-preview.png" alt="">
<p>Escape is a free PSD web template built by <a href="https://www.behance.net/MathavanJaya">Mathavan Jaya</a>. Escape is a one page web template that was designed with agencies in mind. This template is ideal for those looking for a simple one page solution to describe your business and offer your services.</p>
<p>You can download the PSD template in this portfolio sample item at <a href="http://freebiesxpress.com/gallery/escape-one-page-psd-web-template/">FreebiesXpress.com</a>.</p>
<button type="button" class="btn btn-primary" data-dismiss="modal"><i class="fa fa-times"></i> Close Project</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio Modal 6 -->
<div class="portfolio-modal modal fade" id="portfolioModal6" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<!-- Project Details Go Here -->
<h2>Project Name</h2>
<p class="item-intro text-muted">Lorem ipsum dolor sit amet consectetur.</p>
<img class="img-responsive img-centered" src="img/portfolio/dreams-preview.png" alt="">
<p>Dreams is a free PSD web template built by <a href="https://www.behance.net/MathavanJaya">Mathavan Jaya</a>. Dreams is a modern one page web template designed for almost any purpose. It’s a beautiful template that’s designed with the Bootstrap framework in mind.</p>
<p>You can download the PSD template in this portfolio sample item at <a href="http://freebiesxpress.com/gallery/dreams-free-one-page-web-template/">FreebiesXpress.com</a>.</p>
<button type="button" class="btn btn-primary" data-dismiss="modal"><i class="fa fa-times"></i> Close Project</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- jQuery -->
<script src="vendor/jquery/jquery.min.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="vendor/bootstrap/js/bootstrap.min.js"></script>
<!-- Plugin JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js" integrity="sha384-mE6eXfrb8jxl0rzJDBRanYqgBxtJ6Unn4/1F7q4xRRyIw7Vdg9jP4ycT7x1iVsgb" crossorigin="anonymous"></script>
<!-- Contact Form JavaScript -->
<script src="js/jqBootstrapValidation.js"></script>
<script src="js/contact_me.js"></script>
<!-- Theme JavaScript -->
<script src="js/agency.min.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-44852938-8', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>