forked from itb-sps/csl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest-cases.rdf
1378 lines (1378 loc) · 60.4 KB
/
test-cases.rdf
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
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:z="http://www.zotero.org/namespaces/export#"
xmlns:dcterms="http://purl.org/dc/terms/"
xmlns:prism="http://prismstandard.org/namespaces/1.2/basic/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:bib="http://purl.org/net/biblio#"
xmlns:foaf="http://xmlns.com/foaf/0.1/"
xmlns:vcard="http://nwalsh.com/rdf/vCard#"
xmlns:link="http://purl.org/rss/1.0/modules/link/">
<bib:Article rdf:about="#item_1244">
<z:itemType>magazineArticle</z:itemType>
<dcterms:isPartOf>
<bib:Periodical>
<prism:volume>5</prism:volume>
<dc:title>Majalah Kehutanan</dc:title>
</bib:Periodical>
</dcterms:isPartOf>
<bib:authors>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>Baker</foaf:surname>
<foaf:givenname>A. A.</foaf:givenname>
</foaf:Person>
</rdf:li>
<rdf:li>
<foaf:Person>
<foaf:surname>Sosro</foaf:surname>
<foaf:givenname>K.</foaf:givenname>
</foaf:Person>
</rdf:li>
<rdf:li>
<foaf:Person>
<foaf:surname>Suditomo</foaf:surname>
<foaf:givenname>B.</foaf:givenname>
</foaf:Person>
</rdf:li>
</rdf:Seq>
</bib:authors>
<bib:pages>23-25</bib:pages>
<dc:date>1998-05</dc:date>
<dc:description>Citation Key: Baker1998</dc:description>
<dc:title>Pembakaran hutan di Kalimantan</dc:title>
</bib:Article>
<rdf:Description rdf:about="#item_1250">
<z:itemType>conferencePaper</z:itemType>
<dcterms:isPartOf>
<bib:Journal>
<dc:title>Proceedings of the International Congress on Current Aspects of Quantum Chemistry</dc:title>
</bib:Journal>
</dcterms:isPartOf>
<dc:publisher>
<foaf:Organization>
<vcard:adr>
<vcard:Address>
<vcard:locality>London, U.K.</vcard:locality>
</vcard:Address>
</vcard:adr>
<foaf:name>Prentice Hall</foaf:name>
</foaf:Organization>
</dc:publisher>
<bib:authors>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>Stark</foaf:surname>
<foaf:givenname>H.</foaf:givenname>
</foaf:Person>
</rdf:li>
</rdf:Seq>
</bib:authors>
<bib:editors>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>Carbo</foaf:surname>
<foaf:givenname>R.</foaf:givenname>
</foaf:Person>
</rdf:li>
</rdf:Seq>
</bib:editors>
<bib:pages>24-36</bib:pages>
<dc:date>1998</dc:date>
<dc:description>Citation Key: stark1998dynamics</dc:description>
<dc:title>The dynamics of surface adsorption</dc:title>
</rdf:Description>
<bib:Article rdf:about="http://dx.doi.org/10.1016/j.optlaseng.2009.03.008">
<z:itemType>journalArticle</z:itemType>
<dcterms:isPartOf rdf:resource="urn:issn:01438166"/>
<bib:authors>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>Zhang</foaf:surname>
<foaf:givenname>Song</foaf:givenname>
</foaf:Person>
</rdf:li>
</rdf:Seq>
</bib:authors>
<dc:subject>
<z:AutomaticTag><rdf:value>3D scanning</rdf:value></z:AutomaticTag>
</dc:subject>
<dc:subject>
<z:AutomaticTag>
<rdf:value>3D shape measurement</rdf:value>
</z:AutomaticTag>
</dc:subject>
<dc:subject>
<z:AutomaticTag>
<rdf:value>Digital fringe projection</rdf:value>
</z:AutomaticTag>
</dc:subject>
<dc:subject>
<z:AutomaticTag><rdf:value>Fringe analysis</rdf:value></z:AutomaticTag>
</dc:subject>
<dc:subject>
<z:AutomaticTag>
<rdf:value>Optical metrology</rdf:value>
</z:AutomaticTag>
</dc:subject>
<dc:subject>
<z:AutomaticTag><rdf:value>Range scanning</rdf:value></z:AutomaticTag>
</dc:subject>
<dc:subject>
<z:AutomaticTag><rdf:value>Real time</rdf:value></z:AutomaticTag>
</dc:subject>
<dc:identifier>
<dcterms:URI>
<rdf:value>http://dx.doi.org/10.1016/j.optlaseng.2009.03.008</rdf:value>
</dcterms:URI>
</dc:identifier>
<bib:pages>149-158</bib:pages>
<dc:date>2010</dc:date>
<dc:description>PMID: 3
Publisher: Elsevier
Citation Key: Zhang2010
ISBN: 0143-8166</dc:description>
<dcterms:abstract>Over the past few years, we have been developing techniques for high-speed 3D shape measurement using digital fringe projection and phase-shifting techniques: various algorithms have been developed to improve the phase computation speed, parallel programming has been employed to further increase the processing speed, and advanced hardware technologies have been adopted to boost the speed of coordinate calculations and 3D geometry rendering. We have successfully achieved simultaneous 3D absolute shape acquisition, reconstruction, and display at a speed of 30 frames/s with 300 K points per frame. This paper presents the principles of the real-time 3D shape measurement techniques that we developed, summarizes the most recent progresses that have been made in this field, and discusses the challenges for advancing this technology further. ©2009 Elsevier Ltd. All rights reserved.</dcterms:abstract>
<dc:title>Recent progresses on real-time 3D shape measurement using digital fringe projection techniques</dc:title>
</bib:Article>
<bib:Journal rdf:about="urn:issn:01438166">
<prism:volume>48</prism:volume>
<prism:number>2</prism:number>
<dc:title>Optics and Lasers in Engineering</dc:title>
<dc:identifier>ISSN 01438166</dc:identifier>
<dc:identifier>DOI 10.1016/j.optlaseng.2009.03.008</dc:identifier>
</bib:Journal>
<bib:BookSection rdf:about="urn:isbn:978-953-307-061-2">
<z:itemType>bookSection</z:itemType>
<dcterms:isPartOf>
<bib:Book>
<dc:identifier>ISBN 978-953-307-061-2</dc:identifier>
<dc:title>Advances in Measurement Systems</dc:title>
</bib:Book>
</dcterms:isPartOf>
<dc:publisher>
<foaf:Organization>
<vcard:adr>
<vcard:Address>
<vcard:locality>London, U.K.</vcard:locality>
</vcard:Address>
</vcard:adr>
<foaf:name>IntechOpen</foaf:name>
</foaf:Organization>
</dc:publisher>
<bib:authors>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>Zhang</foaf:surname>
<foaf:givenname>Song</foaf:givenname>
</foaf:Person>
</rdf:li>
</rdf:Seq>
</bib:authors>
<bib:editors>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>Sharma</foaf:surname>
<foaf:givenname>Milind</foaf:givenname>
</foaf:Person>
</rdf:li>
</rdf:Seq>
</bib:editors>
<link:link rdf:resource="#item_1257"/>
<dc:subject>
<z:AutomaticTag><rdf:value>3D scanning</rdf:value></z:AutomaticTag>
</dc:subject>
<dc:subject>
<z:AutomaticTag>
<rdf:value>3D shape measurement</rdf:value>
</z:AutomaticTag>
</dc:subject>
<dc:subject>
<z:AutomaticTag>
<rdf:value>Digital fringe projection</rdf:value>
</z:AutomaticTag>
</dc:subject>
<dc:subject>
<z:AutomaticTag><rdf:value>Fringe analysis</rdf:value></z:AutomaticTag>
</dc:subject>
<dc:subject>
<z:AutomaticTag>
<rdf:value>Optical metrology</rdf:value>
</z:AutomaticTag>
</dc:subject>
<dc:subject>
<z:AutomaticTag><rdf:value>Range scanning</rdf:value></z:AutomaticTag>
</dc:subject>
<dc:subject>
<z:AutomaticTag><rdf:value>Real time</rdf:value></z:AutomaticTag>
</dc:subject>
<bib:pages>29-50</bib:pages>
<dc:date>2010-04-01</dc:date>
<dc:description>Citation Key: Zhang2010a
ISBN: 978-953-307-061-2</dc:description>
<dcterms:abstract>Over the past few years, we have been developing techniques for high-speed 3D shape measurement using digital fringe projection and phase-shifting techniques: various algorithms have been developed to improve the phase computation speed, parallel programming has been employed to further increase the processing speed, and advanced hardware technologies have been adopted to boost the speed of coordinate calculations and 3D geometry rendering. We have successfully achieved simultaneous 3D absolute shape acquisition, reconstruction, and display at a speed of 30 frames/s with 300 K points per frame. This paper presents the principles of the real-time 3D shape measurement techniques that we developed, summarizes the most recent progresses that have been made in this field, and discusses the challenges for advancing this technology further.</dcterms:abstract>
<dc:title>High-resolution, high-speed 3D dynamically deformable shape measurement using digital fringe projection techniques</dc:title>
</bib:BookSection>
<z:Attachment rdf:about="#item_1257">
<z:itemType>attachment</z:itemType>
<dc:identifier>
<dcterms:URI>
<rdf:value>http://cdn.intechopen.com/pdfs/9937.pdf%5Cnhttp://linkinghub.elsevier.com/retrieve/pii/S0143816609000529</rdf:value>
</dcterms:URI>
</dc:identifier>
<dc:title>PDF</dc:title>
<z:linkMode>3</z:linkMode>
<link:type>application/pdf</link:type>
</z:Attachment>
<bib:Article rdf:about="http://www.opticsinfobase.org/abstract.cfm?URI=ao-54-13-3834">
<z:itemType>journalArticle</z:itemType>
<dcterms:isPartOf rdf:resource="urn:issn:0003-6935"/>
<bib:authors>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>Zhang</foaf:surname>
<foaf:givenname>Song</foaf:givenname>
</foaf:Person>
</rdf:li>
</rdf:Seq>
</bib:authors>
<dc:identifier>
<dcterms:URI>
<rdf:value>http://www.opticsinfobase.org/abstract.cfm?URI=ao-54-13-3834</rdf:value>
</dcterms:URI>
</dc:identifier>
<bib:pages>3834</bib:pages>
<dc:date>2015</dc:date>
<dc:description>Citation Key: Zhang2015</dc:description>
<dcterms:abstract>This paper compares the active and passive projector nonlinear gamma compensation methods for phase error reduction. The active method modifies fringe patterns before their projection to ensure sinusoidality; the passive method, in contrast, compensates for the phase error after capturing those distorted sinusoidal fringe patterns. Our study finds that the active method tends to provide more consistent high-quality fringe patterns regardless of the amount of projectors defocusing; yet the effectiveness of the passive method is diminished if the measurement condition deviates from the calibration condition. Experimental results will be presented to demonstrate the differences between these two nonlinear gamma compensation methods.</dcterms:abstract>
<dc:title>Comparative study on passive and active projector nonlinear gamma calibration</dc:title>
</bib:Article>
<bib:Journal rdf:about="urn:issn:0003-6935">
<prism:volume>54</prism:volume>
<prism:number>13</prism:number>
<dc:title>Applied Optics</dc:title>
<dc:identifier>ISSN 0003-6935</dc:identifier>
<dc:identifier>DOI 10.1364/AO.54.003834</dc:identifier>
</bib:Journal>
<bib:Article rdf:about="http://electronicimaging.spiedigitallibrary.org/article.aspx?doi=10.1117/1.1790508">
<z:itemType>journalArticle</z:itemType>
<dcterms:isPartOf rdf:resource="urn:issn:1017-9909"/>
<bib:authors>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>Diallo</foaf:surname>
<foaf:givenname>Mamadou S</foaf:givenname>
</foaf:Person>
</rdf:li>
<rdf:li>
<foaf:Person>
<foaf:surname>Schmitt</foaf:surname>
<foaf:givenname>Doug R</foaf:givenname>
</foaf:Person>
</rdf:li>
</rdf:Seq>
</bib:authors>
<dc:identifier>
<dcterms:URI>
<rdf:value>http://electronicimaging.spiedigitallibrary.org/article.aspx?doi=10.1117/1.1790508</rdf:value>
</dcterms:URI>
</dc:identifier>
<bib:pages>819</bib:pages>
<dc:date>2004</dc:date>
<dc:description>Citation Key: Diallo2004</dc:description>
<dcterms:abstract>Dual beam electronic speckle interferometers provide raw data in the form of maps of wrapped relative phase or fringe patterns. Interpretation of such fringe patterns is complicated by aliased and random speckle noise. This noise can result in misidentification of the phase at a given point in the image. Automated determination of the loci of fringe extrema, useful for quantitative evaluation, are particularly affected. A nonlinear image filtering technique referred to as mean curvature diffusion is applied to overcome this difficulty. This technique essentially smooths the image without a substantial reduction in the magnitude of the underlying trends that here represent the fringes. Mean curvature diffusion uses calculations analogous to those for the diffusion of heat with the difference that the diffusion coefficient, reminiscent of thermal diffusivity, varies spatially within the image with a value given by the reciprocal of the local surface gradient. At a given point in the image, the rate of surface diffusion depends only on the average value of the normal curvature in any two orthogonal directions and not on its magnitude; this allows the lower frequency underlying components of the image structure to be retained. The method is tested on both calculated and real speckle interferograms to highlight the effectiveness of this smoothing technique relative to more standard smoothing algorithms.</dcterms:abstract>
<dc:title>Noise reduction in interferometric fringe patterns with mean curvature diffusion</dc:title>
</bib:Article>
<bib:Journal rdf:about="urn:issn:1017-9909">
<prism:volume>13</prism:volume>
<prism:number>4</prism:number>
<dc:title>Journal of Electronic Imaging</dc:title>
<dc:identifier>ISSN 1017-9909</dc:identifier>
<dc:identifier>DOI 10.1117/1.1790508</dc:identifier>
</bib:Journal>
<rdf:Description rdf:about="http://ieeexplore.ieee.org/document/7493756/">
<z:itemType>conferencePaper</z:itemType>
<dcterms:isPartOf>
<bib:Journal>
<prism:volume>104</prism:volume>
<dc:identifier>DOI 10.1109/JPROC.2016.2571358</dc:identifier>
<dc:title>Proceedings of the IEEE</dc:title>
</bib:Journal>
</dcterms:isPartOf>
<bib:authors>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>Ronalds</foaf:surname>
<foaf:givenname>Beverley F</foaf:givenname>
</foaf:Person>
</rdf:li>
</rdf:Seq>
</bib:authors>
<dc:identifier>
<dcterms:URI>
<rdf:value>http://ieeexplore.ieee.org/document/7493756/</rdf:value>
</dcterms:URI>
</dc:identifier>
<bib:pages>1489-1498</bib:pages>
<dc:date>2016-07</dc:date>
<dc:description>Citation Key: Ronalds2016
Issue: 7
ISSN: 0018-9219</dc:description>
<dc:title>Francis Ronalds (1788–1873): The First Electrical Engineer? [Scanning Our Past]</dc:title>
</rdf:Description>
<rdf:Description rdf:about="http://ieeexplore.ieee.org/document/7467419/">
<z:itemType>conferencePaper</z:itemType>
<dcterms:isPartOf>
<bib:Journal>
<prism:volume>104</prism:volume>
<dc:identifier>DOI 10.1109/JPROC.2016.2558521</dc:identifier>
<dc:title>Proceedings of the IEEE</dc:title>
</bib:Journal>
</dcterms:isPartOf>
<bib:authors>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>Zou</foaf:surname>
<foaf:givenname>Yulong</foaf:givenname>
</foaf:Person>
</rdf:li>
<rdf:li>
<foaf:Person>
<foaf:surname>Zhu</foaf:surname>
<foaf:givenname>Jia</foaf:givenname>
</foaf:Person>
</rdf:li>
<rdf:li>
<foaf:Person>
<foaf:surname>Wang</foaf:surname>
<foaf:givenname>Xianbin</foaf:givenname>
</foaf:Person>
</rdf:li>
<rdf:li>
<foaf:Person>
<foaf:surname>Hanzo</foaf:surname>
<foaf:givenname>Lajos</foaf:givenname>
</foaf:Person>
</rdf:li>
</rdf:Seq>
</bib:authors>
<dc:identifier>
<dcterms:URI>
<rdf:value>http://ieeexplore.ieee.org/document/7467419/</rdf:value>
</dcterms:URI>
</dc:identifier>
<bib:pages>1727-1765</bib:pages>
<dc:date>2016-09</dc:date>
<dc:description>Citation Key: Zou2016
Issue: 9
ISSN: 0018-9219</dc:description>
<dc:title>A Survey on Wireless Security: Technical Challenges, Recent Advances, and Future Trends</dc:title>
</rdf:Description>
<rdf:Description rdf:about="urn:isbn:978-1-5386-0852-4">
<z:itemType>conferencePaper</z:itemType>
<dcterms:isPartOf>
<bib:Journal>
<dc:identifier>ISBN 978-1-5386-0852-4</dc:identifier>
<dc:identifier>DOI 10.1109/CGiV.2017.21</dc:identifier>
<dc:title>2017 14th International Conference on Computer Graphics, Imaging and Visualization</dc:title>
</bib:Journal>
</dcterms:isPartOf>
<dc:publisher>
<foaf:Organization><foaf:name>IEEE</foaf:name></foaf:Organization>
</dc:publisher>
<bib:authors>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>Rabeh</foaf:surname>
<foaf:givenname>Amira Ben</foaf:givenname>
</foaf:Person>
</rdf:li>
<rdf:li>
<foaf:Person>
<foaf:surname>Benzarti</foaf:surname>
<foaf:givenname>Faouzi</foaf:givenname>
</foaf:Person>
</rdf:li>
<rdf:li>
<foaf:Person>
<foaf:surname>Amiri</foaf:surname>
<foaf:givenname>Hamid</foaf:givenname>
</foaf:Person>
</rdf:li>
</rdf:Seq>
</bib:authors>
<dc:identifier>
<dcterms:URI>
<rdf:value>https://ieeexplore.ieee.org/document/8361554/</rdf:value>
</dcterms:URI>
</dc:identifier>
<bib:pages>117-121</bib:pages>
<dc:date>2017-05</dc:date>
<dc:description>Citation Key: Rabeh2017</dc:description>
<dc:title>Review of computer assisted diagnosis to analyze the MRI (Magnetic Resource Image) and detect Alzheimer disease</dc:title>
</rdf:Description>
<bib:Report rdf:about="#item_1263">
<z:itemType>report</z:itemType>
<dc:publisher>
<foaf:Organization>
<vcard:adr>
<vcard:Address>
<vcard:locality>Washington</vcard:locality>
</vcard:Address>
</vcard:adr>
<foaf:name>API Publishing Service</foaf:name>
</foaf:Organization>
</dc:publisher>
<bib:authors>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>American Petroleum Institute</foaf:surname>
</foaf:Person>
</rdf:li>
</rdf:Seq>
</bib:authors>
<dc:date>2001</dc:date>
<dc:description>Citation Key: AmericanPetroleumInstitute2001
Place: Washington</dc:description>
<prism:number>API RP 14C</prism:number>
<dc:title>Recommended practice for analysis, design, installation, and testing of basic surface safety systems for offshore production platforms</dc:title>
</bib:Report>
<bib:Article rdf:about="#item_1264">
<z:itemType>newspaperArticle</z:itemType>
<dcterms:isPartOf>
<bib:Newspaper><dc:title>Kompas</dc:title></bib:Newspaper>
</dcterms:isPartOf>
<bib:authors>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>Ij</foaf:surname>
<foaf:givenname>Piliang</foaf:givenname>
</foaf:Person>
</rdf:li>
</rdf:Seq>
</bib:authors>
<bib:pages>6</bib:pages>
<dc:date>2010-06-10</dc:date>
<dc:description>Citation Key: Ij2010</dc:description>
<dc:title>Demokrasi di era otonomi daerah</dc:title>
</bib:Article>
<bib:Report rdf:about="#item_1265">
<z:itemType>report</z:itemType>
<bib:authors>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>Pusat Data dan Teknologi Informasi Sumber Daya Energi dan Mineral Kementerian Energi dan Sumber Daya Mineral</foaf:surname>
</foaf:Person>
</rdf:li>
</rdf:Seq>
</bib:authors>
<bib:pages>111</bib:pages>
<dc:date>2017</dc:date>
<dc:description>Citation Key: PusatDatadanTeknologiInformasiSumberDayaEnergidanMineralKementerianEnergidanSumberDayaMineral2017
ISBN: 9786020836287</dc:description>
<dc:title>Kajian potensi mineral ikutan pada pertambangan timah</dc:title>
</bib:Report>
<rdf:Description rdf:about="https://youtu.be/8m1X26Auw6Q">
<z:itemType>document</z:itemType>
<bib:authors>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>TEDx Talks</foaf:surname>
</foaf:Person>
</rdf:li>
</rdf:Seq>
</bib:authors>
<dc:identifier>
<dcterms:URI>
<rdf:value>https://youtu.be/8m1X26Auw6Q</rdf:value>
</dcterms:URI>
</dc:identifier>
<dc:date>2016</dc:date>
<dc:description>Citation Key: TEDxTalks2016</dc:description>
<dcterms:abstract>In this talk, Dr. Triona McGrath explains how our oceans are changing due to increasing levels of carbon dioxide in the atmosphere and how it will impact our marine life. Triona shares her thoughts on ocean acidification and explain why it is the evil twin of climate change. Dr. Triona McGrath is a Fulbright scholar and post-doctorate research fellow, currently working with the National University of Ireland, Galway and the Marine Institute, Ireland. Her primary area of research is chemical oceanography where she is investigating ocean acidification in Irish marine waters. In 2014, Triona was a Fulbright-Marine Institute Scholar at the Scripps Institute of Oceanography in San Diego. This talk was given at a TEDx event using the TED conference format but independently organized by a local community. Learn more at http://ted.com/tedx</dcterms:abstract>
<dc:title>Ocean acidification - the evil twin of climate change | Triona McGrath | TEDxFulbrightDublin</dc:title>
</rdf:Description>
<bib:Article rdf:about="https://www.vox.com/science-and-health/2018/5/7/17314716/lyme-disease-vaccine-history-effectiveness">
<z:itemType>newspaperArticle</z:itemType>
<dcterms:isPartOf>
<bib:Newspaper><dc:title>Vox.com</dc:title></bib:Newspaper>
</dcterms:isPartOf>
<bib:authors>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>Resnick</foaf:surname>
<foaf:givenname>Brian</foaf:givenname>
</foaf:Person>
</rdf:li>
</rdf:Seq>
</bib:authors>
<dc:identifier>
<dcterms:URI>
<rdf:value>https://www.vox.com/science-and-health/2018/5/7/17314716/lyme-disease-vaccine-history-effectiveness</rdf:value>
</dcterms:URI>
</dc:identifier>
<dc:date>2018-05</dc:date>
<dc:description>Citation Key: Resnick2018</dc:description>
<dc:title>Lyme disease vaccine: the frustrating reason there isn’t one for humans - Vox</dc:title>
</bib:Article>
<bib:Recording rdf:about="#item_1268">
<z:itemType>tvBroadcast</z:itemType>
<dc:publisher>
<foaf:Organization>
<foaf:name>Netflix, United Kingdom</foaf:name>
</foaf:Organization>
</dc:publisher>
<z:directors>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>Foster</foaf:surname>
<foaf:givenname>J</foaf:givenname>
</foaf:Person>
</rdf:li>
</rdf:Seq>
</z:directors>
<z:scriptwriters>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>Brooker, C.</foaf:surname>
</foaf:Person>
</rdf:li>
</rdf:Seq>
</z:scriptwriters>
<z:producers>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>Brooker, C.</foaf:surname>
</foaf:Person>
</rdf:li>
</rdf:Seq>
</z:producers>
<dc:date>2016</dc:date>
<dc:description>Citation Key: Foster2016</dc:description>
<dc:title>Arkangel</dc:title>
<dc:title>Black Mirror</dc:title>
</bib:Recording>
<bib:Document rdf:about="https://www.bps.go.id/dynamictable/2015/09/18/906/jumlah-desa-kelurahan-menurut-provinsi-dan-letak-geografi-2003---2014.html">
<z:itemType>webpage</z:itemType>
<dcterms:isPartOf>
<z:Website></z:Website>
</dcterms:isPartOf>
<bib:authors>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>Badan Pusat Statistik</foaf:surname>
</foaf:Person>
</rdf:li>
</rdf:Seq>
</bib:authors>
<dc:identifier>
<dcterms:URI>
<rdf:value>https://www.bps.go.id/dynamictable/2015/09/18/906/jumlah-desa-kelurahan-menurut-provinsi-dan-letak-geografi-2003---2014.html</rdf:value>
</dcterms:URI>
</dc:identifier>
<dc:date>2015</dc:date>
<dc:description>Citation Key: BadanPusatStatistik2015</dc:description>
<dc:title>Jumlah desa/kelurahan menurut provinsi dan letak geografi, 2003 - 2014</dc:title>
</bib:Document>
<bib:Document rdf:about="https://www.elprocus.com/ultrasonic-detection-basics-application/">
<z:itemType>webpage</z:itemType>
<dcterms:isPartOf>
<z:Website></z:Website>
</dcterms:isPartOf>
<bib:authors>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>Agarwal</foaf:surname>
<foaf:givenname>Tarun</foaf:givenname>
</foaf:Person>
</rdf:li>
</rdf:Seq>
</bib:authors>
<dc:identifier>
<dcterms:URI>
<rdf:value>https://www.elprocus.com/ultrasonic-detection-basics-application/</rdf:value>
</dcterms:URI>
</dc:identifier>
<dc:date>2015</dc:date>
<dc:description>Citation Key: Agarwal2015</dc:description>
<dc:title>Ultrasonic detection – basics & application</dc:title>
</bib:Document>
<bib:MotionPicture rdf:about="#item_1271">
<z:itemType>film</z:itemType>
<dc:publisher>
<foaf:Organization>
<foaf:name>Legacy Picture dan Screenplay Films, Indonesia</foaf:name>
</foaf:Organization>
</dc:publisher>
<z:directors>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>Bramantyo</foaf:surname>
<foaf:givenname>Hanung</foaf:givenname>
</foaf:Person>
</rdf:li>
</rdf:Seq>
</z:directors>
<z:scriptwriters>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>Bramantyo</foaf:surname>
<foaf:givenname>Hanung</foaf:givenname>
</foaf:Person>
</rdf:li>
<rdf:li>
<foaf:Person>
<foaf:surname>Dramanti</foaf:surname>
<foaf:givenname>B.</foaf:givenname>
</foaf:Person>
</rdf:li>
</rdf:Seq>
</z:scriptwriters>
<z:producers>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>Ronny, R.</foaf:surname>
</foaf:Person>
</rdf:li>
</rdf:Seq>
</z:producers>
<dc:date>2017</dc:date>
<dc:description>Place: Indonesia
Citation Key: Bramantyo2017</dc:description>
<dc:title>Kartini</dc:title>
</bib:MotionPicture>
<bib:MotionPicture rdf:about="https://www.youtube.com/watch?v=Mb8aeRuAJZw">
<z:itemType>film</z:itemType>
<z:directors>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>Maychaelson</foaf:surname>
<foaf:givenname>R</foaf:givenname>
</foaf:Person>
</rdf:li>
</rdf:Seq>
</z:directors>
<dc:identifier>
<dcterms:URI>
<rdf:value>https://www.youtube.com/watch?v=Mb8aeRuAJZw</rdf:value>
</dcterms:URI>
</dc:identifier>
<dc:date>2018</dc:date>
<dc:description>Citation Key: Maychaelson2018</dc:description>
<dc:title>Matchalatte</dc:title>
</bib:MotionPicture>
<bib:Patent rdf:about="#item_1273">
<z:itemType>patent</z:itemType>
<z:inventors>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>Fathauer</foaf:surname>
<foaf:givenname>George H</foaf:givenname>
</foaf:Person>
</rdf:li>
</rdf:Seq>
</z:inventors>
<dc:description>Citation Key: Fathauer1975</dc:description>
<prism:number>US3881353A</prism:number>
<dc:date>1975-05</dc:date>
<dc:title>Ultrasonic sensor</dc:title>
</bib:Patent>
<bib:Patent rdf:about="https://patents.google.com/patent/US3881353">
<z:itemType>patent</z:itemType>
<z:inventors>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>Fathauer</foaf:surname>
<foaf:givenname>George H</foaf:givenname>
</foaf:Person>
</rdf:li>
</rdf:Seq>
</z:inventors>
<dc:identifier>
<dcterms:URI>
<rdf:value>https://patents.google.com/patent/US3881353</rdf:value>
</dcterms:URI>
</dc:identifier>
<dc:description>Citation Key: Fathauer1974</dc:description>
<prism:number>US3881353A</prism:number>
<dc:date>1975-05</dc:date>
<dcterms:abstract>The embodiment of the invention disclosed herein is directed to a sensing device for determining the passage of high velocity, relatively small articles such as seeds being planted through high volume automatic planting apparatus used by farmers. The sensing device has a pair of spaced apart ultrasonic transducer elements, one acting as a transmitter and the other acting as a receiver. The driving circuit for the transmitting transducer has a feedback path coupled to the receiving amplifier of the receiving transducer. The pair of transducers, together with their respective driving and receiving circuits, form a closed loop oscillator circuit which includes the air gap between the transmitting and receiving elements. The spacing between the transmitting and receiving elements is maintained an integral number of half wavelengths to provide maximum sensitivity to high velocity small articles passing therebetween.</dcterms:abstract>
<dc:title>Ultrasonic sensor</dc:title>
</bib:Patent>
<bib:Patent rdf:about="#item_1275">
<z:itemType>patent</z:itemType>
<z:inventors>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>Law</foaf:surname>
<foaf:givenname>Wing K</foaf:givenname>
</foaf:Person>
</rdf:li>
<rdf:li>
<foaf:Person>
<foaf:surname>Hennige</foaf:surname>
<foaf:givenname>Carl</foaf:givenname>
</foaf:Person>
</rdf:li>
<rdf:li>
<foaf:Person>
<foaf:surname>Fry</foaf:surname>
<foaf:givenname>Frank</foaf:givenname>
</foaf:Person>
</rdf:li>
<rdf:li>
<foaf:Person>
<foaf:surname>Sanghvi</foaf:surname>
<foaf:givenname>Narendra T</foaf:givenname>
</foaf:Person>
</rdf:li>
<rdf:li>
<foaf:Person>
<foaf:surname>Miller</foaf:surname>
<foaf:givenname>Fred</foaf:givenname>
</foaf:Person>
</rdf:li>
<rdf:li>
<foaf:Person>
<foaf:surname>Kendrick</foaf:surname>
<foaf:givenname>Paul</foaf:givenname>
</foaf:Person>
</rdf:li>
<rdf:li>
<foaf:Person>
<foaf:surname>DeMarta</foaf:surname>
<foaf:givenname>Stan</foaf:givenname>
</foaf:Person>
</rdf:li>
</rdf:Seq>
</z:inventors>
<dc:description>Citation Key: Law1995</dc:description>
<prism:number>US5762066A</prism:number>
<dc:date>1995</dc:date>
<dc:title>Multifaceted ultrasound transducer probe system and methods for its use</dc:title>
</bib:Patent>
<bib:Book rdf:about="urn:isbn:0-582-23779-3">
<z:itemType>book</z:itemType>
<dc:publisher>
<foaf:Organization>
<vcard:adr>
<vcard:Address>
<vcard:locality>New York, NY</vcard:locality>
</vcard:Address>
</vcard:adr>
<foaf:name>John Wiley & Sons</foaf:name>
</foaf:Organization>
</dc:publisher>
<bib:authors>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>Bentley</foaf:surname>
<foaf:givenname>John P.</foaf:givenname>
</foaf:Person>
</rdf:li>
</rdf:Seq>
</bib:authors>
<prism:edition>3rd</prism:edition>
<dc:identifier>ISBN 0-582-23779-3</dc:identifier>
<dc:date>1995</dc:date>
<dc:description>Citation Key: Bentley1995</dc:description>
<dc:title>Principles of measurement system</dc:title>
</bib:Book>
<bib:BookSection rdf:about="#item_1277">
<z:itemType>bookSection</z:itemType>
<dcterms:isPartOf>
<bib:Book>
<dc:title>Advances in statistical methodologies and their application to real problems</dc:title>
</bib:Book>
</dcterms:isPartOf>
<dc:publisher>
<foaf:Organization>
<vcard:adr>
<vcard:Address>
<vcard:locality>London</vcard:locality>
</vcard:Address>
</vcard:adr>
<foaf:name>IntechOpen</foaf:name>
</foaf:Organization>
</dc:publisher>
<bib:authors>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>Zaki</foaf:surname>
<foaf:givenname>Rafdzah</foaf:givenname>
</foaf:Person>
</rdf:li>
</rdf:Seq>
</bib:authors>
<bib:editors>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>Hokimoto</foaf:surname>
<foaf:givenname>Tsukasa</foaf:givenname>
</foaf:Person>
</rdf:li>
</rdf:Seq>
</bib:editors>
<bib:pages>217-237</bib:pages>
<dc:date>2017</dc:date>
<dc:description>Citation Key: Zaki2017</dc:description>
<dc:title>Validation of instrument measuring continuous variable in medicine</dc:title>
</bib:BookSection>
<bib:Article rdf:about="http://iopscience.iop.org/1742-6596/849/1/012007/">
<z:itemType>journalArticle</z:itemType>
<dcterms:isPartOf>
<bib:Journal>
<prism:volume>13</prism:volume>
<dc:title>Journal of Instrumentation</dc:title>
<dc:identifier>DOI 10.1088/1742-6596/849/1/012007</dc:identifier>
</bib:Journal>
</dcterms:isPartOf>
<bib:authors>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>Andrianov</foaf:surname>
<foaf:givenname>K</foaf:givenname>
</foaf:Person>
</rdf:li>
<rdf:li>
<foaf:Person>
<foaf:surname>Haidl</foaf:surname>
<foaf:givenname>A</foaf:givenname>
</foaf:Person>
</rdf:li>
<rdf:li>
<foaf:Person>
<foaf:surname>Lühl</foaf:surname>
<foaf:givenname>L</foaf:givenname>
</foaf:Person>
</rdf:li>
<rdf:li>
<foaf:Person>
<foaf:surname>Dehlinger</foaf:surname>
<foaf:givenname>A</foaf:givenname>
</foaf:Person>
</rdf:li>
<rdf:li>
<foaf:Person>
<foaf:surname>Dierks</foaf:surname>
<foaf:givenname>H</foaf:givenname>
</foaf:Person>
</rdf:li>
<rdf:li>
<foaf:Person>
<foaf:surname>Gnewkow</foaf:surname>
<foaf:givenname>R</foaf:givenname>
</foaf:Person>
</rdf:li>
<rdf:li>
<foaf:Person>
<foaf:surname>Nisius</foaf:surname>
<foaf:givenname>T</foaf:givenname>
</foaf:Person>
</rdf:li>
<rdf:li>
<foaf:Person>
<foaf:surname>Kanngießer</foaf:surname>
<foaf:givenname>B</foaf:givenname>
</foaf:Person>
</rdf:li>
<rdf:li>
<foaf:Person>
<foaf:surname>Wilhein</foaf:surname>
<foaf:givenname>T</foaf:givenname>
</foaf:Person>
</rdf:li>
</rdf:Seq>
</bib:authors>
<dc:identifier>
<dcterms:URI>
<rdf:value>http://iopscience.iop.org/1742-6596/849/1/012007/</rdf:value>
</dcterms:URI>
</dc:identifier>
<dc:date>2018</dc:date>
<dc:description>Citation Key: Andrianov2018</dc:description>
<dc:title>Scanning X-ray microscopy with large solid angle X-ray fluorescence detection at the XUV beamline P04, DESY</dc:title>
</bib:Article>
<bib:Article rdf:about="https://www.sciencedirect.com/science/article/pii/S136184151830286X">
<z:itemType>journalArticle</z:itemType>
<dcterms:isPartOf>
<bib:Journal><dc:title>Medical Image Analysis</dc:title></bib:Journal>
</dcterms:isPartOf>
<bib:authors>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>Nguyen</foaf:surname>
<foaf:givenname>D C T</foaf:givenname>
</foaf:Person>
</rdf:li>
<rdf:li>
<foaf:Person>
<foaf:surname>Benameur</foaf:surname>
<foaf:givenname>S</foaf:givenname>
</foaf:Person>
</rdf:li>
<rdf:li>
<foaf:Person>
<foaf:surname>Mignotte</foaf:surname>
<foaf:givenname>M</foaf:givenname>
</foaf:Person>
</rdf:li>
<rdf:li>
<foaf:Person>
<foaf:surname>Lavoie</foaf:surname>
<foaf:givenname>F</foaf:givenname>
</foaf:Person>
</rdf:li>
</rdf:Seq>
</bib:authors>
<dc:identifier>
<dcterms:URI>
<rdf:value>https://www.sciencedirect.com/science/article/pii/S136184151830286X</rdf:value>
</dcterms:URI>
</dc:identifier>
<dc:date>2018</dc:date>
<dc:description>Citation Key: Nguyen2018</dc:description>
<dc:title>Superpixel and multi-atlas based fusion entropic model for the segmentation of X-ray images</dc:title>
</bib:Article>
<bib:Letter rdf:about="#item_1280">
<z:itemType>letter</z:itemType>
<bib:authors>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>Wibowo</foaf:surname>
<foaf:givenname>H.</foaf:givenname>
</foaf:Person>
</rdf:li>
</rdf:Seq>
</bib:authors>
<dc:date>2018-05-22</dc:date>
<z:displayTitle>[Letter]</z:displayTitle>
</bib:Letter>
<bib:Article rdf:about="#item_1281">
<z:itemType>journalArticle</z:itemType>
<dcterms:isPartOf>
<bib:Journal>
<prism:volume>30</prism:volume>
<dc:title>Flow Measurement and Instrumentation</dc:title>
</bib:Journal>
</dcterms:isPartOf>
<bib:authors>
<rdf:Seq>
<rdf:li>
<foaf:Person>
<foaf:surname>Tawackolian</foaf:surname>
<foaf:givenname>Karsten</foaf:givenname>
</foaf:Person>
</rdf:li>