-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
619 lines (485 loc) · 26.9 KB
/
index.html
File metadata and controls
619 lines (485 loc) · 26.9 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<title>Marcos Vinícius</title>
<!-- Bootstrap core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom fonts for this template -->
<link href="https://fonts.googleapis.com/css?family=Saira+Extra+Condensed:500,700" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Muli:400,400i,800,800i" rel="stylesheet">
<link href="vendor/fontawesome-free/css/all.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/resume.min.css" rel="stylesheet">
<!-- My Custom CSS -->
<link href="css/style_row.css" rel="stylesheet">
<!-- icons academics -->
<link href="academicons-1.8.6/css/academicons.css" rel="stylesheet">
<!-- icone do site -->
<link rel="icon" type="img/ico" href="img/favicon.png">
</head>
<body id="page-top">
<nav class="navbar navbar-expand-lg navbar-dark bg-primary fixed-top" id="sideNav">
<a class="navbar-brand js-scroll-trigger" href="#page-top">
<span class="d-block d-lg-none">Marcos Vinícius</span>
<span class="d-none d-lg-block">
<img class="img-fluid img-profile rounded-circle mx-auto mb-2" src="img/PXL_20231110_154849722.jpg" alt="">
</span>
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<!-- Menulateral -->
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#education">Education</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#experience">Experience</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#skills">Skills</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#interests">Interests</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#awards">Publications</a>
</li>
<!-- <li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#app">Applications</a>
</li> -->
</ul>
</div>
</nav>
<!-- *********************** About ************************* -->
<div class="container-fluid p-0">
<section class="resume-section p-3 p-lg-5 d-flex d-column" id="about">
<div class="my-auto">
<h1 class="mb-0">Marcos
<span class="text-primary">Vinícius</span>
</h1>
<div class="subheading mb-5"> ADHEMAR DE BARROS AVENUE · Ondina · Salvador · BA · 40170110 ·
<a href="mailto:marcosvsf@ufba.br">marcosvsf@ufba.br</a>
</div>
<p class="lead mb-5">
<!-- Data Science at <a href="https://neodados.com/novosite.html">Neodados</a>. -->
Ph.D. student in computer science at Federal University of Bahia (of portuguese, Universidade Federal da Bahia (UFBA)), in Brazil.
I received in 2020, my M.Sc. degree in computer science at the UFBA.
Graduated in Bachelor of Information Systems from the Federal University of Piauí in 2017.
He has experience in Computer Science, with emphasis on Image Processing, Time Series, Machine Learning and Deep Learning,
Computer Aided Detection Systems and Fuzzy Logic.
With a solid academic background, Marcos has stood out for his innovative research, reflected in publications in high-impact journals
and conferences in the field of computer science. Additionally, his collaborative experience with industry,
accumulated over more than 4 years, has been a valuable source of learning and practical application.
</p>
<!-- about me experience -->
<div class="social-icons">
<a href="https://www.linkedin.com/in/marcos-vinícius-a56622150" target="_blank">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="https://github.com/Marcos001" target="_blank">
<i class="fab fa-github"></i>
</a>
<!-- research gate -->
<a href="https://www.researchgate.net/profile/Marcos_Ferreira44" target="_blank">
<i class="fab fa-researchgate"></i>
</a>
<a href="https://www.kaggle.com/mvsfnig" target="_blank">
<i class="fab fa-kaggle"></i>
</a>
<a href="http://lattes.cnpq.br/5269154791719323" target="_blank">
<i class="ai ai-lattes-square"></i>
</a>
<a href="https://scholar.google.com.br/citations?user=vW2mWMwAAAAJ&hl=en" target="_blank">
<i class="ai ai-google-scholar"></i>
</a>
<a href="#">
<i class="fab fa-facebook-f"></i>
</a>
</div>
</div>
</section>
<hr class="m-0">
<!-- *********************** EDUCAÇÂO ************************* -->
<section class="resume-section p-3 p-lg-5 d-flex flex-column" id="education">
<div class="my-auto">
<h2 class="mb-5">Education</h2>
<div class="resume-item d-flex flex-column flex-md-row">
<div class="resume-content mr-auto">
<h3 class="mb-0">Federal university of Bahia</h3>
<div class="subheading mb-3"><a href="http://wiki.dcc.ufba.br/PGComp/">Postgraduate Program in Computer Science</a></div>
<p> Ph.D. student in the area of Artificial Intelligence</p>
<!--p>GPA: 3.56</p-->
</div>
<div class="resume-date text-md-right">
<span class="text-primary"> 2020.2 - Current </span>
</div>
</div>
<div class="resume-item d-flex flex-column flex-md-row">
<div class="resume-content mr-auto">
<h3 class="mb-0">Federal university of Bahia</h3>
<div class="subheading mb-3"><a href="http://wiki.dcc.ufba.br/PGComp/">Postgraduate Program in Computer Science</a></div>
<p> Master in the area of Artificial Intelligence</p>
<!--p>GPA: 3.56</p-->
</div>
<div class="resume-date text-md-right">
<span class="text-primary"> April 2018.1 - June 2020.1 </span>
</div>
</div>
<div class="resume-item d-flex flex-column flex-md-row mb-5">
<div class="resume-content mr-auto">
<h3 class="mb-0">FEDERAL UNIVERSITY OF PIAUI</h3>
<div class="subheading mb-3">Graduate in Information Systems</div>
<div> Automatic methodology for diagnosis of glaucoma using the Deep Learning approach </div>
<p>IRA: 8.0507</p>
</div>
<div class="resume-date text-md-right">
<span class="text-primary"> February 2014.1 - December 2017.2</span>
</div>
</div>
</div>
</section>
<hr class="m-0">
<!-- *************** Experience **************** -->
<section class="resume-section p-3 p-lg-5 d-flex flex-column" id="experience">
<div class="my-auto">
<h2 class="mb-5">Experience</h2>
<!-- neodados projeto sobe e desce -->
<div class="resume-item d-flex flex-column flex-md-row mb-5">
<div class="resume-content mr-auto">
<h3 class="mb-0">Data Science</h3>
<div class="subheading mb-3">
Estimating Origin and Destination in Public Transportation
</div>
<ul class="fa-ul mb-0">
<li>
<i class="fa-li fa fa-angle-right"></i>
Worked on training machine learning models for preprocessing and filtering of images.
</li>
<li>
<i class="fa-li fa fa-angle-right"></i>
Worked on developing an ensemble model for facial detection. The ensemble model created is more robust and accurate in
detecting faces under different adverse conditions, as it is applied in a real environment, on photos captured inside buses, with
varying lighting conditions, pose, occlusion, etc.
</li>
<li>
<i class="fa-li fa fa-angle-right"></i>
Worked on developing and fine-tuning models for facial recognition task.
</li>
<li>
<i class="fa-li fa fa-angle-right"></i>
Analyzed the racial bias present in some facial detection models, aiming to ensure that the implemented ensemble model is
unbiased and addresses ethical concerns.
</li>
<li>
<i class="fa-li fa fa-angle-right"></i>
Worked on creating an API for deploying the developed models.
</li>
<li>
<i class="fa-li fa fa-angle-right"></i>
Conducted state-of-the-art research and published articles related to the developed application.
</li>
</ul>
</div>
<div class="resume-date text-md-right">
<span class="text-primary">2019 - 2021</span>
</div>
</div>
<!-- neodados projeto de imagem -->
<div class="resume-item d-flex flex-column flex-md-row mb-5">
<div class="resume-content mr-auto">
<h3 class="mb-0">Machine Learning Engineer</h3>
<div class="subheading mb-3">
Fraud detection in public transportation
</div>
<ul class="fa-ul mb-0">
<li>
<i class="fa-li fa fa-angle-right"></i>
Data Analysis and Modeling of Different Public Transportation Databases.
</li>
<li>
<i class="fa-li fa fa-angle-right"></i>
Development of a data mining software that estimates boarding and alighting information of passengers in public transportation.
The software, given the boarding and alighting information, calculates several indices to assist in the planning and management
of public transportation.
</li>
<li>
<i class="fa-li fa fa-angle-right"></i>
Validation, analysis, and reporting of processed data.
</li>
<li>
<i class="fa-li fa fa-angle-right"></i>
Literature review and writing scientific articles on the obtained results.
</li>
</ul>
</div>
<div class="resume-date text-md-right">
<span class="text-primary">2022 - Current</span>
</div>
</div>
<!-- iniciação científica -->
<div class="resume-item d-flex flex-column flex-md-row mb-5">
<div class="resume-content mr-auto">
<h3 class="mb-0">VOLUNTARY SCIENTIFIC INITIATION</h3>
<div class="subheading mb-3">
Segmentation of Glaucomatous Images Using Deep Learning-Based Approaches
</div>
<p>
Glaucoma is a complex multifactorial disease, with specific characteristics, in which damage occurs in the optic nerve and progressive and irreversible loss of the visual field. According to the World Health Organization there are around 60 million Glaucomatous diseases worldwide, with more than 2.4 million cases occurring each year. There is still no cure for Glaucoma, but early detection and preventive treatments are the only ways to prevent total loss of vision in affected patients. Thus, this project aims to create a new method of automatic segmentation of Glaucoma using Deep Learning approaches based on the analysis of digital images of the fundus of the eye.
</p>
</div>
<div class="resume-date text-md-right">
<span class="text-primary">October 2016 - July 2017</span>
</div>
</div>
<!-- projeto de extensao -->
<div class="resume-item d-flex flex-column flex-md-row mb-5">
<div class="resume-content mr-auto">
<h3 class="mb-0">Extension Project</h3>
<div class="subheading mb-3">
Web and mobile application for the dissemination of information from the various sectors and segments of the Senator Campus Helvídio Nunes of Barros.
</div>
<p>
The project proposed the implementation and implementation of an application on the web and mobile platforms for the dissemination of information from the various sectors and segments of the UFPI - Senador Helvídio Nunes de Barros campus, so that content production and related discussions are decentralized and accessible.
</p>
</div>
<div class="resume-date text-md-right">
<span class="text-primary"> November 2016 - December 2017</span>
</div>
</div>
<!-- desenvolvimento do app vila -->
<div class="resume-item d-flex flex-column flex-md-row mb-5">
<div class="resume-content mr-auto">
<h3 class="mb-0">JUNIOR DEVELOPER IOS</h3>
<div class="subheading mb-3">VILA</div>
<p>
Application that presents the city of Oeiras-PI to tourists in a clear and simple way, taking into account not only physical factors but also expose their cultural elements.
</p>
</div>
<div class="resume-date text-md-right">
<span class="text-primary">November 2015 - November 2016</span>
</div>
</div>
</div>
</section>
<!-- *********************** Habilidades ************************* -->
<hr class="m-0">
<section class="resume-section p-3 p-lg-5 d-flex flex-column" id="skills">
<div class="my-auto">
<h2 class="mb-5">Skills</h2>
<div class="subheading mb-3">Programming Languages & Tools</div>
<ul class="list-inline dev-icons">
<!-- -->
<li class="list-inline-item">
<i class="fab fa-html5"></i>
</li>
<li class="list-inline-item">
<i class="fab fa-css3-alt"></i>
</li>
<li class="list-inline-item">
<i class="fab fa-js-square"></i>
</li>
<!-- Languages -->
<li class="list-inline-item">
<i class="fab fa-python"></i>
</li>
<li class="list-inline-item">
<i class="fab fa-r-project"></i>
</li>
<li class="list-inline-item">
<i class="fab fa-java"></i>
</li>
<li class="list-inline-item">
<i class="fab fa-markdown"></i>
</li>
<!-- tools open source -->
<li class="list-inline-item">
<i class="fab fa-git-square"></i>
</li>
<li class="list-inline-item">
<i class="fab fa-github"></i>
</li>
<li class="list-inline-item">
<i class="fab fa-linux"></i>
</li>
<li class="list-inline-item">
<i class="fab fa-docker"></i>
</li>
<li class="list-inline-item">
<i class="fab fa-sql"></i>
</li>
</ul>
<div class="subheading mb-3">Building</div>
<ul class="fa-ul mb-0">
<li>
<i class="fa-li fa fa-check"></i>
Data Analysis
</li>
<li>
<i class="fa-li fa fa-check"></i>
Data Mining
</li>
<li>
<i class="fa-li fa fa-check"></i>
Neural Networks, Deep and Shallow using: Pytorch, Tensorflow and Keras
</li>
<li>
<i class="fa-li fa fa-check"></i>
Object Detection Models
</li>
<li>
<i class="fa-li fa fa-check"></i>
Face Recognition
</li>
<li>
<i class="fa-li fa fa-check"></i>
Segmentation and / or clustering of data
</li>
<li>
<i class="fa-li fa fa-check"></i>
Data Visualization (matplotlib, seaborn, plotly, ggplot)
</li>
</ul>
</div>
</section>
<hr class="m-0">
<section class="resume-section p-3 p-lg-5 d-flex flex-column" id="interests">
<div class="my-auto">
<h2 class="mb-5">Interests</h2>
<p>
In addition to being a researcher in the area of Artificial Intelligence (AI) reading a lot, I also like to practice challenges in the field, as in Kaggle competitions that help a lot to set learning in AI. On holidays, getting out of the routine, I practice activities such as fishing, swimming, soccer, sports, and cycling.
</p>
<p class="mb-0">
When indoors, I watch science fiction, fantasy and documentary films. I am an aspiring chef, and I spend a great deal of my free time exploring the latest technological advancements in the world of Machine Learning primarily.
</p>
</div>
</section>
<hr class="m-0">
<section class="resume-section p-3 p-lg-5 d-flex flex-column" id="awards">
<div class="my-auto">
<h2 class="mb-5"> Publications & Certifications</h2>
<ul class="fa-ul mb-0">
<!-- 2023 -->
<li>
<a href="https://doi.org/10.1109/IJCNN54540.2023.10192027" target="_blank"><i class="fas fa-book"></i></a>
FERREIRA, M. V. S.; LOPES, T. J. S. ; RIOS, R. A. ; RIOS, TATIANE N.
<b class='text-primary'> Modeling Protein Activities and Mutations with Graph Neural Networks: Insights into Hemophilia.</b>
In: IEEE International Joint Conference on Neural Networks, 2023, Gold Coast. IEEE International Joint Conference on Neural Networks (IJCNN 2023), 2023.
</li>
<hr/>
<li>
<a href="https://doi.org/10.3389/fbinf.2023.1152039" target="_blank"><i class="fas fa-book"></i></a>
FERREIRA, MARCOS V.; NOGUEIRA, TATIANE ; RIOS, RICARDO A. ; LOPES, TIAGO J. S.
<b class='text-primary'> C. A graph-based machine learning framework identifies critical properties of FVIII that lead to hemophilia A.</b>
Frontiers in Bioinformatics, v. 3, p. 34, 2023.
</li>
<hr/>
<li>
<a href="https://www.nature.com/articles/s41598-023-36528-z" target="_blank"><i class="fas fa-book"></i></a>
FERREIRA-MARTINS, ANDRÉ J. ; CASTALDONI, RODRIGO ; ALENCAR, BRENNO M. ; FERREIRA, MARCOS V. ; NOGUEIRA, TATIANE ; RIOS, RICARDO A. ; LOPES, TIAGO J. S. .
<b class='text-primary'>Full-scale network analysis reveals properties of the FV protein structure organization.</b> Scientific Reports, v. 13, p. 1, 2023.
</li>
<hr/>
<li>
<a href="https://doi.org/10.1093/bioadv/vbac098" target="_blank"><i class="fas fa-book"></i></a>
Tiago J S Lopes, Ricardo A Rios, Tatiane N Rios, Brenno M Alencar, Marcos V Ferreira, Eriko Morishita.
<b class='text-primary'> Computational analyses reveal fundamental properties of the AT structure related to thrombosis.</b>
Bioinformatics Advances, Volume 3, Issue 1, 2023, vbac098.
</li>
<hr/>
<!-- 2022 -->
<li>
<a href="https://doi.org/10.1007/s11042-022-12806-2" target="_blank"><i class="fas fa-book"></i></a>
CANÁRIO, JOÃO PAULO ; FERREIRA, MARCOS VINÍCIUS ; FREIRE, JUNOT ; CARVALHO, MATHEUS ; RIOS, RICARDO.
<b class='text-primary'> A face detection ensemble to monitor the adoption of face masks inside the public transportation during the COVID-19 pandemic.</b>
Multimedia Tools and Applications, 2022.
</li>
<hr/>
<li>
<a href="https://doi.org/10.1016/j.simpa.2022.100230" target="_blank"><i class="fas fa-book"></i></a>
FERREIRA, MARCOS VINÍCIUS DOS SANTOS; RIOS, RICARDO; RIOS, TATIANE NOGUEIRA.
<b class='text-primary'> sci-FTS: Using soft clustering on Intrinsic Mode Functions to model Fuzzy Time Series.</b>
Software Impacts, v. 11, p. 100230, 2022.
</li>
<hr/>
<!-- 2021 -->
<li>
<a href="https://doi.org/10.1016/j.asoc.2021.108011" target="_blank"><i class="fas fa-book"></i></a>
FERREIRA, MARCOS VINÍCIUS DOS SANTOS; RIOS, RICARDO; MELLO, RODRIGO; RIOS, TATIANE NOGUEIRA.
<b class='text-primary'> Using fuzzy clustering to address imprecision and uncertainty present in deterministic components of time series.</b>
APPLIED SOFT COMPUTING, v. 113, p. 108011, 2021.
</li>
<hr/>
<li>
<a href="#" target="_blank"><i class="fas fa-book"></i></a>
FERREIRA, M. V. S.; ALMEIDA, A. ; CANARIO, J. P. ; SOUZA, M. ; NOGUEIRA, T. ; RIOS, R. A.
<b class='text-primary'> Ethics of AI: Do the face detection models act with prejudice?.</b>
In: Brazilian Conference on Intelligent Systems (BRACIS), 2021, São Paulo. Proceedings of the 9th Brazilian Conference on Intelligent Systems (BRACIS), 2021.
</li>
<hr/>
<!-- 2019 -->
<li>
<a href="https://doi.org/10.1016/j.eswa.2018.06.010" target="_blank"><i class="fas fa-book"></i></a>
FERREIRA, MARCOS VINÍCIUS DOS SANTOS; FILHO, A. O. DE C.; DALÍLIA DE SOUSA, A.; C. S., ARISTÓFANES; G., MARCELO.
<b class='text-primary'>Convolutional neural network and texture descriptor-based automatic detection and diagnosis of glaucoma.</b>
EXPERT SYSTEMS WITH APPLICATIONS, v. 110, p. 250-263, 2018.
</li>
<hr/>
<li>
<a href="http://www.enucomp.com.br/2017/enucomp_anaisX_2017.pdf#page=686" target="_blank"><i class="fas fa-book"></i></a>
FERREIRA, M. V. S.; CARVALHO, E. D.; SOUSA, A. D.; CARVALHO FILHO, A. O..
<b class='text-primary'>Processamento Digital de Imagens Médicas com Python e OpenCV</b>.
In: Ricardo de Andrade L. Rabêlo, Thiago C. de Sousa e Rodrigo Augusto R. S. Baluz.. (Org.).
Anais Eletrônicos ENUCOMP 2017. 1ed. PARNAÍBA: Fundação Universidade Estadual do Piauí-FUESPI, 2017, v. , p. 678-701.
</li>
<hr/>
<li>
<a href="http://www.enucomp.com.br/2017/enucomp_anaisX_2017.pdf#page=794" target="_blank"><i class="fas fa-book"></i></a>
FERREIRA, M. V. S.; OLIVEIRA, K. M. S. ; CARVALHO FILHO, A. O. ; SOUSA, A. D..
<b class='text-primary'>Deep Learning: Uma Introdução às Redes Neurais Convolucionais.</b>
In: Ricardo de Andrade L. Rabêlo, Thiago C. de Sousa e Rodrigo Augusto R. S. Baluz.. (Org.).
Anais Eletrônicos ENUCOMP 2017. 1ed. PARNAÍBA: Fundação Universidade Estadual do Piauí-FUESPI, 2017, v. , p. 786-806.
</li>
<hr/>
<li>
<a href="https://drive.google.com/file/d/0BwtCSUYWS1EBUm83V2ZLWE9uZDA/view?usp=sharing" target="_blank"><i class="fas fa-book"></i></a>
FERREIRA, M. V. S.; SOUSA, A. D.; CARVALHO FILHO, A. O.; DRUMOND, P. M. L. L.; BARROS, P. V. S..
<b class='text-primary'>Metodologia automática para diagnóstico do glaucoma usando abordagem Deep Learning.</b>
In: Encontro Nacional de Inteligência Artificial e Computacional, 2017, Uberlândia. ENIAC. Uberlândia: SBC, 2017. v. XIV. p. 936-947..
</li>
<hr/>
<li>
<a href="http://www.enucomp.com.br/2017/enucomp_anaisX_2017.pdf#page=196" target="_blank"><i class="fas fa-book"></i></a>
CARVALHO, E. D.; FERREIRA, M. V. S.; LEAL, R.; SILVA, F. A..
<b class='text-primary'>Análise de Desempenho de um Sistema Distribuído para Segmentação de Imagens da Retina.</b>
In: Encontro Unificado de Computação - ENUCOMP, 2017, Parnaíba. Anais Eletrônicos ENUCOMP 2017. PARNAÍBA: Fundação Universidade Estadual do Piauí-FUESPI, 2017. v. 10. p. 196-203.
</li>
<hr/>
<li>
<a href="http://www.enucomp.com.br/2017/enucomp_anaisX_2017.pdf#page=220" target="_blank"><i class="fas fa-book"></i></a>
FERREIRA, M. V. S.; SOUSA, A. D. ; CARVALHO FILHO, A. O. ; BARROS, P. V. S. ; DRUMOND, P. M. L. L. .
<b class='text-primary'>Diagnóstico Automático do Glaucoma usando Convolutional Neural Network e Descritores de Textura.</b>
In: Encontro Unificado de Computação - ENUCOMP, 2017, PARNAÍBA. Anais Eletrônicos ENUCOMP 2017.
PARNAÍBA: Fundação Universidade Estadual do Piauí-FUESPI, 2017. v. 1. p. 220-227.
</li>
</ul>
</div>
</section>
</div>
<!-- Bootstrap core JavaScript -->
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<!-- Plugin JavaScript -->
<script src="vendor/jquery-easing/jquery.easing.min.js"></script>
<!-- Custom scripts for this template -->
<script src="js/resume.min.js"></script>
</body>
</html>