-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpublications_backup_html
1177 lines (1108 loc) · 68.9 KB
/
publications_backup_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>
<head>
<title>AASPI | publications</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!-- The <link> tag is used to reference the CSS style sheet which
describes how the page is styled and designed -->
<link rel="stylesheet" href="style.css" type="text/css" />
<!-- Drop down menus from suckerfish at htmldog.com -->
<script type="text/javascript">
sfHover = function() {
var sfEls = document.getElementById("navlist").getElementsByTagName("li");
for (var i=0; i<sfEls.length; i++) {
sfEls[i].onmouseover=function() {
this.className+=" sfhover";
}
sfEls[i].onmouseout=function() {
this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
}
}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);
</script>
</head>
<body>
<div id="frame">
<div id="header">
<div>
<table border="0" width="100%" cellspacing="0" cellpadding="5" summary="header">
<tr>
<td rowspan="2"><img src="images/aaspi.png" alt="AASPI" /></td>
<td class="header_text"><h1>AASPI @ ConocoPhillips School of Geology & Geophysics</h1></td>
<td rowspan="2"><img src="images/cpsgg.png" alt="CPSGG" /></td>
</tr>
<tr>
<td class="header_text"><h3>Attribute Assisted Seismic Processing & Interpretation | The University of Oklahoma</h3></td>
</tr>
</table>
</div>
</div>
<div id="container">
<div class="nav" id="sitenav">
<ul id="navlist">
<li><a href="index.html">home</a></li>
<li><a href="about.html">about AASPI</a></li>
<li><a href="members.html">members</a>
<ul>
<li><a href="faculty.html">principal investigators</a></li>
<li><a href="students.html">students</a></li>
<li><a href="it_support.html">it support</a></li>
<li><a href="sponsors.html">sponsors</a></li>
</ul>
</li>
<li><a href="documentation.html">software documentation</a></li>
<li><a href="releasenotes.html">software release notes</a></li>
<li><a href="research.html">research</a></li>
<li><a href="Theses.html">theses and dissertations</a></li>
<li><a href="submitted.html">submitted papers</a></li>
<li><a href="publications.html">publications</a></li>
<li><a href="resources.html">resources</a></li>
<li><a href="contact.html">contact</a></li>
<li><a href="upload">downloads</a></li>
</ul>
</div>
<div class="cont" id="content">
<h2>Publications</h2>
<table border="1" width="100%" cellspacing="0" cellpadding="0" summary="Publications">
<col span="1" width="70%" />
<col span="1" width="30%" />
<tbody>
<tr>
<th colspan="2" class="pub_head">Published in 2015</th>
</tr>
<tr class="pub_descr">
<td>Title</td>
<td>Publication</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2015/Bo_noise_sof.pdf" target="_blank">Noise suppression of time migrated gathers using structure-oriented filtering</a><br />
Bo Zhang,Tengfei Lin, Shiguang Guo, Oswaldo Davogusto and Kurt Marfurt </td>
<td>Interpretation</td>
<tr class="pub_content">
<td><a href="publications/2015/Bo_impedance_dipole.pdf" target="_blank">Relative P-impedance estimation using a dipole-based matching pursuit decomposition strategy</a><br />
Xiaotao Wen, Bo Zhang,Wayne Pennington and Zhenhua He </td>
<td>Interpretation</td>
<tr class="pub_content">
<td><a href="publications/2015/Marfurt_GSHJ_Sept 2015_TECH.pdf" target="_blank">Seismic attributes and the road ahead - Part 1</a><br/>
Kurt J. Marfurt</td>
<td>Geophysical Society of Houston</td>
<tr class="pub_content">
<td><a href="publications/2015/something2.pdf" target="_blank">Seismic attributes and the road ahead - Part 2</a><br/>
Kurt J. Marfurt</td>
<td>Geophysical Society of Houston</td>
<tr class="pub_content">
<td><a href="submitted/2015/Tao_Interpretation_1.pdf" target="_blank">A comparison of classification techniques for seismic facies recognition</a><br />
Tao Zhao, Vikram Jayaram, Atish Roy, and Kurt J. Marfurt</td>
<td>Interpretation</td>
<tr class="pub_content">
<td><a href="publications/2015/Tao_Interpretation_1.pdf" target="_blank">Brittleness evaluation of resource plays by integrating petrophysical and seismic data analysis</a><br />
Bo Zhang, Tao Zhao, Xiaochun Jin, and Kurt Marfurt</td>
<td>Interpretation</td>
<tr class="pub_content">
<td><a href="publications/2015/Fangyu_JGE.pdf" target="_blank">Q estimation from reflection seismic data for hydrocarbon detection using a modified
frequency shift method</a><br />
Fangyu Li, Huailai Zhou, Nan Jiang, Jianxia Bi and Kurt J. Marfurt</td>
<td>Journal of Geophysics and Engineering</td>
<tr class="pub_content">
<td><a href="publications/2015/Marfurt_Interpretation.pdf" target="_blank">Pitfalls and limitations in seismic attribute interpretation of tectonic features</a><br />
Kurt J. Marfurt and Tiago M. Alves</td>
<td>Interpretation</td>
<tr class="pub_content">
<td><a href="publications/2015/Marfurt_Interpretation_2.pdf" target="_blank">Techniques and best practices in multiattribute display</a><br />
Kurt J. Marfurt</td>
<td>Interpretation</td>
<tr class="pub_content">
<tr class="pub_content">
<td><a href="publications/2015/Bo_Interpretation_1.pdf" target="_blank">Improving the quality of prestack inversion by prestack data conditioning</a><br />
Bo Zhang, Deshuang Chang, Tengfei Lin, and Kurt J. Marfurt</td>
<td>Interpretation</td>
<tr>
</tr>
<tr class="pub_content">
<td><a href="publications/2015/Huailai_Interpretation.pdf" target="_blank">Value of nonstationary wavelet spectral balancing in mapping a faulted fluvial system, Bohai Gulf, China</a><br />
Huailai Zhou, Yuanjun Wang, Tengfei Lin, Fangyu Li, and Kurt J. Marfurt</td>
<td>Interpretation</td>
<tr class="pub_content">
<td><a href="submitted/2015/Tobi_2015.pdf" target="_blank">An Integrated Geophysical Approach to understanding the Structure and the Evolution of the Ouachita Orogenic Belt, Fort Worth Basin, Texas
</a><br />Oluwatobi Olorunsola, Fangyu Li, Olanrewaju Aboaba, G. Randy Keller and Kurt J. Marfurt</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="submitted/2015/Tao_supervised_learning_SEG_abstract.pdf" target="_blank">Supervised and unsupervised learning: how machines can assist quantitative seismic interpretation
</a><br />Tao Zhao, Sumit Verma, Jie Qi and Kurt J. Marfurt</td>
<td>SEG Expanded Abstract</td>
</tr>
</tr>
</tr>
<tr class="pub_content">
<td><a href="submitted/2015/Atish_Well_performance_predictions_SEG_abstract.pdf" target="_blank">Well performance predictions from geologic, petrophysical and completions-related parameters using generative topographic mapping: A field case study
</a><br />Atish Roy, Tao Zhao, Vikram Jayaram and Deepak Davegowda</td>
<td>SEG Expanded Abstract</td>
</tr>
</tr>
</tr>
<tr class="pub_content">
<td><a href="submitted/2015/Tao_attribute_classification_SEG_abstract.pdf" target="_blank">Attribute assisted seismic facies classification on a turbidite system in Canterbury Basin, offshore New Zealand
</a><br />Tao Zhao and Kurt J. Marfurt</td>
<td>SEG Expanded Abstract</td>
</tr>
</tr>
</tr>
</tr>
<tr class="pub_content">
<td><a href="submitted/2015/Tao_TOC_estimation_SEG_abstract.pdf" target="_blank">TOC estimation in the Barnett Shale from triple combo logs using support vector machine
</a><br />Tao Zhao, Sumit Verma and Deepak Davegowda</td>
<td>SEG Expanded Abstract</td>
</tr>
</tr>
<tr class="pub_content">
<td><a href="submitted/2015/Fangyu_EAGE.pdf" target="_blank">Q Estimation Using an Improved Frequency Shift Method</a><br />Fangyu Li, Kurt Marfurt, Huailai Zhou and Y. Chen</td>
<td>EAGE Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="submitted/2015/Fangyu_attn1.pdf" target="_blank">Seismic Spectral Attributes of Apparent Attenuation: Part 1 - Methodology</a><br />Fangyu Li,Huailai Zhou,Lanbin Li and Kurt Marfurt</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="submitted/2015/Fangyu_attn2.pdf" target="_blank">Seismic Spectral Attributes of Apparent Attenuation: Part 2 - Application</a><br />Fangyu Li,Huailai Zhou,Lanbin Li, Sumit Verma, Oluwatobi Olorunsola and Kurt Marfurt</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="submitted/2015/Gabe_SEG.pdf" target="_blank">Improving fault images using a directional Laplacian of a Gaussian operator</a><br />Gabriel Machado, Abdulmohsen Alali, Bryce Hutchinson, Oluwatobi Olorunsola and Kurt J. Marfurt</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<tr class="pub_content">
<td><a href="publications/2015/fangyu_TLE.pdf" target="_blank">Attribute mapping of variable-thickness incised valley-fill systems</a><br />
Fangyu Li, Jie Qi, and Kurt J. Marfurt</td>
<td>The Leading Edge</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2015/Fangyu_URTEC.pdf" target="_blank">Fracture Characterization based on Attenuation Estimation from Seismic Reflection Data using Well-log-based Localized Spectral Correction</a><br />Fangyu Li, Tao Zhao, Tengfei Lin and Kurt J. Marfurt</td>
<td>URTeC Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="submitted/2015/Tengfei_AAPG.pdf" target="_blank">Pitfalls of seismic interpretation in prestack time- vs. depth migration data</a><br />Tengfei Lin, Hang Deng, Zhifa Zhan, Zhonghong Wan and Kurt Marfurt</td>
<td>AAPG Expanded Abstract</td>
</tr>
<tr>
<th colspan="2" class="pub_head">Published in 2014</th>
</tr>
<tr class="pub_descr">
<td>Title</td>
<td>Publication</td>
</tr>
</tr>
<tr class="pub_content">
<td><a href="publications/2014/Bo_Geophysics.pdf" target="_blank">Horizon-based semiautomated nonhyperbolic velocity analysis</a><br />Bo Zhang, Tao Zhao, Jie Qi, and Kurt J. Marfurt</td>
<td>Geophysics</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2014/roderick_interpretation_14.pdf" target="_blank">Mineralogy-based brittleness prediction from surface seismic data:
Application to the Barnett Shale</a><br />Roderick Perez Altamar and Kurt Marfurt</td>
<td>Interpretation</td>
<tr class="pub_content">
<td><a href="publications/2014/Oswaldo_Interpretation.pdf" target="_blank">3D Alford rotation analysis for the Diamond M Field, Midland Basin, Texas</a><br />
Oswaldo Davogustto , Tim Kwiatkowski, Kurt Marfurt, Steven Roche, and James Thomas</td>
<td>Interpretation</td>
<tr class="pub_content">
<td><a href="publications/2014/Atish_Interpretation.pdf" target="_blank">Generative topographic mapping for seismic facies estimation of a
carbonate wash, Veracruz Basin, southern Mexico</a><br />Atish Roy, Araceli S. Romero-Peláez and Kurt J. Marfurt</td>
<td>Interpretation</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2014/Bo_Interpretation.pdf" target="_blank">Semiautomated fault interpretation based on seismic attributes</a><br />Bo Zhang, Yuancheng Liu, Michael Pelissier, and Nanne Hemstra</td>
<td>Interpretation</td>
</tr>
</tr>
<tr class="pub_content">
<td><a href="publications/2014/Marcilio_Interpretation.pdf" target="_blank">Relative acoustic impedance from wavelet transform
</a><br />Marcílio Castro de Matos, Rodrigo Penna, Paulo Johann, and Kurt Marfurt</td>
<td>Interpretation</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2014/Fangyu_Interpretation.pdf" target="_blank">Coherence attribute at different spectral scales
</a><br />Fangyu Li and Wenkai Lu</td>
<td>Interpretation</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2014/Jie_Interpretation.pdf" target="_blank">Attribute expression of fault-controlled karst—Fort Worth Basin,Texas: A tutorial
</a><br />Jie Qi, Bo Zhang, Huailai Zhou,and Kurt Marfurt</td>
<td>Interpretation</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2014/Chopra_TLE1.pdf" target="_blank">Observing fracture lineaments with Euler curvature</a><br />Satinder Chopra, and Kurt J. Marfurt</td>
<td>The Leading Edge</td>
</tr>
</tr>
<tr class="pub_content">
<td><a href="publications/2014/David_URTEC.pdf" target="_blank">Statistical Characterization and Geological Correlation of Wells Using Automatic Learning Gaussian Mixture Models</a><br /> David Lubo, Vikram Jayaram, and Kurt J. Marfurt</td>
<td>URTeC Expanded Abstract</td>
</tr>
</tr>
<tr class="pub_content">
<td><a href="publications/2014/Shiguang_SEG.pdf" target="_blank">Vector correlation of AVAz and curvature attribute-Application to Mississippian Tripolitic
Chert, Osage County, Northeast Oklahoma </a><br /> Shiguang Guo, Bo Zhang, Sumit Verma, and Kurt J. Marfurt</td>
<td>SEG Expanded Abstract</td>
</tr>
</tr>
<tr class="pub_content">
<td><a href="publications/2014/Tao_SEG.pdf" target="_blank">Lithofacies classification in Barnett Shale using proximal support vector machines</a><br /> Tao Zhao, Vikram Jayaram, Kurt J. Marfurt and Huailai Zhou</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2014/Chopra_SEG.pdf" target="_blank">Seismic facies analysis using generative topographic mapping </a><br /> Satinder Chopra, and Kurt J. Marfurt</td>
<td>SEG Expanded Abstract</td>
</tr>
</tr>
<tr class="pub_content">
<td><a href="publications/2014/Tengfei_SEG_2.pdf" target="_blank">Seismic attributes estimation using a self-adaptive window</a><br />Tengfei Lin, Deshuang Chnag, Bo Zhang,and Kurt J. Marfurt</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2014/Tengfei_SEG_1.pdf" target="_blank">Seismic attributes of time-vs. depth-migrated data using self-adaptive window</a><br /> Tengfei Lin, Bo Zhang, Zhifa Zhan, Zhonghong Wan, Fangyu Li, Huailai Zhou and Kurt J. Marfurt</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2014/Marcus_SEG.pdf" target="_blank">Correlating curvature to fault propagation in clay modeled transfer zones </a><br /> Marcus Cahoj, and Kurt J. Marfurt</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr>
<tr class="pub_content">
<td><a href="publications/2014/Chopra_SEG_2.pdf" target="_blank">Seismic discontinuity attributes and Sobel filtering </a><br /> Satinder Chopra, Rajive Kumar, and Kurt J. Marfurt</td>
<td>SEG Expanded Abstract</td>
</tr>
</tr>
<tr class="pub_content">
<td><a href="publications/2014/Fangyu_SEG.pdf" target="_blank">Automatic Event Detection on Noisy Microseismograms </a><br /> Fangyu Li, Jamie Rich, and Kurt J. Marfurt</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2014/Chopra_SEG_3.pdf" target="_blank">Churning seismic attributes with principal component analysis </a><br /> Satinder Chopra, and Kurt J. Marfurt</td>
<td>SEG Expanded Abstract</td>
</tr>
</tr>
<tr class="pub_content">
<td><a href="publications/2014/Bo_SEG.pdf" target="_blank">Brittleness evaluation of resource plays by integrating petrophysics and seismic analysis </a><br /> Bo Zhang,Shiguang Guo, Fangyu Li, Pan Li, and Kurt J. Marfurt</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2014/Zhou_SEG.pdf" target="_blank">Enhancing the resolution of seismic data using improved time-frequency spectral modeling </a><br /> Huailai Zhou, Changcheng Wang, Kurt J. Marfurt , Yiwei Jiang, and Jianxia Bi</td>
<td>SEG Expanded Abstract</td>
</tr>
</tr>
<tr class="pub_content">
<td><a href="publications/2014/Sumit_SEG.pdf" target="_blank">Prestack suppression of high frequency ground roll using a 3D multiwindow KL filter:Application to a legacy Mississippi Lime survey </a><br /> Sumit Verma, Shiguang Guo, and Kurt J. Marfurt</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2014/Fangyu_SEG_2.pdf" target="_blank">Random Noise Suppression Using Normalized Convolution Filter </a><br /> Fangyu Li*, Bo Zhang, Kurt J. Marfurt, and Isaac Hall</td>
<td>SEG Expanded Abstract</td>
</tr>
</tr>
<tr class="pub_content">
<td><a href="publications/2014/Marfurt_SEG.pdf" target="_blank">Seismic attributes and the road ahead </a><br /> Kurt J. Marfurt</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr>
<tr class="pub_content">
<td><a href="publications/2014/Bo_SEG_2.pdf" target="_blank">Strategies to preserve the data fidelity at far offset </a><br /> Bo Zhang, Tao Zhao, Jie Qi and Kurt J. Marfurt</td>
<td>SEG Expanded Abstract</td>
</tr>
<th colspan="2" class="pub_head">Published in 2013</th>
</tr>
<tr class="pub_descr">
<td>Title</td>
<td>Publication</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2013/Bo_2013_Geophy.pdf" target="_blank">Nonstretching NMO correction of prestack time-migrated
gathers using a matching-pursuit algorithm</a><br />Bo Zhang, Kui Zhang, Shiguang Guo, and Kurt J. Marfurt</td>
<td>Geophysics</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2013/Alzate_Interpretation.pdf" target="_blank">Integration of surface seismic, microseismic, and production logs
for shale gas characterization: Methodology and field application</a><br />John Henry Alzate and Deepak Devegowda</td>
<td>Interpretation</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2013/Verma_int-2013-Pitfalls.pdf" target="_blank">Pitfalls in prestack inversion of merged seismic surveys</a><br />Sumit Verma, Yoryenys Del Moro, and Kurt J. Marfurt</td>
<td>Interpretation</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2013/Oswaldo_2013_PhaseResdue.pdf" target="_blank">Resolving subtle stratigraphic features using spectral ridges
and phase residues</a><br />Oswaldo Davogustto, Marcílio Castro de Matos, Carlos Cabarcas, Toan Dao, and Kurt J. Marfurt</td>
<td>Interpretation</td>
<tr class="pub_content">
<td><a href="publications/2013/Murari_Interpretation.pdf" target="_blank">A window into the Proterozoic: Integrating 3D seismic, gravity,
and magnetic data to image subbasement structures in the southeast Fort Worth basin</a><br />Murari Khatiwada, G. Randy Keller, and Kurt J. Marfurt</td>
<td>Interpretation</td>
<tr class="pub_content">
<td><a href="publications/2013/Kui_Interpretation.pdf" target="_blank">Seismic azimuthal anisotropy analysis after hydraulic fracturing</a><br />Kui Zhang,
Yanxia Guo, Bo Zhang, Amanda M. Trumbo and Kurt J. Marfurt</td>
<td>Interpretation</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2013/Amanda_Interpretation.pdf" target="_blank">Azimuthal variations in attributes for induced fracture detection in the Barnett Shale</a><br />Amanda M. Trumbo and Jamie P. Rich</td>
<td>Interpretation</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2013/Atish_Interpretation.pdf" target="_blank">Characterizing a Mississippian tripolitic chert reservoir using 3D unsupervised and supervised
multiattribute seismic facies analysis: An example from Osage County, Oklahoma</a><br />Atish Roy, Benjamin L. Dowdell, Kurt J. Marfurt</td>
<td>Interpretation</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2013/Nabanita_Interpretation.pdf" target="_blank">Seismic attribute driven integrated characterization of the Woodford Shale in west-central
Oklahoma</a><br />Nabanita Gupta, Supratik Sarkar, Kurt J. Marfurt</td>
<td>Interpretation</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2013/Ben_Interpretation.pdf" target="_blank">Seismic characterization of a Mississippi Lime resource play in Osage County, Oklahoma,
USA</a><br />Benjamin L. Dowdell, J. Tim Kwiatkowski, Kurt J. Marfurt</td>
<td>Interpretation</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2013/Chopra_2013_LeadingEdge_3.pdf" target="_blank">Preconditioning seismic data with 5D interpolation for computing geometric attributes</a><br />
Satinder Chopra, and Kurt J. Marfurt</td>
<td>The Leading Edge</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2013/Chopra_2013_LeadingEdge.pdf" target="_blank">Volumetric estimates of seismic reflector rotation and convergence- tools for mapping rotation about faults and seismic stratigraphy</a><br />Satinder Chopra, and Kurt J. Marfurt</td>
<td>The Leading Edge</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2013/Chopra_2013_LeadingEdge_2.pdf" target="_blank">Structural curvature versus amplitude curvature</a><br />Satinder Chopra, and Kurt J. Marfurt</td>
<td>The Leading Edge</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2013/Tengfei_SEG.pdf" target="_blank">Spectral decomposition of time- versus depth-migrated data</a><br /> Tengfei Lin, Bo Zhang, Shiguang Guo
, Kurt Marfurt, Zhonghong Wan, Yi Guo</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2013/Jamie_SEG.pdf" target="_blank">Curvature gradient attributes for improved fault characterization</a><br /> Jamie Rich, Kurt Marfurt</td>
<td>SEG Expanded Abstract</td>
</tr>
</tr>
<tr class="pub_content">
<td><a href="publications/2013/Bo_SEG.pdf" target="_blank">Semi-automated fault interpretation based on seismic attributes</a><br /> Bo Zhang, Yuancheng Liu, Nanne Hemstra, Michael Pelissier</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2013/Chopra_SEG.pdf" target="_blank">Preconditioning seismic data with 5D interpolation for computing geometric attributes</a><br /> Satinder Chopra, and Kurt J. Marfurt</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2013/Alehandro_SEG.pdf" target="_blank">Amplitude-preserving imaging of aliased data using preconditioned Kirchhoff least-squares depth migration </a>Alejandro Vargas, and Kurt J. Marfurt<br /> </td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2013/Atish_Vikram_SEG.pdf" target="_blank">Active learning algorithms in seismic facies classification </a><br />Atish Roy, Vikram Jayaram and Kurt J. Marfurt </td>
<td>SEG Expanded Abstract</td>
<tr>
<tr class="pub_content">
<td><a href="publications/2013/Gabriel_SEG.pdf" target="_blank">Seismic imaging of spur and groove structures in the San Andres Formation, Midland Basin, Texas </a><br />Gabriel Machado, Kurt J. Marfurt, Oswaldo Davogustto and Matthew Pranter </td>
<td>SEG Expanded Abstract</td>
<tr><tr class="pub_content">
<td><a href="publications/2013/Sumit_SEG.pdf" target="_blank">Seismic modeling evaluation of fault illumination in the Woodford Shale </a><br />Sumit Verma, Onur Mutlu, and Kurt J. Marfurt<br /> </td>
<td>SEG Expanded Abstract</td>
<tr><tr class="pub_content">
<td><a href="publications/2013/Toan_SEG.pdf" target="_blank">Seismic data decomposition using singular points with a matching pursuit scheme </a><br />Toan Dao and Kurt J. Marfurt<br /> </td>
<td>SEG Expanded Abstract</td>
<tr><tr class="pub_content">
<td><a href="publications/2013/Zonghu_SEG.pdf" target="_blank">Characterizing a fault-zone and associated fractures using lab experiments and attribute-based seismic analysis: an example from Woodford Shale, Anadarko basin, Oklahoma</a><br />Zonghu Liao, Ze’ev Reches, Kurt J. Marfurt and Nabanita Gupta<br /> </td>
<td>SEG Expanded Abstract</td>
<tr>
<tr><tr class="pub_content">
<td><a href="publications/2013/Atish_Vikram_URTec.pdf" target="_blank">Distance Metric Based Multi-Attribute Seismic Facies Classification to Identify Sweet Spots within the Barnett shale: A Case Study from the Fort Worth Basin, TX </a><br />Atish Roy, Vikram Jayaram and Kurt J. Marfurt<br /> </td>
<td>URTeC Abstract</td>
<tr><tr class="pub_content">
<td><a href="publications/2013/Shiguang_URTeC.pdf" target="_blank">Correlation of Azimuthal AVO Gradient Anisotropic Analysis and Curvature on Prediction of Fractures on Barnett Shale</a><br />Shiguang Guo, Bo Zhang, Tengfei Lin and Kurt J. Marfurt<br /> </td>
<td>URTeC Abstract</td>
<tr>
<tr><tr class="pub_content">
<td><a href="publications/2013/Del_Moro_et_al_2013_Shale_Shaker.pdf" target="_blank">Why should we pay for merged survey that contains the data we already have? An Oklahoma Redfork Example </a><br /> Yoryenys Del Moro, Alfredo Fernandez Abad and Kurt J. Marfurt<br /> </td>
<td>Shale Shaker</td>
<tr>
<th colspan="2" class="pub_head">Published in 2012</th>
</tr>
<tr class="pub_descr">
<td>Title</td>
<td>Publication</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2012/Refunjol_et_al_2012.pdf" target="_blank">Integration of hydraulically induced microseismic event locations with active seismic attributes: A North Texas Barnett Shale case study</a><br />Xavier E. Refunjol, Katie M. Keranen, Joël H. Le Calvez, and Kurt J. Marfurt</td>
<td>Geophysics</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2012/2_Chopra_et_al_2012.pdf" target="_blank">Evolution of seismic interpretation during the last three decades</a><br />Satinder Chopra, and Kurt J. Marfurt</td>
<td>The Leading Edge</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2012/3_Chopra_et_al_2012.pdf" target="_blank">Seismic attribute expression of differential compaction</a><br />Satinder Chopra, and Kurt J. Marfurt</td>
<td>The Leading Edge</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2012/3_Roy_2012_et_al.pdf" target="_blank">Characterizing a Mississippian Tripolitic Chert reservoir using 3D unsupervised seismic facies analysis and well logs: an example from Osage County, Oklahoma</a><br />Atish Roy, Benjamin L. Dowdell, and Kurt J. Marfurt</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2012/4_Dowdell_et_al_2012.pdf" target="_blank">An integrated study of a Mississippian tripolitic chert reservoir Osage County, Oklahoma, USA</a><br /> Benjamin L. Dowdell, Atish Roy,and Kurt J. Marfurt</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2012/5_Bradely_et_al_2012.pdf" target="_blank">Using an HSV color map to visualize spectral phase and magnitude information for an incised valley system in the Anadarko Basin, Oklahoma, USA</a><br /> Bradley C. Wallet, Oswaldo Davogustto, Ralph Daber, and Kurt J. Marfurt</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2012/6_Verma_et_al_2012.pdf" target="_blank">Mapping high frackability and high TOC zones in the Barnett Shale: Supervised Probabilistic Nueral Netwprk vs. unsupervised multi attribute Kohnen SOM</a><br /> Sumit Verma, Atish Roy, Roderick Perez, and Kurt J. Marfurt</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2012/7_Chopra_et_al_2012.pdf" target="_blank">Shale gas reservoir characterization workflows</a><br /> Satinder Chopra, Ritesh K. Sharma, James Keay, and Kurt J. Marfurt</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2012/8_Marcilio_et_al_2012.pdf" target="_blank">Improving reservoir geometry by integrating continuous wavelet transform seismic attributes</a><br /> Marcilio Castro de Matos,Oswaldo Davogustto, and Kurt J. Marfurt</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2012/9_White_et_al_2012.pdf" target="_blank">Calibration of surface seismic attributes to natural fractures using horizontal image logs,Mississippian Lime, Osage County, Oklahoma</a><br /> Henry White, Ben Dowdell, Kurt J. Marfurt, and Ze’ev Reches</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2012/10_Chopra_et_al_2012.pdf" target="_blank">Interesting directions being pursued in seismic curvature attribute analysis</a><br /> Satinder Chopra, and Kurt J. Marfurt</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2012/11_Shiguang_et_al_2012.pdf" target="_blank">Noise suppression using preconditioned least-squares prestack time migration: Application to the Mississippian Limestone</a><br /> Shiguang Guo, Bo Zhang, and Kurt J. Marfurt</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2012/12_Alzate_et_al_2012.pdf" target="_blank">The value of production logging combined with 3D surface seismic in unconventional plays characterization</a><br /> John Henry Alzate, Roderick Perez, Deepak Devegowda, and Kurt J. Marfurt</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2012/13_Emilio_et_al_2012.pdf" target="_blank">Seismic characterization of delta front sand bodies in Lower Magdalena Valley basin and their potentiality as reservoirs in Cienaga de Oro Formation, Colombia.</a><br />Emilio J. Torres, Kurt J. Marfurt,and Carlos Molinares</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2012/14_Sunday_et_al_2012.pdf" target="_blank">Time-lapse (4D) seismic effects: Reservoir sensitivity to stress and water saturation</a><br /> Sunday O. Amoyedo, Kurt J. Marfurt and Roger M. Slatt</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2012/15_Yanxia_et_al_2012.pdf" target="_blank">Quantitative correlation of fluid flow to curvature lineaments</a><br /> Guo Yanxia , Zhang Kui, and Kurt J. Marfurt</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2012/16_Melia_et_al_2012.pdf" target="_blank">Framework for EUR correlation to Seismic Attributes in the Barnett Shale, TX</a><br /> Melia Da Silva, and Kurt J. Marfurt</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2012/17_Ozan_et_al_2012.pdf" target="_blank">Applying an adaptive subtraction technique to suppress the acquisition footprint pattern as seen on geometric attributes: A Red Fork Formation case study</a><br /> Yavuz Ozan ELIS and Kurt J. Marfurt</td>
<td>SEG Expanded Abstract</td>
</tr>
<th colspan="2" class="pub_head">Published in 2011</th>
</tr>
<tr class="pub_descr">
<td>Title</td>
<td>Publication</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2011/elebiju_etal_aapgbull2011.pdf" target="_blank">Integrated geophysical studies of the basement structures, the Mississippi chert,and the Arbuckle Group of Osage County region, Oklahoma</a><br />Olubunmi O. Elebiju, Shane Matson, G. Randy Keller, and Kurt J. Marfurt</td>
<td>AAPG Bulletin</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2011/chopra_and_marfurt_CSEG2011.pdf" target="_blank">Interesting pursuits in seismic curvature attribute analysis</a><br />Satinder Chopra and Kurt J. Marfurt</td>
<td>CSEG Recorder</td>
</tr>
<!--
<tr class="pub_content">
<td><a href="publications/2011/Davogustto_and_Marfurt_GCSSEPM.pdf" target="_blank">Footprint suppression applied to legacy data volumes</a>
<br />Oswaldo Davogustto and Kurt J. Marfurt</td>
<td>GCSSEPM</td>
</tr>
-->
<tr class="pub_content">
<td><a href="publications/2011/Matos_et_al_2011.pdf" target="_blank">Detecting stratigraphic discontinuities using time-frequency seismic phase residues</a>
<br />Marcilio Castro de Matos, Oswaldo Davogustto, Kui Zhang, and Kurt J. Marfurt</td>
<td>Geophysics</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2011/sunday_etal_TLE2011.pdf" target="_blank">Time-lapse (4D) effect and reservoir sand production pattern in a mature North Sea field</a>
<br />Sunday Amoyedo, Roger M. Slatt, and Kurt J. Marfurt</td>
<td>The Leading Edge</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2011/refunjol_etal_TLE2011.pdf" target="_blank">Inversion and attribute-assisted hydraulically induced microseismic frature characterization in the North Texas Barnett Shale</a>
<br />Xavier E. Refunjol, Kurt J. Marfurt, and Joel H. Le Calvez</td>
<td>The Leading Edge</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2011/dao_and_marfurt_seg2011.pdf" target="_blank">The value of visualization with more than 256 colors</a><br />Toan Dao* and Kurt J. Marfurt</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2011/guo_and_marfurt_seg2011.pdf" target="_blank">Diffraction image-application to a Fractured Limestone</a><br />Shiguang Guo* and Kurt J. Marfurt</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2011/gupta_sarkar_and_marfurt_seg2011.pdf" target="_blank">Seismic characterization of the Woodford shale in the Anadarko basin</a>
<br />Nabanita Gupta*, Supratik Sarkar, and Kurt J. Marfurt</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2011/matos_and_marfurt_seg2011.pdf" target="_blank">Inverse Continuous Wavelet Transform "Deconvolution"</a><br />Marcilio Matos* and Kurt J. Marfurt</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2011/roy_and_marfurt_seg2011.pdf" target="_blank">Cluster assisted 3D and 2D unsupervised seismic facies analysis, an example from the Barnett Shale Formation in the Fort Worth Basin, Texas</a>
<br />Atish Roy* and Kurt J. Marfurt</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2011/staples_marfurt_and_reches_seg2011.pdf" target="_blank">Curvature-fracture relations in clay experiments</a>
<br />Evan Staples*, Kurt J. Marfurt, and Ze'ev Reches</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2011/vargas_marfurt_and_zhang_seg2011.pdf" target="_blank">Suppression of aliasing artifacts on 3D land data via Constrained Least-Squares Migration</a>
<br />Alejandro Cabrales-Vargas*, Kurt J. Marfurt, and Bo Zhang</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2011/yenugu_and_marfurt_seg2011.pdf" target="_blank">Relation between seismic curvatures and fractures identified from image logs - application to the Mississippian reservoirs of Oklahoma, USA</a>
<br />Malleswar Yenugu* and Kurt J. Marfurt</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2011/yenugu_marfurt_wickstrom_and_matson_seg2011.pdf" target="_blank">Correlation of AVO inversion methods with porosity seen on logs and cores: A case study for Mississippian chert reservoir of Oklahoma, USA</a>
<br />Malleswar Yenugu, Kurt J. Marfurt, Charles Wickstrom, and Shane Matson</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr>
<th colspan="2" class="pub_head">Published in 2010</th>
</tr>
<tr class="pub_descr">
<td>Title</td>
<td>Publication</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2010/elebiju_etal_GPHY2010.pdf" target="_blank">Investigation of links between Precambrian basement structure and Paleozoic strata in the Forth Worth basin, Texas, USA, using high-resolution aeromagnetic (HRAM) data and seismic attributes</a>
<br />Olubunmi O. Elebiju, G. Randy Keller, and Kurt J. Marfurt</td>
<td>Geophysics</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2010/russian_etal_TLE2010.pdf" target="_blank">P- and S-wave delineation of the Horseshoe Atoll, Diamon-M Field, Texas, USA</a>
<br />Carlos Russian, Roderick Perez, Kurt J. Marfurt, Oswaldo Davogustto, Hani Alzahrani, amd Alison Small</td>
<td>The Leading Edge</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2010/sarkar_etal_TLE2010.pdf" target="_blank">Generation of sea-level curves from depositional pattern as seen through seismic attributes-seismic geomorphology analysis of an MTC-rich shallow sediment column, northern Gulf of Mexico</a>
<br />Supratik Sarkar, Kurt J. Marfurt, and Roger M. Slatt</td>
<td>The Leading Edge</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2010/yenugu_etal_TLE2010.pdf" target="_blank">Seismic texture analysis for reservoir prediction and characterization</a>
<br />Malleswar Yenugu, Kurt J. Marfurt, and Shane Matson</td>
<td>The Leading Edge</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2010/sunday_etal_seg2010.pdf" target="_blank">Time lapse (4D) effect in Forties Field, UK, North Sea; reservoir strain: implication for sand production</a><br />Sunday Amoyedo, Roger M. Slatt, and Kurt J. Marfurt</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2010/fisk_et_al_seg2010.pdf" target="_blank">Correlating heterogeneous production to seismic curvature attributes in an Australian coalbed methane field</a>
<br />Jeremy C. Fisk*, Kurt J. Marfurt, and Dennis Cooke</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2010/guo_et_al_seg2010.pdf" target="_blank">Seismic attribute illumination of Woodford Shale faults and fractures, Arkoma Basin, OK</a>
<br />Yanxia Guo, Kui Zhang, and Kurt J. Marfurt</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2010/marfurt_rich_seg2010.pdf" target="_blank">Beyond curvature - volumetric estimates of reflector rotation and convergence</a>
<br />Kurt J. Marfurt and Jamie Rich</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2010/matos_etal_seg2010.pdf" target="_blank">Continuous wavelet transform phase residues applied to detect stratigraphic discontinuities</a>
<br />Marcilio Matos*, Oswaldo Davogustto, Kui Zhang, and Kurt J. Marfurt</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2010/refunjol_etal_seg2010.pdf" target="_blank">Inversion and attribute-assisted hydraulically-induced microseismic fracture prediction: A North Texas Barnett Shale case study</a>
<br />Xavier E. Refunjol*, Katie M. Keranen, and Kurt J. Marfurt</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2010/roy_et_al_seg2010.pdf" target="_blank">Applying Self Ogranizing Maps of Multiple Attributes, an Example from the Red-Fork Formation, Anadarko Basin</a>
<br />Atish Roy*, Kurt J. Marfurt, and Marcilio Matos</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2010/staples_et_al_seg2010.pdf" target="_blank">Fracture analysis using 3D seismic attributes in the Hunton Limesont, Oklahoma, USA</a>
<br />Evan Staples*, Kurt J. Marfurt, and Ze'ev Reches</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2010/thompson_etal_seg2010.pdf" target="_blank">Fracture characterization through the use of azimuthally sectored attribute volumes</a>
<br />Amanda Thompson*, Jamie Rich, and Mike Ammerman</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2010/yenugu_etal_seg2010.pdf" target="_blank">Probalistic Neural Network inversion for characterization of coalbed methane</a>
<br />Malleswar Yenugu*, Jeremy C. Fisk, Kurt J. Marfurt, and Dennis Cooke</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2010/zhang_et_al_seg2010.pdf" target="_blank">Seismic azimuthal impedance anisotropy in the Barnett Shale</a>
<br />Kui Zhang, Bo Zhang, J. Tim Kwiatkowski, and Kurt J. Marfurt</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr>
<th colspan="2" class="pub_head">Published in 2009</th>
</tr>
<tr class="pub_descr">
<td>Title</td>
<td>Publication</td>
</tr>
<tr class="pub_content">
</tr>
<tr class="pub_content">
<td><a href="publications/2009/Victor_TLE.pdf" target="_blank">Impact of shallow volcanics on seismic data quality in Chicontepec Basin, Mexico</a><br />Victor Pena, Sergio Chávez-Pérez, Marco Vázquez-García, and Kurt J. Marfurt </td>
<td>The Leading Edge</td>
</tr>
<td><a href="publications/2009/angelo_etal_SEG2009.pdf" target="_blank">Integrated seismic texture segmentation and clustering analysis to improved delineation of reservoir geometry</a>
<br />Miguel Angelo*, Marcilio Matos, and Kurt J. Marfurt</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2009/baruch_etal_SEG2009.pdf" target="_blank">Geophysical evidence of basement controlled faulting in the Ellenburger Group and Viola Limestone, Fort Worth Basin, Texas</a>
<br />Elizabeth Baruch, Olubunmi O. Elebiju, and Roderick Perez</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2009/davogustto_etal_SEG2009_1.pdf" target="_blank">Delineation by seismic attribute algorithms of fracture patterns in a 3D GPR volume</a>
<br />Oswaldo Davogustto*, Roger A. Young, and Ibrahim Cemen</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2009/davogustto_etal_SEG2009_2.pdf" target="_blank">Footprint removal using adaptive subtraction algorithms for seismic attribute quality enhancement: A case study of Anadarko Basin Red Fork incised valley system</a>
<br />Oswaldo Davogustto*, Yoscel Suarez, and Kurt J. Marfurt</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2009/del_moro_etal_SEG2009.pdf" target="_blank">Seismic modeling of incised valley fills of the Red Fork Formation in the Anadarko Basin... A way to resolve invisible channels</a>
<br />Yoryenys Del Moro*, Yoscel Suarez*, and Kurt J. Marfurt</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2009/guo_etal_SEG2009.pdf" target="_blank">Map complex fracture systems as termite mounds - a fast marching approach</a>
<br />Hao Guo, Kurt J. Marfurt, and Jiang Shu</td>
<td>SEG Expanded Abstracts</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2009/mai_etal_SEG2009_1.pdf" target="_blank">Curvatures lineament and multi-attribute display of full-stack PP, SS, and Acoustic Impedance seismic data - Diamond-M field, West Texas</a>
<br />Ha T. Mai*, Carlos F. Russian, Kurt J. Marfurt, Roger A. Young, and Alison Weir Small</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2009/mai_etal_SEG2009_2.pdf" target="_blank">Coherence and volumetric curvatures and their spatial relationship to faults and folds, an example from Chicontepec basin, Mexico</a>
<br />Ha T. Mai*, Kurt J. Marfurt, and Sergio Chavez-Perez</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2009/mai_etal_SEG2009_3.pdf" target="_blank">Multi-attributes display and rose diagrams for interpretation of seismic fracture lineaments, example from Cuu Long basin, Vietnam</a>
<br />Ha T. Mai*, Kurt J. Marfurt, and Mai Thanh Tan</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2009/russian_et_al_seg2009.pdf" target="_blank">Volume Attribute Analysis of PP and SS data from the Horshoe Atoll, TX</a>
<br />Carlos F. Russian*, Roger A. Young, Kurt J. Marfurt, and Alison Weir Small</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2009/singh_etal_SS2009.pdf" target="_blank">Reservoir characterization of unconventional gas shale reservoirs: example from the Barnett Shale, Texas, USA</a>
<br />Prerna Singh, Roger Slatt, Gabriel Borges, Roderick Perez, Romina Portas, Kurt J. Marfurt, Michael Ammerman, and william Coffey</td>
<td>Shale Shaker - OCGS</td>
</tr>
<tr>
<th colspan="2" class="pub_head">Published in 2008</th>
</tr>
<tr class="pub_descr">
<td>Title</td>
<td>Publication</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2008/guo_etal_GPHY2008.pdf" target="_blank">Mapping multiple attributes to three- and four-component color models - A tutorial</a>
<br />Hao Guo, Sean Lewis, and Kurt J. Marfurt</td>
<td>Geophysics</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2008/perez_and_marfurt_GPHY2008.pdf" target="_blank">New azimuthal binning for improved delineation of faults and fractures</a>
<br />Gabriel Perez and Kurt J. Marfurt</td>
<td>Geophysics</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2008/perez_and_marfurt_GPHY2008_2.pdf" target="_blank">Warping prestack imaged data to improve stack quality and resolution</a>
<br />Gabriel Perez and Kurt J. Marfurt</td>
<td>Geophysics</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2008/aktepe_etal_TLE2008.pdf" target="_blank">Attribute expression of basement faulting - Time versus depth migration</a>
<br />Suat Aktepe, Kurt J. Marfurt, and Roderick Perez</td>
<td>The Leading Edge</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2008/chopra_and_marfurt_TLE2008.pdf" target="_blank">Emerging and future trends in seismic attributes</a><br />Satinder Chopra and Kurt J. Marfurt</td>
<td>The Leading Edge</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2008/el-mowafy_and_marfurt_TLE2008.pdf" target="_blank">Structure architecture interpretation of the middle Frio Formation using 3D seismic attributes and well logs: an example from the Texas Gulf Coast of the United States</a>
<br />Hamed El-Mowafy and Kurt J. Marfurt</td>
<td>The Leading Edge</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2008/wallet_and_marfurt_TLE2008.pdf" target="_blank">A grand tour of multispectral components: A tutorial</a>
<br />Bradley C. Wallet and Kurt J. Marfurt</td>
<td>The Leading Edge</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2008/cvetkovic_et_al_seg2008.pdf" target="_blank">Some applications of wavelet transform in seismic data processing</a>
<br />Milos Cvetkovic*, Nebojsa Pralica, Kurt J. Marfurt, and Sergio Chavez-Perez</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2008/cvetkovic_et_al_seg2008_2.pdf" target="_blank">Comparison of some algorithms for acquisition footprint supporession and their effect on attribute analysis</a>
<br />Milos Cvetkovic*, Nebojsa Pralica, Kurt J. Marfurt, and Sergio Chavez-Perez</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2008/falconer_and_marfurt_seg2008.pdf" target="_blank">Attribute-driven footprint suppression</a><br />Scott Falconer* and Kurt J. Marfurt</td>
<td>SEG Expanded Abstracts</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2008/lewis_seg2008.pdf" target="_blank">Attribute-aided Interpretation of Common Angle Volumes</a><br />Sean Lewis</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2008/liner_et_al_seg2008.pdf" target="_blank">Case History of a CO2 Sequestration Study in Progress, Dickman Field, Kansas</a>
<br />Christopher L. Liner*, Tom Bjorklund, Jianjung Zeng, and Kurt J. Marfurt</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2008/lozano_and_marfurt_seg2008.pdf" target="_blank">3D seismic visualization of shelf-margin to slop channels using curvature attributes</a>
<br />Felipe A. Lozano* and Kurt J. Marfurt</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2008/mai_and_marfurt_seg2008.pdf" target="_blank">Attribute Illumination of Basement Faults, Cuu Long Basin, Vietnam</a>
<br />Ha T. Mai* and Kurt J. Marfurt</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2008/matos_et_al_seg2008.pdf" target="_blank">Brazilian deep water carbonate reservoir study using the Wavelet Transform Teager-Kaiser Energy</a>
<br />Marcilio Matos*, Kurt J. Marfurt, Paulo Johann, and Joao Adolfo Rosseto</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2008/sarkar_et_al_seg2008.pdf" target="_blank">Attribute Expression of Mass Transport Deposits in an Intraslope Basin - A Case Study</a>
<br />Supratik Sarkar*, Kurt J. Marfurt, Belinda Ferrero Hodgson, and Roger M. Slatt</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2008/suarez_et_al_seg2008.pdf" target="_blank">Seismic attribute-assisted interpreation of channel geometries and infill lithology: A case study of Anadarko Basin Red Fork channels</a>
<br />Yoscel Suarez*, Kurt J. Marfurt, and Mark Falk</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2008/zhang_et_al_seg2008.pdf" target="_blank">Volumetric application of skewed spectra</a>
<br />Kui Zhang*, Kurt J. Marfurt, and Yanxia Guo</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2008/zhang_et_al_seg2008_2.pdf" target="_blank">Time-frequency domain spectral balancing and phase dispersion compensation</a>
<br />Kui Zhang*, Kurt J. Marfurt, Marcilio Matos, and Tim Kwiatkowski</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2008/guo_etal_2008.pdf" target="_blank">Principal Components Analysis of Spectral Components</a>
<br />Hao Guo, Kurt J. Marfurt, and Jianlei Liu</td>
<td><br /></td>
</tr>
<tr>
<th colspan="2" class="pub_head">Published in 2007</th>
</tr>
<tr class="pub_descr">
<td>Title</td>
<td>Publication</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2007/hart_etal_BCPG2007.pdf" target="_blank">Blind thrusts and fault-related folds int eh Upper Cretaceous Alberta Group, deep basin, west-central Alberta: implications for fractured reservoirs</a>
<br />Bruce S. Hart, Bogdan L. Varban, Kurt J. Marfurt, and A. Guy Plint</td>
<td>Bulletin of Canadian Petroleum Geology</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2007/chopra_and_marfurt_FB2007.pdf" target="_blank">Volumetric curvature attributes for fault/fracture characterization</a>
<br />Satinder Chopra and Kurt J. Marfurt</td>
<td>First Break</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2007/al-dossary_and_marfurt_GPHY2007.pdf" target="_blank">Lineament-preserving filtering</a><br />Saleh al-Dossary and Kurt J. Marfurt</td>
<td>Geophysics</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2007/liu_and_marfurt_GPHY2007.pdf" target="_blank">Instantaneous spectral attributes to detect channels</a><br />Jianlei Liu and Kurt J. Marfurt</td>
<td>Geophysics</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2007/perez_and_marfurt_GPHY2007.pdf" target="_blank">Improving lateral and vertical resolution of seismic images by correcting for wavelet stretch in commong-angle migration</a>
<br />Gabriel Perez and Kurt J. Marfurt</td>
<td>Geophysics</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2007/coker_etal_GCAGST2007.pdf" target="_blank">Fracture Patterns within Mudstones on the Flanks of a Salt Dome: Syneresis or Slumping?</a>
<br />Morenike O. Coker, Janok P. Bhattacharya, and Kurt J. Marfurt</td>
<td>Gulf Coast Association of Geological Societies Transactions</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2007/chopra_and_marfurt_TLE2007.pdf" target="_blank">Curvature attribute applications to 3D surface seismic data</a>
<br />Satinder Chopra and Kurt J. Marfurt</td>
<td>The Leading Edge</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2007/chopra_and_marfurt_TLE2007.pdf" target="_blank">Volumetric curvature attributes add value to 3D seismic data interpretation</a>
<br />Satinder Chopra and Kurt J. Marfurt</td>
<td>The Leading Edge</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2007/akintokunbo_and_marfurt_SEG2007.pdf" target="_blank">Seismic Geomorphology of a salt-controlled Deltaic Deopositional System</a>
<br />Oyetayo M. Akintokunbo* and Kurt J. Marfurt</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2007/aktepe_and_marfurt_SEG2007.pdf" target="_blank">Imaging of Basement Control of Shallow Deformation; Application to Fort Worth Basin</a>
<br />Suat Aktepe, and Kurt J. Marfurt</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2007/blumentritt_and_marfurt_SEG2007.pdf" target="_blank">Highlight Volumes: Condensing Spectral Decomposition to Two Volumes</a>
<br /> Charles H. Blumentritt* and Kurt J. Marfurt</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2007/chopra_and_marfurt_SEG2007.pdf" target="_blank">Volumetric curvature attributes adding value to 3D seismic data interpretation</a>
<br />Satinder Chopra and Kurt J. Marfurt</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2007/chopra_and_marfurt_SEG2007_2.pdf" target="_blank">Seismic attributes for fault/fracture characterization</a>
<br />Satinder Chopra and Kurt J. Marfurt</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2007/cvetkovic_etal_SEG2007.pdf" target="_blank">2D Stationary Wavelet Transform based Acquistion Footprint Suppression</a>
<br />Milos Cvetkovic, Scott Falconer, Kurt J. Marfurt, and Sergio Chavez-Perez</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2007/perez_etal_SEG2007.pdf" target="_blank">Azimuthal binning for improved fracture delineation</a>
<br />Gabriel Perez, Kurt J. Marfurt, and Susan Nissan</td>
<td>SEG Expanded Abstract</td>
</tr>
<tr>
<th colspan="2" class="pub_head">Published in 2006</th>
</tr>
<tr class="pub_descr">
<td>Title</td>
<td>Publication</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2006/al-dossary_and_marfurt_GPHY2006.pdf" target="_blank">3D volumetric multispectral estiates of reflector curvature and rotation</a>
<br />Saleh al-Dossary and Kurt J. Marfurt</td>
<td>Geophysics</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2006/blumentritt_etal_GPHY2006.pdf" target="_blank">Volume-based curvature computation illuminate fracture orientations - Early to mid-Paleozoic, Central Basin Platform, west Texas</a>
<br />Charles H. Blumentritt, Kurt J. Marfurt, and E. Charlotte Sullivan</td>
<td>Geophysics</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2006/fu_etal_GPHY2006.pdf" target="_blank">Rock-property and seismic-attribute analysis of a chert reservoir in the Devonian Thirty-one Formation, west Texas, USA</a>
<br />Dongjun Fu, E. Charlotte Sulliva, and Kurt J. Marfurt</td>
<td>Geophysics</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2006/marfurt_GPHY2006.pdf" target="_blank">Robust estimates of 3D reflector dip and azimuth</a><br />Kurt J. Marfurt</td>
<td>Geophysics</td>
</tr>
<tr class="pub_content">
<td><a href="publications/2006/sullivan_etal_GPHY2006.pdf" target="_blank">Application of new seismic attributes to collapse chimneys in the Fort Worth Basin</a>
<br />E. Charlotte Sullivan, Kurt J. Marfurt, Alfred Lacazette, and Mike Ammerman</td>
<td>Geophysics</td>