-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·1142 lines (1061 loc) · 41.9 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>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta charset='UTF-8'><meta name='viewport' content='width=device-width initial-scale=1'>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>掌中物语——基于掌纹检测的健康建议系统</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Free HTML5 Template by FREEHTML5.CO" />
<meta name="keywords" content="free html5, free template, free bootstrap, html5, css3, mobile first, responsive" />
<meta name="author" content="FREEHTML5.CO" />
<!-- Facebook and Twitter integration -->
<meta property="og:title" content=""/>
<meta property="og:image" content=""/>
<meta property="og:url" content=""/>
<meta property="og:site_name" content=""/>
<meta property="og:description" content=""/>
<meta name="twitter:title" content="" />
<meta name="twitter:image" content="" />
<meta name="twitter:url" content="" />
<meta name="twitter:card" content="" />
<!-- Place favicon.ico and apple-touch-icon.png in the root directory -->
<link rel="shortcut icon" href="favicon.ico">
<link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,300,600,400italic,700' rel='stylesheet' type='text/css'>
<!-- Animate.css -->
<link rel="stylesheet" href="css/animate.css">
<!-- Icomoon Icon Fonts-->
<link rel="stylesheet" href="css/icomoon.css">
<!-- Simple Line Icons -->
<link rel="stylesheet" href="css/simple-line-icons.css">
<!-- Owl Carousel -->
<link rel="stylesheet" href="css/owl.carousel.min.css">
<link rel="stylesheet" href="css/owl.theme.default.min.css">
<!-- Bootstrap -->
<link rel="stylesheet" href="css/bootstrap.css">
<!--
Default Theme Style
You can change the style.css (default color purple) to one of these styles
1. pink.css
2. blue.css
3. turquoise.css
4. orange.css
5. lightblue.css
6. brown.css
7. green.css
-->
<link rel="stylesheet" href="css/style.css">
<!-- Styleswitcher ( This style is for demo purposes only, you may delete this anytime. ) -->
<link rel="stylesheet" id="theme-switch" href="css/style.css">
<!-- End demo purposes only -->
<script type="text/javascript">
function cc(obj){
var objdisplay = document.getElementById(obj).style.display;
if(objdisplay =="none"){
document.getElementById(obj).style.display ="block";
document.getElementById("cx").innerHTML="查看全文>>";
document.getElementById("cx").innerHTML="折叠起来>>";
return;
}
else{
document.getElementById(obj).style.display ="none";
document.getElementById("cx").innerHTML="折叠起来>>";
document.getElementById("cx").innerHTML="查看全文>>";
}
}
</script>
<style>
/* For Demo Purposes Only ( You can delete this anytime :-) */
#colour-variations {
padding: 10px;
-webkit-transition: 0.5s;
-o-transition: 0.5s;
transition: 0.5s;
width: 140px;
position: fixed;
left: 0;
top: 100px;
z-index: 999999;
background: #fff;
/*border-radius: 4px;*/
border-top-right-radius: 4px;
border-bottom-right-radius: 4px;
-webkit-box-shadow: 0 0 9px 0 rgba(0,0,0,.1);
-moz-box-shadow: 0 0 9px 0 rgba(0,0,0,.1);
-ms-box-shadow: 0 0 9px 0 rgba(0,0,0,.1);
box-shadow: 0 0 9px 0 rgba(0,0,0,.1);
}
#colour-variations.sleep {
margin-left: -140px;
}
#colour-variations h3 {
text-align: center;;
font-size: 11px;
letter-spacing: 2px;
text-transform: uppercase;
color: #777;
margin: 0 0 10px 0;
padding: 0;;
}
#colour-variations ul,
#colour-variations ul li {
padding: 0;
margin: 0;
}
#colour-variations li {
list-style: none;
display: inline;
}
#colour-variations li a {
width: 20px;
height: 20px;
position: relative;
float: left;
margin: 5px;
}
#colour-variations li a[data-theme="style"] {
background: #6173f4;
}
#colour-variations li a[data-theme="pink"] {
background: #f64662;
}
#colour-variations li a[data-theme="blue"] {
background: #2185d5;
}
#colour-variations li a[data-theme="turquoise"] {
background: #00b8a9;
}
#colour-variations li a[data-theme="orange"] {
background: #ff6600;
}
#colour-variations li a[data-theme="lightblue"] {
background: #5585b5;
}
#colour-variations li a[data-theme="brown"] {
background: #a03232;
}
#colour-variations li a[data-theme="green"] {
background: #65d269;
}
.option-toggle {
position: absolute;
right: 0;
top: 0;
margin-top: 5px;
margin-right: -30px;
width: 30px;
height: 30px;
background: #f64662;
text-align: center;
border-top-right-radius: 4px;
border-bottom-right-radius: 4px;
color: #fff;
cursor: pointer;
-webkit-box-shadow: 0 0 9px 0 rgba(0,0,0,.1);
-moz-box-shadow: 0 0 9px 0 rgba(0,0,0,.1);
-ms-box-shadow: 0 0 9px 0 rgba(0,0,0,.1);
box-shadow: 0 0 9px 0 rgba(0,0,0,.1);
}
.option-toggle i {
top: 2px;
position: relative;
}
.option-toggle:hover, .option-toggle:focus, .option-toggle:active {
color: #fff;
text-decoration: none;
outline: none;
}
</style>
<!-- End demo purposes only -->
<!-- Modernizr JS -->
<script src="js/modernizr-2.6.2.min.js"></script>
<!-- FOR IE9 below -->
<!--[if lt IE 9]>
<script src="js/respond.min.js"></script>
<![endif]-->
</head>
<body style="height:100%; margin:0">
<header role="banner" id="fh5co-header">
<div class="container">
<!-- <div class="row"> -->
<nav class="navbar navbar-default">
<div class="navbar-header">
<!-- Mobile Toggle Menu Button -->
<a href="#" class="js-fh5co-nav-toggle fh5co-nav-toggle" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar"><i></i></a>
<a class="navbar-brand" href="index.html">掌中物语</a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav navbar-right">
<li class="active"><a href="#" data-nav-section="begin"><span>Begining</span></a></li>
<li><a href="#" data-nav-section="intro"><span>项目概述</span></a></li>
<li><a href="#" data-nav-section="ideas"><span>想法来源</span></a></li>
<li><a href="#" data-nav-section="programming"><span>程序开发</span></a></li>
<li><a href="#" data-nav-section="Azure"><span>我们与Azure</span></a></li>
<li><a href="#" data-nav-section="market"><span>市场调研</span></a></li>
<li><a href="#" data-nav-section="team"><span>关于我们</span></a></li>
</ul>
</div>
</nav>
<!-- </div> -->
</div>
</header>
<div id="slider" data-section="begin">
<div class="owl-carousel owl-carousel-fullwidth">
<!-- You may change the background color here. -->
<div class="item" style="background: #352f44;">
<div class="container" style="position: relative;">
<div class="row">
<div class="col-md-7 col-sm-7">
<div class="fh5co-owl-text-wrap">
<div class="fh5co-owl-text">
<h1 class="fh5co-lead to-animate">经验科学</h1>
<h2 class="fh5co-sub-lead to-animate">掌纹辅助诊断是皮纹学的应用之一。通过前人反复细致的观察与验证,逐步探索出掌纹与人体健康关系的一些规律。在现代临床医学中成为医生辨别多种疾病的重要辅助诊断手段之一。</h2>
<p class="to-animate-2"><a href="#" data-nav-section="ideas" class="btn btn-primary btn-lg">查看详情</a></p>
</div>
</div>
</div>
<div class="col-md-4 col-md-push-1 col-sm-4 col-sm-push-1 iphone-image">
<div class="iphone to-animate-2"><img src="images/iphone-2.png" alt="error"></div>
</div>
</div>
</div>
</div>
<!-- You may change the background color here. -->
<div class="item" style="background: #38569f;">
<div class="container" style="position: relative;">
<div class="row">
<div class="col-md-7 col-md-push-1 col-md-push-5 col-sm-7 col-sm-push-1 col-sm-push-5">
<div class="fh5co-owl-text-wrap">
<div class="fh5co-owl-text">
<h1 class="fh5co-lead to-animate">神经网络</h1>
<h2 class="fh5co-sub-lead to-animate" style="font-size=18px">运用神经网络实现掌纹健康建议系统,可以在一定程度上解决传统的符号知识处理方法中存 在的知识获取的瓶颈、学习能力差、知识库管理等困难。由于它所使用的专家知识是从样本学习中获取的。因此在一定程度上也克服了一般医学专家知识不完备的缺陷,从而提高了系统的可靠性和准确性。</h2>
<p class="to-animate-2"><a href="#"data-nav-section="programming" class="btn btn-primary btn-lg">查看详情</a></p>
</div>
</div>
</div>
<div class="col-md-4 col-md-pull-7 col-sm-4 col-sm-pull-7 iphone-image">
<div class="iphone to-animate-2"><img src="images/iphone-1.png" alt="error"></div>
</div>
</div>
</div>
</div>
<div class="item" style="background-image:url(images/slide_5.jpg)">
<div class="overlay"></div>
<div class="container" style="position: relative;">
<div class="row">
<div class="col-md-8 col-md-offset-2 text-center">
<div class="fh5co-owl-text-wrap">
<div class="fh5co-owl-text">
<h1 class="fh5co-lead to-animate">Azure betters the future</h1>
<h2 class="fh5co-sub-lead to-animate">感谢Azure云平台提供服务</h2>
<p class="to-animate-2"><a href="https://azure.microsoft.com/en-gb" target="_blank" class="btn btn-primary btn-lg">访问Azure</a></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="fh5co-about-us" data-section="ideas">
<div class="container">
<div class="row row-bottom-padded-lg" id="about-us">
<div class="col-md-12 section-heading text-center">
<h2 class="to-animate">想法来源</h2>
<div class="row"></div>
<div class="col-md-12 text-center to-animate " style="color: #666; width: 52%; left: 24%;">
<p>慢性病本不可怕,可我们总是在它们发作的厉害的时候才会想起去医院检查,错过了治疗良机。根据中医手诊理论,在我们感觉到病情之前,身体已经传递出了一些信号,比如掌纹。 </p>
</div>
</div>
<div class="col-md-8 to-animate">
<img src="images/img_1.jpg" class="img-responsive img-rounded" alt="Free HTML5 Template">
</div>
<div class="col-md-4">
<h2 class="to-animate text-center">理论依据</h2>
<p>中医学以整体观为核心,“内之应,皆有表里,其皆然也“,当人体身体状况发生变化,在某些情况下会反应掌纹之中。同样的在西方皮纹学的研究发展中,越来越多的证据表明,皮纹的形式与某些主要的遗传基因及机体某些紊乱有着密切联系。现代解剖学已向人们揭示:在人体大脑皮质所占区域比例最大的是人体的手掌知觉神经和运动神经。手掌与大脑联系密切,因而,内脏发生某种异常变化时,这种信息能较快的反应在手掌。</p>
<p>据文献记载,我国在秦汉时期就已经指纹用于鉴定,在唐宋时代指纹和掌纹已经广泛应用于婚约休书、狱词供状、借贷契约、买卖文凭、军队名籍等方面。因此, 世界著名皮纹史学家 Heindl 指出:“中国是世界上应用指纹的发源地”。英国皮 纹学家 Penrose 亦说:“早期的皮纹样本能从中国古代公文中找到”。但真正把皮纹学系统化、科学化的是欧洲国家。17世纪,随着自然科学的发展,尤其是人体解剖学、组织学和生理学的出现为皮纹 学的发展奠定了科学的理论基础,开启了近、现代皮纹学时代。
</p>
</div>
<div class="row">
<div class=" col-md-12 to-animate" id="team">
<p>皮纹学在医学疾病诊断中具有重要指导意义,国内外学者对此进行了大量的研究予以证实。目前皮纹学的研究主要集中于掌纹,并且比较详细,半个多世纪来的学术探讨,已经使得掌纹研究从基础形态走向了临床实践。经查阅大量文献资料,在这里展示个别遗传疾病和慢性疾病患者掌纹异变与正常人掌纹异变的对比。</p>
</div>
</div>
<div class="row" name="chart" id="team" >
<div class=" to-animate" id="pic" style="left: 2%; width:100%; height: 450%;"> </div> </div>
<p class="col-md-12 to-animate text-center" style="color:#666;">病理纹在某些慢性病或遗传病中的奇异性</p>
<script type="text/javascript" src="http://echarts.baidu.com/gallery/vendors/echarts/echarts.min.js"></script>
<script type="text/javascript" src="http://echarts.baidu.com/gallery/vendors/echarts-gl/echarts-gl.min.js"></script>
<script type="text/javascript" src="http://echarts.baidu.com/gallery/vendors/echarts-stat/ecStat.min.js"></script>
<script type="text/javascript" src="http://echarts.baidu.com/gallery/vendors/echarts/extension/dataTool.min.js"></script>
<script type="text/javascript" src="http://echarts.baidu.com/gallery/vendors/echarts/map/js/china.js"></script>
<script type="text/javascript" src="http://echarts.baidu.com/gallery/vendors/echarts/map/js/world.js"></script>
<script type="text/javascript" src="http://api.map.baidu.com/api?v=2.0&ak=ZUONbpqGBsYGXNIYHicvbAbM"></script>
<script type="text/javascript" src="http://echarts.baidu.com/gallery/vendors/echarts/extension/bmap.min.js"></script>
<script type="text/javascript" src="http://echarts.baidu.com/gallery/vendors/simplex.js"></script>
<script type="text/javascript">
var dom = document.getElementById("pic");
var myChart = echarts.init(dom);
var app = {};
option = null;
app.title = '病理纹在某种疾病中的奇异性';
option = {
tooltip : {
trigger: 'axis',
axisPointer : { // 坐标轴指示器,坐标轴触发有效
type : 'shadow' // 默认为直线,可选为:'line' | 'shadow'
}
},
legend: {
data:['正常', '患病']
},
grid: {
left: '3%',
right: '4%',
bottom: '3%',
containLabel: true
},
xAxis : [
{
type : 'value'
}
],
yAxis : [
{
type : 'category',
axisTick : {show: false},
data : ['170例食道癌女性患者\n\nI4花纹异常',
'先天性唇愕裂患者\n\n悉尼手',
'智力低下儿童\n\nATD角度大于41',
'食管责门癌患\n\n鱼际花纹',
'800例精神分裂\n\n皱纹掌',
'129例冠心病\n\nATD角度大于41']
}
],
series : [
{
name:'正常',
type:'bar',
label: {
normal: {
show: true,
position: 'inside'
}
},
data:[65.8, 1.0, 13.95, 12, 10, 10.08]
},
{
name:'患病',
type:'bar',
stack: '总量',
label: {
normal: {
show: true
}
},
data:[80.5, 7.3, 55.81, 35.9, 35.5, 22.48]
},
]
};
;
if (option && typeof option === "object") {
myChart.setOption(option, true);
}
</script>
<div lass="row">
<div lass="col-md-8 to-animate" id="note1" style="display: none; font-size: 14px;">
<p>《170例食道癌皮纹特征》生物学教研室 胡玉莲 孙素馨 张业珠 南京医学院报第3期
</p>
<p>《43例弱智儿童皮纹观察初步报告》 罗源县卫生防疫站 林 旭 福建医药杂志1996年第18卷第3期</p>
<p>《食管癌和责门癌病人的皮纹学研究》河南省肿瘤研完所 祁岩超 祝斐明 买 玲 王 艳 笃 铭 实用肿瘤杂志1990年 第5卷 第2期</p>
<p>《精神分裂症800例掌纹检查报告》哈尔滨市第一专科医院 于彦文 吴铮碗 魏树森</p>
<p>《冠心病患者手部皮纹学特征分析》宋晓霞 余 冰 彭 亮 霍正浩 党 洁 陆 宏 宁夏医科大学学报 第 36 卷 10 期 2014 年 10 月</p>
<p>《先天性唇愕裂患者的手纹分析》 佳木斯医学院 附属口腔医院 祁佐良 宋宪民 李二格 富建明带</p>
</div>
</div>
<div lass="row">
<p class="col-md-12 to-animate text-center" ><a class="btn" rel="external nofollow" onclick="javascript:cc('note1');return false;">查看/收起 数据来源</a></p>
</div>
<div lass="row">
<div class="col-md-12 to-animate text-center" >
<p style="color: #777; font-size: 24px"> <b>基于上述分析,我们有理由相信掌纹能够反映出某些人体内在异常</b></p>
<p style="color: #777; font-size: 24px"> <b>
于此同时,我们希望能够通过 AI 和 Azure 搭建基于掌纹信息提取的健康建议系统</b></p>
<p style="color: #777; font-size: 24px"> <b>让更多的潜在患者提前发现危险信号,及时就医检查,预防或医治疾病</b>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="fh5co-our-services" data-section="programming">
<div class="container">
<div class="row row-bottom-padded-sm">
<div class="col-md-12 section-heading text-center">
<h2 class="to-animate">程序开发</h2>
<div class="row">
<div class="col-md-8 col-md-offset-2 to-animate">
<h3>掌中物语——基于掌纹病理特征的健康建议系统的开发主要集中在两个方面:一是利用图象处理与模式识别技术对掌纹图象进行分析和特征提取;二是根据掌纹诊病的专家知识,将标注过的掌纹病理特征训练神经网络。用户只需上传自己手掌的照片便可获取相应的健康建议。同时我们允许用户反馈每条建议是否准确,再结合用户返回的掌纹数据对现有神经网络模型进行修正,以提升神经网络模型的准确性。</h3>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="box to-animate">
<div class="icon colored-1"><span><i class="icon-mustache"></i></span></div>
<h3>专家知识库</h3>
<p> 采用sqlite数据库存取掌纹信息和疾病标注,录入王晨霞,赵理明等老师的文献资料。作为神经网络训练的样本。</p>
</div>
<div class="box to-animate">
<div class="icon colored-4"><span><i class="icon-heart"></i></span></div>
<h3>UI设计</h3>
<p>增强软件页面操作的明确性,加强界面的简约性,功能简化,方便各个年龄阶段的人检测自己潜在的慢性疾病或遗传疾病。</p>
</div>
</div>
<div class="col-md-4">
<div class="box to-animate">
<div class="icon colored-2"><span><i class="icon-graph"></i></span></div>
<h3>神经网络</h3>
<p>通过神经网络,随着样本量的增加,预测系统会越来越完善。</p>
</div>
<div class="box to-animate">
<div class="icon colored-5"><span><i class="icon-rocket"></i></span></div>
<h3>易推广——微信小程序</h3>
<p>微信小程序是一种无须用户对应用进行下载安装操作即可直接使用的全新应用,它 实现了应用“触手可及”的梦想,体现了“用完即走”的理念。</p>
</div>
</div>
<div class="col-md-4">
<div class="box to-animate">
<div class="icon colored-3"><span><i class="icon-eye"></i></span></div>
<h3>总体架构设计</h3>
<p>C/S结构:所有图像处理,结果计算均部署在Azure之上。通过网络返回最终结果到客户端。<a herf="#tec_">查看详情</a></p>
</div>
<div class="box to-animate">
<div class="icon colored-6"><span><i class="icon-user"></i></span></div>
<h3>开源</h3>
<p>鼓励提交新的特征识别方法以及诊断报告,同时欢迎将我们的代码移为它用。 </p>
</div>
</div>
<div class="row">
<div class="col-md-12 to-animate" >
<style>
html {
font-size: 16px;
}
body {
font-family: "Open Sans","Clear Sans","Helvetica Neue",Helvetica,Arial,sans-serif;
color: rgb(51, 51, 51);
line-height: 1.6;
}
#write{
max-width: 860px;
margin: 0 auto;
padding: 20px 30px 40px 30px;
padding-top: 20px;
padding-bottom: 100px;
}
#write > ul:first-child,
#write > ol:first-child{
margin-top: 30px;
}
body > *:first-child {
margin-top: 0 !important;
}
body > *:last-child {
margin-bottom: 0 !important;
}
a {
color: #4183C4;
}
h1,
h2,
h3,
h4,
h5,
h6 {
position: relative;
margin-top: 1rem;
margin-bottom: 1rem;
font-weight: bold;
line-height: 1.4;
cursor: text;
}
h1:hover a.anchor,
h2:hover a.anchor,
h3:hover a.anchor,
h4:hover a.anchor,
h5:hover a.anchor,
h6:hover a.anchor {
/*background: url("file:///Users/lynette/Library/Application%20Support/images/modules/styleguide/para.png") no-repeat 10px center;*/
text-decoration: none;
}
h1 tt,
h1 code {
font-size: inherit;
}
h2 tt,
h2 code {
font-size: inherit;
}
h3 tt,
h3 code {
font-size: inherit;
}
h4 tt,
h4 code {
font-size: inherit;
}
h5 tt,
h5 code {
font-size: inherit;
}
h6 tt,
h6 code {
font-size: inherit;
}
h1 {
padding-bottom: .3em;
font-size: 2.25em;
line-height: 1.2;
}
h2 {
padding-bottom: .3em;
font-size: 1.75em;
line-height: 1.225;
}
h3 {
font-size: 1.5em;
line-height: 1.43;
}
h4 {
font-size: 1.25em;
}
h5 {
font-size: 1em;
}
h6 {
font-size: 1em;
color: #777;
}
p,
blockquote,
ul,
ol,
dl,
table{
margin: 0.8em 0;
}
li>ol,
li>ul {
margin: 0 0;
}
hr {
height: 4px;
padding: 0;
margin: 16px 0;
background-color: #e7e7e7;
border: 0 none;
overflow: hidden;
box-sizing: content-box;
}
body > h2:first-child {
margin-top: 0;
padding-top: 0;
}
body > h1:first-child {
margin-top: 0;
padding-top: 0;
}
body > h1:first-child + h2 {
margin-top: 0;
padding-top: 0;
}
body > h3:first-child,
body > h4:first-child,
body > h5:first-child,
body > h6:first-child {
margin-top: 0;
padding-top: 0;
}
a:first-child h1,
a:first-child h2,
a:first-child h3,
a:first-child h4,
a:first-child h5,
a:first-child h6 {
margin-top: 0;
padding-top: 0;
}
h1 p,
h2 p,
h3 p,
h4 p,
h5 p,
h6 p {
margin-top: 0;
}
li p.first {
display: inline-block;
}
ul,
ol {
padding-left: 30px;
}
ul:first-child,
ol:first-child {
margin-top: 0;
}
ul:last-child,
ol:last-child {
margin-bottom: 0;
}
blockquote {
border-left: 4px solid #dddddd;
padding: 0 15px;
color: #777777;
}
blockquote blockquote {
padding-right: 0;
}
table {
padding: 0;
word-break: initial;
}
table tr {
border-top: 1px solid #cccccc;
margin: 0;
padding: 0;
}
table tr:nth-child(2n) {
background-color: #f8f8f8;
}
table tr th {
font-weight: bold;
border: 1px solid #cccccc;
border-bottom: 0;
text-align: left;
margin: 0;
padding: 6px 13px;
}
table tr td {
border: 1px solid #cccccc;
text-align: left;
margin: 0;
padding: 6px 13px;
}
table tr th:first-child,
table tr td:first-child {
margin-top: 0;
}
table tr th:last-child,
table tr td:last-child {
margin-bottom: 0;
}
.CodeMirror-gutters {
border-right: 1px solid #ddd;
}
.md-fences,
code,
tt {
border: 1px solid #ddd;
background-color: #f8f8f8;
border-radius: 3px;
padding: 0;
font-family: Consolas, "Liberation Mono", Courier, monospace;
padding: 2px 4px 0px 4px;
font-size: 0.9em;
}
.md-fences {
margin-bottom: 15px;
margin-top: 15px;
padding: 0.2em 1em;
padding-top: 8px;
padding-bottom: 6px;
}
.task-list{
padding-left: 0;
}
.task-list-item {
padding-left:32px;
}
.task-list-item input {
top: 3px;
left: 8px;
}
@media screen and (min-width: 914px) {
/*body {
width: 854px;
margin: 0 auto;
}*/
}
@media print {
html {
font-size: 13px;
}
table,
pre {
page-break-inside: avoid;
}
pre {
word-wrap: break-word;
}
}
.md-fences {
background-color: #f8f8f8;
}
#write pre.md-meta-block {
padding: 1rem;
font-size: 85%;
line-height: 1.45;
background-color: #f7f7f7;
border: 0;
border-radius: 3px;
color: #777777;
margin-top: 0 !important;
}
.mathjax-block>.code-tooltip {
bottom: .375rem;
}
#write>h3.md-focus:before{
left: -1.5625rem;
top: .375rem;
}
#write>h4.md-focus:before{
left: -1.5625rem;
top: .285714286rem;
}
#write>h5.md-focus:before{
left: -1.5625rem;
top: .285714286rem;
}
#write>h6.md-focus:before{
left: -1.5625rem;
top: .285714286rem;
}
.md-image>.md-meta {
border: 1px solid #ddd;
border-radius: 3px;
font-family: Consolas, "Liberation Mono", Courier, monospace;
padding: 2px 4px 0px 4px;
font-size: 0.9em;
color: inherit;
}
.md-tag{
color: inherit;
}
.md-toc {
margin-top:20px;
padding-bottom:20px;
}
.sidebar-tabs {
border-bottom: none;
}
#typora-quick-open {
border: 1px solid #ddd;
background-color: #f8f8f8;
}
#typora-quick-open-item {
background-color: #FAFAFA;
border-color: #FEFEFE #e5e5e5 #e5e5e5 #eee;
border-style: solid;
border-width: 1px;
}
#md-notification:before {
top: 10px;
}
/** focus mode */
.on-focus-mode blockquote {
border-left-color: rgba(85, 85, 85, 0.12);
}
header, .context-menu, .megamenu-content, footer{
font-family: "Segoe UI", "Arial", sans-serif;
}
.file-node-content:hover .file-node-icon,
.file-node-content:hover .file-node-open-state{
visibility: visible;
}
.mac-seamless-mode #typora-sidebar {
background-color: #fafafa;
background-color: var(--side-bar-bg-color);
}
.md-lang {
color: #b4654d;
}
/* For demo purpose only */
</style>
<div class='typora-export' >
<div id='write' class = 'is-mac'><h2 name="tec_" id="tec_"><a name='header-n0' class='md-header-anchor '></a>总体技术架构</h2><p><div align="center">
<img src="readme_static/frame.jpg" width = "600" height = "400" alt="图片名称" align=center /> <br/>
</div> </p><h3><a name='header-n6' class='md-header-anchor '></a>Wechat</h3><p >我们在客户端上选择微信平台的小程序,因为它兼容性好且占用户资源少。 <br/>
小程序的实现上传图片给服务器,接受并显示服务器回传的诊断报告。 <br/>
小程序有一些高级的api可以调用,我们主要用了如下api</p><ul><li><strong>wx.chooseImage</strong> 用来选择图片<br/></li><li><strong>wx.uploadFile</strong> 用来上传图片<br/></li><li><strong>wx.previewImage</strong> 根据url来预览图片<br/></li></ul><h3><a name='header-n21' class='md-header-anchor '></a>云端</h3><p>我们采用Azure提供的CVM(Cloud Virtual Machine).系统版本是centos7.2。 <br/>
我们的网络服务采用的nginx+django.django完成所有的网络功能架构部署.由于wechat的安全需要,我们需要nginx开启https协议。 <br/>
我们的所有图片处理以python opencv为主,其提供了大量的操作工具。同时我们用pillow来生成报告 <br/></p><h4><a name='header-n26' class='md-header-anchor '></a>Region Of Interest</h4><p>这一环节接受wechat端发送的手掌图片,将感兴趣的图片区域进行处理送到下一环节。流程图如下:<br/>
<div align="center">
<img src="readme_static/roi.jpg" width = "600" height = "500" alt="图片名称" align=center />
</div>
具体操作步骤包括: </p><blockquote><p><strong>FindContour--手掌轮廓检测。</strong> 手掌能够和背景分离的依据是他们在YCrCb空间中差距比较大,所以将图片转为YCrCb后设置阈值既可分离。将其二值化后我们用opencv提供的<code>cv2.findcontour</code>函数来寻找轮廓, 最大的轮廓就应该是手掌的轮廓。</p><p><strong>FindAnchor--定锚。</strong> 为了下一步的区域划分,必须要给出几个参考点。我们参考点选择的是4个指沟的位置。先用<code>cv2.convexHull</code>函数求得手掌的凸包, 再用<code>cv2.convexityDefects</code>函数去寻找轮廓中和凸包距离的所有极大值点。而我们观察到人手掌的4个指沟恰好是距离凸包最远的4个极值点,所以经过排序后就得到了4个指沟。为了更加精确的划分区域,我们通过寻找突变斜率来寻找指沟的左下角和有下角,这样一共就有8个参考点。</p><p><strong>DivideRegion--区域划分。</strong> 根据参考点的位置就可以划分区域。目的是一个区域尽可能只包含一条特征掌纹。 <br/></p></blockquote><h4><a name='header-n41' class='md-header-anchor '></a>Feature Extract</h4><p>这一环节接收多个区域图片,对每一个区域进行特征提取,判断特征是否存在,返回一个{特征名:True/False}的字典, 为下环节的生成报告做准备。下面流程图以7线为例: <br/>
<div align="center"><img src="readme_static/feature.jpg" width = "600" height = "500" alt="图片名称" align=center /></div><br/>
具体操作步骤包括: <br/></p><blockquote><p><strong>Blur&Threshold--通过模糊和二值化来预处理。</strong> 经过多次实验,我们最终是通过<code>cv2.blur</code>函数进行<code>kernel=1</code>的模糊, 通过<code>cv2.threshold</code>函数进行<code>threshold=88</code>的二值化<br/></p></blockquote><blockquote><p><strong>FeatureExtract特征检测。</strong> 对于不同的线有不同的特征提取方法,这也是我们要做开源的原因。对于7线来说,我们先通过<code>cv2.canny(10,100)</code>函数来进行边缘检测,然后通过<code>cv2.HoughLines</code>函数通过统计投票的方式来检测直线。由于我们想要的是只是判断纵向线是否存在,所以在排名靠前的若干直线中,要筛选角度满足一定条件的。如果筛选出则认为7线存在。然后以python字典的方式输出结果给下一环节。</p></blockquote><h4><a name='header-n52' class='md-header-anchor '></a>Generate Report</h4><p>这一环节汇总上一环节给出的字典,基于已有的数据库和神经网络,将已存在的特征匹配的数据内容打印成报告。同时将原图像与处理后的roi部分拼接起来供用户查阅。 <br/></p><p>效果图如下所示 <br/>
<div align="center">
<img src="readme_static/report.jpeg" width = "500" height = "1500" alt="图片名称" align=center /> <br/>
</div></p><h4><a name='header-n61' class='md-header-anchor '></a>Database&Neural Network</h4><p>数据库中存放的数据来自于根据手诊书籍或者论文。神经网络中的数据来自于用户提供的数据与标签。 <br/>
数据库选用轻量级的sqlite <br/>
我们提供两种模式,大众模式和专家模式。大众模式下人们只能够查看诊断结果不能够对神经网络做出修改,专家模式下用户可以提供数据与标签用于数据训练。 <br/></p><p> </p></div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="fh5co-features" data-section="Azure">
<div class="container">
<div class="row">
<div class="col-md-12 section-heading text-center">
<h2 class="single-animate animate-features-1">我们与Azure</h2>
<div class="row">
<div class="col-md-8 col-md-offset-2 single-animate animate-features-2">
<h3>Azure 提供</h3>
</div>
</div>
</div>
</div>
<div class="row row-bottom-padded-sm">
<div class="col-md-4 col-sm-6 col-xs-6 col-xxs-12 fh5co-service to-animate">
<div class="fh5co-icon"><i class="icon-present"></i></div>
<div class="fh5co-desc">
<h3>CVM</h3>
<p>我们的服务是架设在azure的linuxCVM中,完成服务器搭建和数据处理模块 </p>
</div>
</div>
<div class="col-md-4 col-sm-6 col-xs-6 col-xxs-12 fh5co-service to-animate">
<div class="fh5co-icon"><i class="icon-eye"></i></div>
<div class="fh5co-desc">
<h3>负载均衡</h3>
<p>当访问量大的时候,负载均衡能够帮我们提高效率 </p>
</div>
</div>
<div class="clearfix visible-sm-block visible-xs-block"></div>
<div class="col-md-4 col-sm-6 col-xs-6 col-xxs-12 fh5co-service to-animate">
<div class="fh5co-icon"><i class="icon-crop"></i></div>
<div class="fh5co-desc">
<h3>ICP 备案</h3>
<p>由于我们的客户端基于微信,我们必须适用备过案的域名 </p>
</div>
</div>
<div class="col-md-4 col-sm-6 col-xs-6 col-xxs-12 fh5co-service to-animate">
<div class="fh5co-icon"><i class="icon-speedometer"></i></div>
<div class="fh5co-desc">
<h3>数据库</h3>
<p>Azure 在数据库的支持上为我们的开发带来了便利 </p>
</div>
</div>
<div class="clearfix visible-sm-block visible-xs-block"></div>
<div class="col-md-4 col-sm-6 col-xs-6 col-xxs-12 fh5co-service to-animate">
<div class="fh5co-icon"><i class="icon-heart"></i></div>
<div class="fh5co-desc">
<h3> 计算机视觉 API</h3>
<p>用了图像中提取文字的API </p>
</div>
</div>
<div class="col-md-4 col-sm-6 col-xs-6 col-xxs-12 fh5co-service to-animate">
<div class="fh5co-icon"><i class="icon-umbrella"></i></div>
<div class="fh5co-desc">
<h3>流分析</h3>
<p>流分析让我们更好的掌握用户的行为 </p>
</div>
</div>
<div class="clearfix visible-sm-block visible-xs-block"></div>
</div>
</div>
</div>
<div id="fh5co-pricing" data-section="market">
<div class="container">
<div class="row">
<div class="col-md-12 section-heading text-center">
<h2 class="single-animate animate-pricing-1">市场调查</h2>
<div class="row">
<div class="col-md-8 col-md-offset-2 subtext single-animate animate-pricing-2">
<h3>掌纹诊疗仍受限于传统人工看诊,有一般医学专家知识不完备的缺陷</h3>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-3 col-sm-6">
<div class="price-box to-animate">
<h2 class="pricing-plan">健康筛查机器人</h2>
<div class="price"><sup class="currency">$</sup>16,000<small>/台</small></div>
<p>通过测量脉搏结合手掌光电信息来自动诊断</p>
<hr>
<ul class="pricing-info">
<li>北京康加公司</li>
<li>3$/次,自动发送健康报告到微信</li>
<li>北京市五道口圣熙八号顶楼有一个</li>
<li>诊断一次2分钟</li>
<li>顾客门说诊断结果挺准的</li>
</ul>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="price-box to-animate">
<h2 class="pricing-plan">掌纹采集仪器</h2>
<div class="price"><sup class="currency">$</sup>3,000<small>/台</small></div>
<p>经度比较高的掌纹扫描仪器</p>
<hr>
<ul class="pricing-info">
<li>北京北大高科指纹技术有限公司</li>
<li>精度高能够看到汗孔</li>
<li>价格太贵</li>
</ul>
</div>
</div>
<div class="clearfix visible-sm-block"></div>
<div class="col-md-3 col-sm-6 to-animate">
<div class="price-box popular">
<!-- <div class="popular-text">皮肤纹协助临床诊断市场空白</div>-->
<h2 class="pricing-plan">手诊专家</h2>
<div class="price"><sup class="currency">$</sup>??<small>/次</small></div>
<p>手诊专家一般有自己的诊所,也出自己的书籍</p>
<hr>
<ul class="pricing-info">
<li>王晨霞</li>
<li>赵明理</li>
<li>王大有</li>
<li>很多人愿意相信手诊专家,但是资源稀缺</li>
</ul>
</div>
</div>