forked from afavaro/afavaro.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
141 lines (71 loc) · 3.26 KB
/
index.html
File metadata and controls
141 lines (71 loc) · 3.26 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Alex Favaro</title>
<meta name="description" content="A blog to document my forays into machine learning.">
<link rel="stylesheet" href="/assets/main.css">
<link rel="canonical" href="/">
<link rel="alternate" type="application/rss+xml" title="Alex Favaro" href="/feed.xml">
<link rel="shortcut icon" href="/assets/images/favicon.ico">
<meta property="og:title" content="Alex Favaro">
<meta property="og:site_name" content="Alex Favaro">
<meta property="og:url" content="/">
<meta property="og:description" content="A blog to document my forays into machine learning.">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="Alex Favaro">
<meta name="twitter:description" content="A blog to document my forays into machine learning.">
<link rel="dns-prefetch" href="https://fonts.gstatic.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css?family=Bitter:400,400i,700&display=swap" rel="stylesheet">
</head>
<body>
<header class="site-header">
<div class="wrapper">
<a class="site-title" href="/">Alex Favaro</a>
<nav class="site-nav">
<a class="page-link" href="/about/">About</a>
</nav>
</div>
</header>
<main class="page-content" aria-label="Content">
<div class="wrapper">
<div class="home">
<ul class="post-list">
<li>
<header class="post-header">
<h1 class="post-title">
<a class="post-link" href="/2020/06/13/semantic-segmentation-inria-fastai/">Semantic Segmentation for Satellite Imagery with fastai</a>
</h1>
<p class="post-meta">
Jun 13, 2020
</p>
</header>
<div class="post-content">
<p>Semantic segmentation is a classification task in computer vision that assigns a class to each pixel
of an image, effectively segmenting the image into regions of interest. For example, the
<a name="camvid"><a href="http://mi.eng.cam.ac.uk/research/projects/VideoRec/CamVid/">Cambridge-driving Labeled Video Database</a></a>
(CamVid) is a dataset that includes a collection of videos recorded from the perspective of a
driving car, with over 700 frames that have been labeled to assign one of 32 semantic classes (e.g.
pedestrian, bicyclist, road, etc.) to each pixel. This dataset can be used to train a model to
segment new scenes into those same classes.</p>
</div>
<p class="post-continue">
<a href="/2020/06/13/semantic-segmentation-inria-fastai/">Read on →</a>
</p>
</li>
</ul>
</div>
</div>
</main>
<footer class="site-footer">
<div class="wrapper">
<p>
© - Powered by <a href="https://jekyllrb.com">Jekyll</a> & <a href="https://github.com/yous/whiteglass">whiteglass</a> - Subscribe via <a href="/feed.xml">RSS</a>
</p>
</div>
</footer>
</body>
</html>