-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1508 lines (1241 loc) · 68.6 KB
/
index.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
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>MIDL-NCAI</title>
<meta content="MID lab established at COMSATS University Islamabad, which is centered around use of Al
for developing end-to-end Computer Aided Diagnostics systems that can be commercialized and
deployed at different end user sites for medical diagnostics." name="description">
<meta content="Medical,DIagnostics,MIDL,COMSATS,NCAI,CAD,AI,ML" name="keywords">
<!-- Favicons -->
<link href="assets/img/favicon.png" rel="icon">
<link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Raleway:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i"
rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="assets/vendor/fontawesome-free/css/all.min.css" rel="stylesheet">
<link href="assets/vendor/animate.css/animate.min.css" rel="stylesheet">
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet">
<link href="assets/vendor/glightbox/css/glightbox.min.css" rel="stylesheet">
<link href="assets/vendor/remixicon/remixicon.css" rel="stylesheet">
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet">
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet">
<!--Font Awesome 6-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css"
integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<!-- ======= Top Bar ======= -->
<div id="topbar" class="d-flex align-items-center fixed-top">
<div class="container-fluid d-flex justify-content-between">
<div class="contact-info d-flex align-items-center">
<i class="bi bi-envelope"></i> <a href="mailto:[email protected]">[email protected]</a>
<a href="tel:+925190496150"><i class="bi bi-phone"></i>+92 51 9049 6150</a>
</div>
<div class="d-none d-lg-flex social-links align-items-center">
<!-- <a href="#" class="twitter"><i class="bi bi-twitter"></i></a> -->
<a href="https://www.facebook.com/ncaicui" target="_blank" class="facebook"><i class="bi bi-facebook"></i></a>
<!-- <a href="#" class="instagram"><i class="bi bi-instagram"></i></a> -->
<a href="https://www.linkedin.com/company/midlncaicomsats/" target="_blank" class="linkedin"><i
class="bi bi-linkedin"></i></i></a>
</div>
</div>
</div>
<!-- ======= Header ======= -->
<header id="header" class="fixed-top">
<div class="container d-flex align-items-center">
<img src="assets/img/MIDL-PACS-Logo.png" style="width: 7%; height:7%; padding-right: 10px;" />
<h1 class="logo me-auto"><a href="index.html">MID Lab</a></h1>
<!-- Uncomment below if you prefer to use an image logo -->
<!-- <a href="index.html" class="logo me-auto"><img src="assets/img/logo.png" alt="" class="img-fluid"></a>-->
<nav id="navbar" class="navbar order-last order-lg-0">
<ul>
<li><a class="nav-link scrollto active" href="#vid">Home</a></li>
<li><a class="nav-link scrollto" href="#about">About</a></li>
<li><a class="nav-link scrollto" href="#Products">Products</a></li>
<li><a class="nav-link scrollto" href="#doctors">Team</a></li>
<li><a class="nav-link scrollto" href="#services">Services</a></li>
<!-- <li class="dropdown"><a href="#"><span>Drop Down</span> <i class="bi bi-chevron-down"></i></a>
<ul>
<li><a href="#">Drop Down 1</a></li>
<li class="dropdown"><a href="#"><span>Deep Drop Down</span> <i class="bi bi-chevron-right"></i></a>
<ul>
<li><a href="#">Deep Drop Down 1</a></li>
<li><a href="#">Deep Drop Down 2</a></li>
<li><a href="#">Deep Drop Down 3</a></li>
<li><a href="#">Deep Drop Down 4</a></li>
<li><a href="#">Deep Drop Down 5</a></li>
</ul>
</li>
<li><a href="#">Drop Down 2</a></li>
<li><a href="#">Drop Down 3</a></li>
<li><a href="#">Drop Down 4</a></li>
</ul>
</li> -->
<li><a class="nav-link scrollto" href="#contact">Contact</a></li>
<!-- <li><a class="nav-link scrollto" href="Pages/Login/index.html">Sign In</a></li> -->
</ul>
<i class="bi bi-list mobile-nav-toggle"></i>
</nav><!-- .navbar -->
<a href="Pages/Login/index.html" class="appointment-btn scrollto" disabled><span class="d-none d-md-inline">Sign</span>
In</a>
</div>
</header><!-- End Header -->
<!-- ======= Hero Section ======= -->
<!-- <section id="" class="d-flex align-items-center">
<div class="container">
<h1></h1>
<h2>An AI powered Web-based tool to help in early cancer detection and diagnosis from Mamograms, X-rays and CT Scans</h2>
</div>
</section> -->
<!-- End Hero -->
<div id="vid" class="showcase">
<video id="background-video" autoplay loop muted>
<source src="./assets/video/MID-Lab-NCAI-CUI-Main.mp4" type="video/mp4">
</video>
<div class="overlay"></div>
<div class="textonimg">
<h1>Welcome to MID (Medical Imaging <br /> and Diagnostics) Lab</h1>
<h4>An AI powered Web-based tool to help <br />
in early cancer detection and diagnosis <br />
from Mamograms, X-rays and CT Scans</h4>
<!-- <p>sLorem ipsum dolor sit amet consectetur adipisicing elit. Omnis hic distinctio accusamus, perferendis aliquam neque sunt illo cum corporis inventore! -->
</p>
<!-- <a href="#Products" class="btn-get-started scrollto">Products</a>
<a href="#services" class="btn-get-started scrollto">Services</a> -->
</div>
</div>
<main id="main">
<!-- ======= About Section ======= -->
<section id="about" class="about">
<div class="container-fluid">
<div class="row">
<div class="col-xl-5 col-lg-6 video-box d-flex justify-content-center align-items-stretch position-relative">
<a href="/assets/video/midlab.mp4" class="glightbox play-btn mb-4"></a>
</div>
<div
class="col-xl-7 col-lg-6 icon-boxes d-flex flex-column align-items-stretch justify-content-center py-5 px-lg-5">
<h3>About Us</h3>
<p>Prognosis of cancer patients can be improved through its early detection. Visually identifying cancer in
its earlier stages is at times difficult, and is subject to visual interpretation by the oncologist. That
introduces chances of error, which may have debilitating effect on the health of the patient. Machines can
help in accurate earlier diagnosis of the cancer, and may help in proper treatment of the patient with
higher chances of survival post-treatment. Therefore, MID Lab comes in to solve this issue. The Lab
facility consists of:</p>
<div class="icon-box">
<ul>
<li><i class="bx "></i> State of the Art Lab with High Computing Facility</li>
<li><i class="bx "></i> Experienced Team of Researchers</li>
<li><i class="bx "></i> Dedicated Team of Developers</li>
<!-- <li><i class="bx bx-chevron-right"></i> <a href="#">Marketing</a></li>
<li><i class="bx bx-chevron-right"></i> <a href="#">Graphic Design</a></li> -->
</ul>
<a href="./assets/pdf/MIDL_V2a.pdf" target="_blank"> <button style="float: right;"
class="btn btn-primary">Download Brochure</button></a>
</div>
</div>
</div>
</div>
</section><!-- End About Section -->
<!-- ======= Products Section ======= -->
<section id="Products" class="products">
<div class="container">
<div class="section-title">
<h2>Products</h2>
<p>MID lab focuses on the use of AI in medical image processing, with special emphasis on Brain Tumor, Breast
Cancer and Tuberculosis (TB) detection and diagnosis.
The CAD systems covers a wide range of diseases and image modalities. Our key product delivers reliable,
trustworthy, and fair Al models for dependable medical imaging diagnostics. The four main AI-Enabled
products that have been designed by our expert AI-Engineers and Developers are introduced below.</p>
</div>
<div class="row">
<!-- End of 1st Product -->
<div class="card mb-3 cc padx" style=" background-size:cover; max-width: 100%; margin-top: 25px">
<div class="row no-gutters">
<div class="col-lg-2">
<div class="pic"> <img src="assets/img/Apps/2_BrainVIZ.png" class="card-img img-fluid" alt="MIDL-NCAI-Services-BrainViz"></div>
</div>
<div class="col-md-10">
<div class="card-body ">
<h5 class="card-title dicom-title">Brain Tumor Detection Tools</h5>
<p class="card-text">BrainViz is aimed to help strengthen brain tumor care and the health systems. It
is
able to segment out various types of tumors from MRI scans, predict overall survival rates based
on age and days since diagnosis, and generate a report for physicians including all relevant data.
</p>
<!-- <p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p> -->
<!-- <a href="http://localhost:3000/u-dicom-viewer" target="_blank"> <button class="btn btn-primary">Demo</button></a> -->
<a href="http://127.0.0.1:8000/BrainVIS/" target="_blank"> <button class="btn btn-primary">Learn
More</button> </a>
<a href="/assets/video/product_demos/Brainviz_Demo.mp4" class="glightbox float-video"> <button
class="btn-my btn btn-primary bx bxs-videos bx-flashing">
</button>
</a>
</div>
</div>
</div>
</div>
<!-- Link to Brest AI Models at 127.0.0.1:8002 -->
<!-- 2nd Product TB -->
<div class="card mb-3 cc padx" style=" background-size:cover; max-width: 100%; margin-top: 25px">
<div class="row no-gutters">
<div class="col-lg-2">
<div class="pic"> <img src="assets/img/Apps/2_Tashkhees.png" class="card-img img-fluid"
alt="MIDL-NCAI-Services-Brest"></div>
</div>
<div class="col-md-10">
<div class="card-body ">
<h5 class="card-title dicom-title">Breast Cancer Detection Tools</h5>
<p class="card-text">Tashkees is aimed to aid the radiologist in the early diagnosis of breast Cancer.
It is able to detect, localize, and classify the lesion area into benign or malignant tissues. </p>
<a href="http://127.0.0.1:8000/" target="_blank"> <button class="btn btn-primary">Learn More</button>
</a>
<a href="assets/video/product_demos/Tashkhees_demo.mp4" class="glightbox float-video"> <button class="btn btn-my btn-primary bx bxs-videos bx-flashing">
</button>
</a>
</div>
</div>
</div>
</div>
<!-- End of 2nd Product -->
<!-- 3rd Product PDS -->
<div class="card mb-3 cc padx" style="max-width: 100%; margin-top: 25px">
<div class="row no-gutters">
<div class="col-lg-2">
<div class="pic"> <img src="assets/img/Apps/2_TB.png" class="card-img img-fluid"
alt="MIDL-NCAI-Services-PDS"></div>
</div>
<div class="col-md-10">
<div class="card-body ">
<h5 class="card-title dicom-title">Tuberculosis Detection Tools</h5>
<p class="card-text">TDS is aimed to provide an Al-based diagnostic system to automate TB
identification and other lung diseases. It is able to detect, classify and generate heat map for the
predicted area. </p>
<a href="http://127.0.0.1:8000/PDS" target="_blank"> <button class="btn btn-primary">Learn
More</button> </a>
<a href="assets/video/product_demos/TDS_demo.mp4" class="glightbox float-video"> <button class="btn btn-my btn-primary bx bxs-videos bx-flashing">
</button>
</a>
</div>
</div>
</div>
</div>
<!-- End of 3rd Product -->
<!-- 4th Product Dicom -->
<div class="card mb-3 cc padx" style="max-width: 100%; margin-top: 25px">
<div class="row no-gutters">
<div class="col-md-4 pic">
<img src="./assets/img/Services/dicom-viewer-midl-ncai.png" class="img-fluid"
alt="MIDL-NCAI-Services-Dicom_viewer">
</div>
<div class="col-md-8">
<div class="card-body ">
<h5 class="card-title dicom-title">AI Powered Dicom Viewer</h5>
<p class="card-text">MIDL provides its own AI assisted built-in Dicom viewer with advanced features.
Dicom viewer provides a complete package of medical imaging and diagnostics tool. It is equipped
with our refined AI Models on the left pane and generic function on the right pane like zooming,
rotation, invert and many more.</p>
</div>
</div>
</div>
</div>
<!-- End of 4th Product Dicom -->
</div>
</div>
</section><!-- End Products Section -->
<!-- ======= Why Us Section ======= -->
<section id="why-us" class="why-us" style="padding: 0px 0px 0px 0px !important">
<div class="container">
<div class="row">
<div class="col-lg-12 d-flex align-items-stretch">
<div class="content">
<h3>Why Choose our Products?</h3>
<p>
MID Lab at COMSATS University Islamabad (CUI) has an AI powered Web-based tools to help in early cancer
detection and diagnosis from Mamograms, X-rays and CT Scans.
The MID lab focuses on medical image processing, with special emphasis on Brain Tumor, Breast Cancer and
Tuberculosis (TB) detection and diagnosis. The CAD systems covers a wide array of diseases and image
modalities. You should consider our products for the following reasons:
<ul>
<li> The solution is budget-friendly as it will cut down on the cost of installing separate DICOM
viewer and PACS.</li>
<li> Removing the obstacles of manual image analysis as well as the physical burden on doctors/radiologists.</li>
<li>Early diagnosis and prognosis will be easier due to the increased number of cases/day.</li>
<li> We are providing a one-stop solution by integrating Al and PACS into a DICOM viewer.</li>
<li>We are providing all in one package.</li></ul>
</p>
<div class="text-center">
<a href="./assets/pdf/MIDL_V2a.pdf" target="_blank" class="more-btn">Learn More <i
class="bx bx-chevron-right"></i></a>
</div>
</div>
</div>
<div><br /></div>
<!-- <div class="col-lg-12 d-flex align-items-stretch">
<div class="icon-boxes d-flex flex-column justify-content-center">
<div class="row">
<div class="col-xl-4 d-flex align-items-stretch">
<div class="icon-box mt-4 mt-xl-0">
<img src="assets/img/COMSATS_new_logo-removebg-preview.png" style="width: 100px; height: 100px;"></img>
<h4 style="margin-top: 18px;">COMSATS University Islamabad (CUI)</h4>
<p>The COMSATS University Islamabad, is a public university in Pakistan. It is a multi-campus university with its principal seat located in Islamabad. Comsats was envisioned as Pakistan's first exclusive Institute of Information Technology.</p>
</div>
</div>
<div class="col-xl-4 d-flex align-items-stretch">
<div class="icon-box mt-4 mt-xl-0">
<img src="assets/img/MIDL-PACS-Logo.png" style="width: 100px; height: 100px; "></img>
<h4 style="margin-top: 18px;">Medical Imaging and Diagnostic Lab (MIDL)</h4>
<p>MID lab established at COMSATS University Islamabad, which is centered around use of Al
for developing end-to-end Computer Aided Diagnostics systems that can be commercialized and
deployed at different end user sites for medical diagnostics.</p>
</div>
</div>
<div class="col-xl-4 d-flex align-items-stretch">
<div class="icon-box mt-4 mt-xl-0">
<img src="assets/img/NCAI_LOGO-removebg-preview.png"style="width: 100px; height: 100px;"></img>
<h4 style="margin-top: 18px;">National Centre of Artificial Intelligence (NCAI)</h4>
<p>NCAI under government's vision 2025 is designed to become the leading hub of innovation, scientific research, knowledge transfer to the local economy, and training in the area of Artificial Intelligence (AI) and its closely affiliated fields.</p>
</div>
</div>
</div>
</div>
</div> -->
</div>
<!-- ======= Counts Section ======= -->
<div id="counts" class="counts">
<div class="container">
<div class="row">
<div class="col-lg-3 col-md-6">
<div class="count-box">
<i class="fas fa-user-md"></i>
<span data-purecounter-start="0" data-purecounter-end="5" data-purecounter-duration="1"
class="purecounter"></span>
<p>Radiologists</p>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-5 mt-md-0">
<div class="count-box">
<i class="far fa-hospital"></i>
<span data-purecounter-start="0" data-purecounter-end="15" data-purecounter-duration="1"
class="purecounter"></span>
<p>Researchers</p>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-5 mt-lg-0">
<div class="count-box">
<i class="fas fa-flask"></i>
<span data-purecounter-start="0" data-purecounter-end="4" data-purecounter-duration="1"
class="purecounter"></span>
<p>Developers</p>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-5 mt-lg-0">
<div class="count-box">
<i class="fas fa-award"></i>
<span data-purecounter-start="0" data-purecounter-end="20" data-purecounter-duration="1"
class="purecounter"></span>
<p>Collaborators</p>
</div>
</div>
</div>
</div>
</div><!-- End Counts Section -->
</div>
</section><!-- End Why Us Section -->
<!-- Link to PDS AI Models at 127.0.0.1:8003 -->
<!-- ======= Appointment Section ======= -->
<!-- <section id="appointment" class="appointment section-bg">
<div class="container">
<div class="section-title">
<h2>Request Demo/Access</h2>
<p>For satisfaction of our clients, we provide a free demo of one of 3 applications with limited features. Send us your info as per specifications in form below and provide details in message regarding access to the number of apps required. </p>
</div>
<form action="forms/appointment.php" method="post" role="form" class="php-email-form">
<div class="row">
<div class="col-md-4 form-group">
<input type="text" name="name" class="form-control" id="name" placeholder="Your Name" data-rule="minlen:4" data-msg="Please enter at least 4 chars">
<div class="validate"></div>
</div>
<div class="col-md-4 form-group mt-3 mt-md-0">
<input type="email" class="form-control" name="email" id="email" placeholder="Your Email" data-rule="email" data-msg="Please enter a valid email">
<div class="validate"></div>
</div>
<div class="col-md-4 form-group mt-3 mt-md-0">
<input type="tel" class="form-control" name="phone" id="phone" placeholder="Your Phone" data-rule="minlen:4" data-msg="Please enter at least 4 chars">
<div class="validate"></div>
</div>
</div>
<div class="row">
<div class="col-md-4 form-group mt-3">
<input type="text" name="date" class="form-control datepicker" id="date" placeholder="Organization Name" data-rule="minlen:4" data-msg="Please enter at least 4 chars">
<div class="validate"></div>
</div>
<div class="col-md-4 form-group mt-3">
<select name="department" id="department" class="form-select">
<option value="">Choose Product</option>
<option value="Department 1">Brain Tumor Detection</option>
<option value="Department 2">Breast Cancer Detection</option>
<option value="Department 3">Tuberculosis Detection</option>
</select>
<div class="validate"></div>
</div> -->
<!-- Uncomment above -->
<!-- <div class="col-md-4 form-group mt-3">
<select name="doctor" id="doctor" class="form-select">
<option value="">Select Doctor</option>
<option value="Doctor 1">Doctor 1</option>
<option value="Doctor 2">Doctor 2</option>
<option value="Doctor 3">Doctor 3</option>
</select>
<div class="validate"></div>
</div> -->
<!-- unComment below -->
<!-- <div class="col-md-4 form-group mt-3">
<input type="text" name="Designation" class="form-control" id="date" placeholder="Designation" data-rule="minlen:4" data-msg="Please enter at least 4 chars">
<div class="validate"></div>
</div>
</div>
<div class="form-group mt-3">
<textarea class="form-control" name="message" rows="5" placeholder="Message (Optional)"></textarea>
<div class="validate"></div>
</div>
<div class="mb-3">
<div class="loading">Loading</div>
<div class="error-message"></div>
<div class="sent-message">Your Demo/Access request has been sent successfully. Thank you!</div>
</div>
<div class="text-center"><button type="submit">Request Demo</button></div>
</form>
</div>
</section> -->
<!-- End Appointment Section -->
<!-- ======= Departments Section ======= -->
<!-- <section id="departments" class="departments">
<div class="container">
<div class="section-title">
<h2>Departments</h2>
<p>Magnam dolores commodi suscipit. Necessitatibus eius consequatur ex aliquid fuga eum quidem. Sit sint consectetur velit. Quisquam quos quisquam cupiditate. Et nemo qui impedit suscipit alias ea. Quia fugiat sit in iste officiis commodi quidem hic quas.</p>
</div>
<div class="row gy-4">
<div class="col-lg-3">
<ul class="nav nav-tabs flex-column">
<li class="nav-item">
<a class="nav-link active show" data-bs-toggle="tab" href="#tab-1">Cardiology</a>
</li>
<li class="nav-item">
<a class="nav-link" data-bs-toggle="tab" href="#tab-2">Neurology</a>
</li>
<li class="nav-item">
<a class="nav-link" data-bs-toggle="tab" href="#tab-3">Hepatology</a>
</li>
<li class="nav-item">
<a class="nav-link" data-bs-toggle="tab" href="#tab-4">Pediatrics</a>
</li>
<li class="nav-item">
<a class="nav-link" data-bs-toggle="tab" href="#tab-5">Eye Care</a>
</li>
</ul>
</div>
<div class="col-lg-9">
<div class="tab-content">
<div class="tab-pane active show" id="tab-1">
<div class="row gy-4">
<div class="col-lg-8 details order-2 order-lg-1">
<h3>Cardiology</h3>
<p class="fst-italic">Qui laudantium consequatur laborum sit qui ad sapiente dila parde sonata raqer a videna mareta paulona marka</p>
<p>Et nobis maiores eius. Voluptatibus ut enim blanditiis atque harum sint. Laborum eos ipsum ipsa odit magni. Incidunt hic ut molestiae aut qui. Est repellat minima eveniet eius et quis magni nihil. Consequatur dolorem quaerat quos qui similique accusamus nostrum rem vero</p>
</div>
<div class="col-lg-4 text-center order-1 order-lg-2">
<img src="assets/img/departments-1.jpg" alt="" class="img-fluid">
</div>
</div>
</div>
<div class="tab-pane" id="tab-2">
<div class="row gy-4">
<div class="col-lg-8 details order-2 order-lg-1">
<h3>Et blanditiis nemo veritatis excepturi</h3>
<p class="fst-italic">Qui laudantium consequatur laborum sit qui ad sapiente dila parde sonata raqer a videna mareta paulona marka</p>
<p>Ea ipsum voluptatem consequatur quis est. Illum error ullam omnis quia et reiciendis sunt sunt est. Non aliquid repellendus itaque accusamus eius et velit ipsa voluptates. Optio nesciunt eaque beatae accusamus lerode pakto madirna desera vafle de nideran pal</p>
</div>
<div class="col-lg-4 text-center order-1 order-lg-2">
<img src="assets/img/departments-2.jpg" alt="" class="img-fluid">
</div>
</div>
</div>
<div class="tab-pane" id="tab-3">
<div class="row gy-4">
<div class="col-lg-8 details order-2 order-lg-1">
<h3>Impedit facilis occaecati odio neque aperiam sit</h3>
<p class="fst-italic">Eos voluptatibus quo. Odio similique illum id quidem non enim fuga. Qui natus non sunt dicta dolor et. In asperiores velit quaerat perferendis aut</p>
<p>Iure officiis odit rerum. Harum sequi eum illum corrupti culpa veritatis quisquam. Neque necessitatibus illo rerum eum ut. Commodi ipsam minima molestiae sed laboriosam a iste odio. Earum odit nesciunt fugiat sit ullam. Soluta et harum voluptatem optio quae</p>
</div>
<div class="col-lg-4 text-center order-1 order-lg-2">
<img src="assets/img/departments-3.jpg" alt="" class="img-fluid">
</div>
</div>
</div>
<div class="tab-pane" id="tab-4">
<div class="row gy-4">
<div class="col-lg-8 details order-2 order-lg-1">
<h3>Fuga dolores inventore laboriosam ut est accusamus laboriosam dolore</h3>
<p class="fst-italic">Totam aperiam accusamus. Repellat consequuntur iure voluptas iure porro quis delectus</p>
<p>Eaque consequuntur consequuntur libero expedita in voluptas. Nostrum ipsam necessitatibus aliquam fugiat debitis quis velit. Eum ex maxime error in consequatur corporis atque. Eligendi asperiores sed qui veritatis aperiam quia a laborum inventore</p>
</div>
<div class="col-lg-4 text-center order-1 order-lg-2">
<img src="assets/img/departments-4.jpg" alt="" class="img-fluid">
</div>
</div>
</div>
<div class="tab-pane" id="tab-5">
<div class="row gy-4">
<div class="col-lg-8 details order-2 order-lg-1">
<h3>Est eveniet ipsam sindera pad rone matrelat sando reda</h3>
<p class="fst-italic">Omnis blanditiis saepe eos autem qui sunt debitis porro quia.</p>
<p>Exercitationem nostrum omnis. Ut reiciendis repudiandae minus. Omnis recusandae ut non quam ut quod eius qui. Ipsum quia odit vero atque qui quibusdam amet. Occaecati sed est sint aut vitae molestiae voluptate vel</p>
</div>
<div class="col-lg-4 text-center order-1 order-lg-2">
<img src="assets/img/departments-5.jpg" alt="" class="img-fluid">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>End Departments Section -->
<!-- ======= Doctors Section ======= -->
<section id="doctors" class="doctors">
<div class="container">
<div class="section-title">
<h2>Core Team</h2>
<p>MID Lab has an expert team of AI Professionals with a very organized hierarcy to work in collaboration with
all the team members. The team consists of one PI, two CO-PIs and a group of dedicated AI-experts and
developers. The Core team representing the main lead consist of the following persons. </p>
</div>
<div class="row">
<div class="col-lg-6">
<div class="member d-flex align-items-start">
<div class="pic"><img src="assets/img/doctors/doctors-1.jpg" class="img-fluid" alt=""></div>
<div class="member-info">
<h4>Prof. Dr. Sohail Ashgar</h4>
<span>PI, MID Lab</span>
<p>Prof. Dr. Sohail is working as Professor in the Computer Science Dept. of COMSATS University
Islamabad. He has 20+ years of industrial and research experience. He is also one of the founding
members of the Center of Research in Data Engineering (CORDE) Research Group.
<div class="social">
<!-- <a href=""><i class="ri-twitter-fill"></i></a>
<a href=""><i class="ri-facebook-fill"></i></a>
<a href=""><i class="ri-instagram-fill"></i></a> -->
<a href="https://www.linkedin.com/in/prof-dr-sohail-asghar/" target="_blank"> <i
class="ri-linkedin-box-fill"></i> </a>
<a href="mailto:"><i class="ri-mail-line"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-6 mt-4 mt-lg-0">
<div class="member d-flex align-items-start">
<div class="pic"><img src="assets/img/doctors/doctors-2.jpg" class="img-fluid" alt=""></div>
<div class="member-info">
<h4>Dr. Tehseen Zia</h4>
<span>Co-PI, MID Lab</span>
<p>Dr. Tehseen is an Assistant Professor at COMSATS University Islamabad with 15+ years of industrial
and academic experience. He also worked as Assistant Professor at CS Dept. University of Sargodha and
researcher at Vienna University of Technology Austria.</p>
<div class="social">
<!-- <a href=""><i class="ri-twitter-fill"></i></a>
<a href=""><i class="ri-facebook-fill"></i></a>
<a href=""><i class="ri-instagram-fill"></i></a> -->
<a href="https://www.linkedin.com/in/tehseen-zia-48764638/" target="_blank"> <i
class="ri-linkedin-box-fill"></i> </a>
<a href="mailto:"><i class="ri-mail-line"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-6 mt-4">
<div class="member d-flex align-items-start">
<div class="pic"><img src="assets/img/doctors/doctors-3.jpg" class="img-fluid" alt=""></div>
<div class="member-info">
<h4>Dr. Tahir Mustafa Madni</h4>
<span>Co-PI, MID Lab</span>
<p>Dr. Tahir Madni has MS (Interactive System Engineering) degree from RIT Sweden. He is an Assistant
Professor at CS Dept. COMSATS University Islamabad. His research has focused upon the area of human
computer interaction, and multimodal interfaces. He possess 10+ years of research and industrial
expertise.</p>
<div class="social">
<!-- <a href=""><i class="ri-twitter-fill"></i></a>
<a href=""><i class="ri-facebook-fill"></i></a>
<a href=""><i class="ri-instagram-fill"></i></a> -->
<a href="https://www.linkedin.com/in/mustafa-madni-a20735149/" target="_blank"> <i
class="ri-linkedin-box-fill"></i> </a>
<a href="mailto:"><i class="ri-mail-line"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-6 mt-4">
<div class="member d-flex align-items-start">
<div class="pic"><img src="assets/img/doctors/doctors-4.jpg" class="img-fluid" alt=""></div>
<div class="member-info">
<h4>Eng. Maria Nazir</h4>
<span>Team lead, MID Lab</span>
<p>She is the team lead of MID Lab with 5+ years of experience in AI and ML. Miss Maria is also working
as a PhD scholar in IST Islamabad. Moreover, she also served as a lecturer in electrical engineering
Dept. in NUML University Islamabad. Her research interest areas include AI, Machine learning , and
Computer vision.</p>
<div class="social">
<!-- <a href=""><i class="ri-twitter-fill"></i></a>
<a href=""><i class="ri-facebook-fill"></i></a>
<a href=""><i class="ri-instagram-fill"></i></a> -->
<a href="https://www.linkedin.com/in/maria-nazir-5b63a31a4" target="_blank"> <i
class="ri-linkedin-box-fill"></i> </a>
<a href="mailto:"><i class="ri-mail-line"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-6 mt-4 bdm">
<div class="member d-flex align-items-start">
<div class="pic"><img src="assets/img/doctors/doctors-5.jpeg" class="img-fluid" alt=""></div>
<div class="member-info">
<h4>Afshan Kazmi</h4>
<span>Business Development Manager, MID Lab</span>
<p>She is Business development Manager (BDM) at MID Lab. She started her career as a BDM in 2014.
Moreover, she has 8+ years of experience in marketing, primarily, in the healthcare sector. Therefore,
her focused areas include marketing of AI-based diagnostics systems, interventional cardiology
procedures and innovative surgical treatments.</p>
<div class="social">
<a href="https://www.linkedin.com/in/afshan-tahir-09964217b" target="_blank"> <i
class="ri-linkedin-box-fill"></i> </a>
<a href="mailto:[email protected]"><i class="ri-mail-line"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</section><!-- End Doctors Section -->
<!-- ======= Services Section ======= -->
<section id="services" class="products">
<div class="container">
<div class="section-title">
<h2>Services</h2>
<p>Apart from products, we also provide our most valued services to clients based on individual or
organizational requirements.
</p>
</div>
<!-- 1st Service -->
<div class="card mb-3 cc padx" style="max-width: 100%; margin-top: 25px">
<div class="row no-gutters">
<div class="col-md-8">
<div class="card-body ">
<h5 class="card-title dicom-title">AI Powered Health Care Solutions</h5>
<p class="card-text">MIDL provides its own AI Powered Health Care Services. Our products are aimed at the identification of cancerous region in brain, lungs and breast. However, we are not limited to that. The MID lab is centered around use of Al for developing end-to-end Computer Aided Diagnostics systems that can be commercialized and deplo
yed at different end user sites.</p>
<!-- <p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p> -->
<!-- <a href="http://localhost:3000/u-dicom-viewer" target="_blank"> <button class="btn btn-primary">Demo</button></a> -->
</div>
</div>
<div class="col-md-4 wall pic c-serv">
<img src="./assets/img/Services/Precision-Health_AI_Animation.webp" class="img-fluid img-serv"
alt="MIDL-NCAI-Services-Dicom_viewer">
<div class="overlay-serv">
<div class="text-serv"><a href="assets/pdf/MIDL_V2a.pdf" class="btn btn-primary">Learn More</a></div>
</div>
</div>
</div>
</div>
<!-- End of 1st Service -->
<!-- 2nd Service -->
<div class="card mb-3 cc padx" style="max-width: 100%; margin-top: 25px">
<div class="row no-gutters">
<div class="col-md-8">
<div class="card-body ">
<h5 class="card-title dicom-title">AI Enabled Solutions to Problems</h5>
<p class="card-text">Apart from its products, MID Lab also provides its own AI assisted enabled solutions to problems. Hence, working on emerging areas like Radio-genomics for timely cancer prediction and prognosis, histopathology, brain injury and lesion detection, AI in agriculture and report generation.</p>
</div>
</div>
<div class="col-md-4 wall pic c-serv">
<img src="./assets/img/Services/AI-G.gif" class="img-serv-2 img-serv"
alt="MIDL-NCAI-Services-Dicom_viewer">
<div class="overlay-serv">
<div class="text-serv"><a href="assets/pdf/MIDL_V2a.pdf" class="btn btn-primary">Learn More</a></div>
</div>
</div>
</div>
</div>
<!-- End of 2nd Service -->
<!-- 3rd Service -->
<div class="card mb-3 cc padx" style="max-width: 100%; margin-top: 25px">
<div class="row no-gutters">
<div class="col-md-8">
<div class="card-body ">
<h5 class="card-title dicom-title"> Hi-Performance Computing Services</h5>
<p class="card-text">MID Lab provides its own dedicated High-Performance Computing (HPC) services that lets users process large amounts of data quicker than a standard computer, leading to faster insights and giving organizations the ability to stay ahead of the competition. HPC solutions can be one million times more powerful than the fastest laptop. Hence, HPC empowers superior performance, allowing companies to do more while spending less.</p>
<!-- <p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p> -->
<!-- <a href="http://localhost:3000/u-dicom-viewer" target="_blank"> <button class="btn btn-primary">Demo</button></a> -->
</div>
</div>
<div class="col-md-4 wall pic c-serv">
<img src="./assets/img/Services/ai-healthcare.gif" class="img-fluid img-serv"
alt="MIDL-NCAI-Services-Dicom_viewer">
<div class="overlay-serv">
<div class="text-serv"><a href="assets/pdf/MIDL_V2a.pdf" class="btn btn-primary">Learn More</a></div>
</div>
</div>
</div>
</div>
<!-- End of 3rd Service -->
<!-- 4th Service -->
<!-- <div class="card mb-3 cc padx" style="max-width: 100%; margin-top: 25px">
<div class="row no-gutters">
<div class="col-md-8">
<div class="card-body ">
<h5 class="card-title dicom-title">Workshops</h5>
<p class="card-text">MIDL also conducted multiple workshops.</p>
<p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p>
<a href="http://localhost:3000/u-dicom-viewer" target="_blank"> <button class="btn btn-primary">Demo</button></a>
</div>
</div>
<div class="col-md-4 wall pic c-serv">
<img src="./assets/img/Services/dicom-viewer-midl-ncai.png" class="img-fluid img-serv"
alt="MIDL-NCAI-Services-Dicom_viewer">
<div class="overlay-serv">
<div class="text-serv"><a class="btn btn-primary">Learn More</a></div>
</div>
</div>
</div>
</div> -->
<!-- End of 4th Service -->
<!-- 5th Service -->
<div class="card mb-3 cc padx" style="max-width: 100%; margin-top: 25px">
<div class="row no-gutters">
<div class="col-md-8">
<div class="card-body ">
<h5 class="card-title dicom-title">Trainings and Workshops</h5>
<p class="card-text">MID lab conducted several trainings and Workshops for students and researchers to bring quality human resources especially,
in AI. </p>
<!-- <p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p> -->
<!-- <a href="http://localhost:3000/u-dicom-viewer" target="_blank"> <button class="btn btn-primary">Demo</button></a> -->
</div>
</div>
<div class="col-md-4 wall pic c-serv">
<img src="./assets/img/Services/dicom-viewer-midl-ncai.png" class="img-fluid img-serv"
alt="MIDL-NCAI-Services-Dicom_viewer">
<div class="overlay-serv">
<div class="text-serv"><button data-bs-toggle="modal" data-bs-target="#exampleModal" class="btn btn-primary">Learn More</button></div>
</div>
</div>
</div>
</div>
<!-- End of 5th Service -->
<!-- Button trigger modal -->
<!-- Modal for Trainings -->
<div class="modal fade" id="exampleModal" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog modal-xl">
<div class="modal-content" style="background: rgb(0,0,0,0.8);">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">Trainings and Workshops</h5>
<button style="background-color: #fff;" type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<!-- ======= Modal Gallery Section ======= -->
<div id="gallery" class="gallery">
<div class="container">
<!-- <div class="section-title">
<h2>Gallery</h2>
<p>Memories of visits to multiple organizations and startups for the presentation of our services. Consequently, received many gratitudes of different individuals and organizations.</p>
</div>
</div> -->
<div class="container-fluid">
<div class="row g-0">
<div class="col-lg-3 col-md-4">
<div class="gallery-item">
<a href="assets/img/gallery/gallery-1.jpg" class="galelry-lightbox">
<img src="assets/img/gallery/gallery-1.jpg" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="gallery-item">
<a href="assets/img/gallery/gallery-2.jpg" class="galelry-lightbox">
<img src="assets/img/gallery/gallery-2.jpg" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="gallery-item">
<a href="assets/img/gallery/gallery-3.jpg" class="galelry-lightbox">
<img src="assets/img/gallery/gallery-3.jpg" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="gallery-item">
<a href="assets/img/gallery/gallery-4.jpg" class="galelry-lightbox">
<img src="assets/img/gallery/gallery-4.jpg" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="gallery-item">
<a href="assets/img/gallery/gallery-5.jpg" class="galelry-lightbox">
<img src="assets/img/gallery/gallery-5.jpg" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="gallery-item">
<a href="assets/img/gallery/gallery-6.jpg" class="galelry-lightbox">
<img src="assets/img/gallery/gallery-6.jpg" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="gallery-item">
<a href="assets/img/gallery/gallery-7.jpg" class="galelry-lightbox">
<img src="assets/img/gallery/gallery-7.jpg" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="gallery-item">
<a href="assets/img/gallery/gallery-8.jpg" class="galelry-lightbox">
<img src="assets/img/gallery/gallery-8.jpg" alt="" class="img-fluid">
</a>
</div>
</div>
</div>
</div>
</div><!-- End Gallery Section -->
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
<!-- <button type="button" class="btn btn-primary">Save changes</button> -->
</div>
</div>
</div>
</div>
<!-- 1st Service -->
<!-- <div class="card mb-3 cc services" style="min-width: 50%;">
<div class="row no-gutters">
<div class="col-md-8">
<div class="card-body ">
<h5 class="card-title dicom-title serv"><i class="fa-solid fa-arrow-right"></i> AI Powered Health Care Solutions</h5>
</div>
</div>
</div>
</div>