-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
team.html
403 lines (377 loc) · 14.2 KB
/
team.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Our Team — scikit-image</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<link href="_static/css/bootstrap.min.css" rel="stylesheet" type="text/css">
<link href="_static/css/custom.css"
rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<link rel="stylesheet" href="_static/scikit-image.css" type="text/css" />
<link rel="stylesheet" href="_static/custom.css" type="text/css" />
<script src="https://code.jquery.com/jquery-latest.js"></script>
<script src="_static/js/bootstrap.min.js"></script>
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: './',
VERSION: '',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
};
</script>
<script type="text/javascript" src="_static/documentation_options.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
<script type="text/javascript" src="_static/sphinx_highlight.js"></script>
<link rel="search" title="Search" href="search.html" />
<link rel="top" title="scikit-image" href="index.html" />
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<link rel="shortcut icon" href="_static/favicon.ico">
</head>
<body class="container">
<a href="https://scikit-image.org" class="logo"><img src="_static/img/logo.png" alt=""></a>
<div class="clearfix"></div>
<div class="navbar">
<div class="navbar-inner">
<ul class="nav">
<li><a href="/docs/stable/user_guide/install.html">Installation</a></li>
<li><a href="/docs/stable/auto_examples">Gallery</a></li>
<li><a href="/docs/stable">Documentation</a></li>
<li><a href="community_guidelines.html">Community</a></li>
<li><a href="https://github.com/scikit-image/scikit-image">
<img src="_static/GitHub-Mark-32px.png" style="height: 15px; width: 15px;
display: inline; float: none;
padding-bottom: 3px;"/>
Source</a>
</li>
</ul>
<form class="navbar-form pull-right" action="/docs/stable/search.html" method="get">
<input type="text" class="search span3" name="q" placeholder="Search documentation ...">
<input type="hidden" name="check_keywords" value="yes" >
<input type="hidden" name="area" value="default" >
</form>
</div>
</div>
<div class="row">
<div class="span3"><script src="https://unpkg.com/github-api/dist/GitHub.bundle.min.js"></script>
<script type="module">
import { Octokit } from "https://esm.sh/octokit";
const octokit = new Octokit();
const releases = await octokit.rest.repos.listReleases({
owner: 'scikit-image',
repo: 'scikit-image',
per_page: 1,
page: 1
});
const month_names = ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"];
let release = releases.data[0];
let tag = release.tag_name;
let stable_version = tag.slice(1);
let date = release.published_at;
let year = date.substring(0, 4);
let month = date.substring(5, 7);
let day = date.substring(8, 10);
$('#stable-version').html(
stable_version + " - " + month_names[parseInt(month)-1] + " " + year
);
var stable_version_majmin = stable_version.split(".").slice(0,2).join(".");
var release_notes_url = $('#release-notes').attr('href') + "/release_" + stable_version_majmin + ".rst";
$('#release-notes').attr('href', release_notes_url);
var dev_version = stable_version.split(".").map(Number);
dev_version[1] += 1;
dev_version = dev_version.slice(0, 2).join(".");
$('#dev-version').html("pre-" + dev_version);
</script>
<div class="well">
<strong>Stable</strong>
(<a href="https://github.com/scikit-image/scikit-image/tree/main/doc/source/release_notes" id="release-notes">release notes</a>)
<p id="stable-version"/>x.y.z</p>
<a class="btn btn-small" href="https://scikit-image.org/docs/stable/user_guide/install.html#installation-via-pip-and-conda"><i class="icon-download"></i> Download</a>
<strong><br></strong>
<br/>
<strong>Development</strong>
<p id="dev-version">pre-x.y.z</p>
<a class="btn btn-small" href="https://scikit-image.org/docs/stable/user_guide/install.html#installing-scikit-image-for-contributors"><i class="icon-download"></i> Download</a>
</div><div class="well sidebar-box">
<ul class="nav nav-list">
<li>
<a class="reference external"
href="https://github.com/scikit-image/scikit-image">GitHub
<span class="sidebar-subtitle">source & bug reports</span>
</a>
</li>
<li>
<a class="reference external"
href="https://scikit-image.org/docs/stable/development/contribute.html">Contribute
<span class="sidebar-subtitle">get involved</span></a></li>
</a>
</li>
<li>
<a class="reference external"
href="https://forum.image.sc/tags/scikit-image">Get Help
<span class="sidebar-subtitle">advice & community</span>
</a>
</li>
<li>
<a class="reference external"
href="https://discuss.scientific-python.org/c/contributor/skimage">Discuss
<span class="sidebar-subtitle">contributor talk</span>
</a>
</li>
<li>
<a class="reference external"
href="https://stackoverflow.com/questions/tagged/scikit-image">StackOverflow
<span class="sidebar-subtitle">coding help</span>
</a>
</li>
</ul>
</div>
<div style="padding-top: 0.5rem; padding-bottom: 2rem;">
<a href="https://opencollective.com/scikit-image" target="_blank">
<img src="https://opencollective.com/scikit-image/donate/[email protected]?color=white" width=300 />
</a>
</div>
<div style="text-align: center;" width="100%">
<iframe src="https://ghbtns.com/github-btn.html?user=scikit-image&repo=scikit-image&type=star&count=true"
frameborder="0" scrolling="0" width="110" display="inline-block" height="20"></iframe>
</div>
</div>
<div class="span9">
<section id="our-team">
<h1>Our Team<a class="headerlink" href="#our-team" title="Permalink to this heading">¶</a></h1>
<p>Along with a large community of contributors, scikit-image development
is guided by the following core team:</p>
<div class="team-member">
<a href="https://github.com/hmaarrfk" class="team-member-name">
<div class="team-member-photo">
<img
src="https://avatars.githubusercontent.com/u/90008?v=4&s=60"
loading="lazy"
alt="Avatar picture of @hmaarrfk"
/>
</div>
Mark Harfouche
</a>
<div class="team-member-handle">@hmaarrfk</div>
</div><div class="team-member">
<a href="https://github.com/jarrodmillman" class="team-member-name">
<div class="team-member-photo">
<img
src="https://avatars.githubusercontent.com/u/123428?v=4&s=60"
loading="lazy"
alt="Avatar picture of @jarrodmillman"
/>
</div>
Jarrod Millman
</a>
<div class="team-member-handle">@jarrodmillman</div>
</div><div class="team-member">
<a href="https://github.com/JDWarner" class="team-member-name">
<div class="team-member-photo">
<img
src="https://avatars.githubusercontent.com/u/2184487?v=4&s=60"
loading="lazy"
alt="Avatar picture of @JDWarner"
/>
</div>
Josh Warner
</a>
<div class="team-member-handle">@JDWarner</div>
</div><div class="team-member">
<a href="https://github.com/jni" class="team-member-name">
<div class="team-member-photo">
<img
src="https://avatars.githubusercontent.com/u/492549?v=4&s=60"
loading="lazy"
alt="Avatar picture of @jni"
/>
</div>
Juan Nunez-Iglesias
</a>
<div class="team-member-handle">@jni</div>
</div><div class="team-member">
<a href="https://github.com/lagru" class="team-member-name">
<div class="team-member-photo">
<img
src="https://avatars.githubusercontent.com/u/20140352?v=4&s=60"
loading="lazy"
alt="Avatar picture of @lagru"
/>
</div>
Lars Grüter
</a>
<div class="team-member-handle">@lagru</div>
</div><div class="team-member">
<a href="https://github.com/mkcor" class="team-member-name">
<div class="team-member-photo">
<img
src="https://avatars.githubusercontent.com/u/2227806?v=4&s=60"
loading="lazy"
alt="Avatar picture of @mkcor"
/>
</div>
Marianne Corvellec
</a>
<div class="team-member-handle">@mkcor</div>
</div><div class="team-member">
<a href="https://github.com/soupault" class="team-member-name">
<div class="team-member-photo">
<img
src="https://avatars.githubusercontent.com/u/1315589?v=4&s=60"
loading="lazy"
alt="Avatar picture of @soupault"
/>
</div>
Egor Panfilov
</a>
<div class="team-member-handle">@soupault</div>
</div><div class="team-member">
<a href="https://github.com/stefanv" class="team-member-name">
<div class="team-member-photo">
<img
src="https://avatars.githubusercontent.com/u/45071?v=4&s=60"
loading="lazy"
alt="Avatar picture of @stefanv"
/>
</div>
Stefan van der Walt
</a>
<div class="team-member-handle">@stefanv</div>
</div></section>
<section id="emeritus-developers">
<h1>Emeritus Developers<a class="headerlink" href="#emeritus-developers" title="Permalink to this heading">¶</a></h1>
<p>We thank these previously-active core developers for their contributions to scikit-image.</p>
<div class="team-member">
<a href="https://github.com/ahojnnes" class="team-member-name">
<div class="team-member-photo">
<img
src="https://avatars.githubusercontent.com/u/134307?v=4&s=60"
loading="lazy"
alt="Avatar picture of @ahojnnes"
/>
</div>
Johannes Schönberger
</a>
<div class="team-member-handle">@ahojnnes</div>
</div><div class="team-member">
<a href="https://github.com/alexdesiqueira" class="team-member-name">
<div class="team-member-photo">
<img
src="https://avatars.githubusercontent.com/u/5776022?v=4&s=60"
loading="lazy"
alt="Avatar picture of @alexdesiqueira"
/>
</div>
Alexandre de Siqueira
</a>
<div class="team-member-handle">@alexdesiqueira</div>
</div><div class="team-member">
<a href="https://github.com/amueller" class="team-member-name">
<div class="team-member-photo">
<img
src="https://avatars.githubusercontent.com/u/449558?v=4&s=60"
loading="lazy"
alt="Avatar picture of @amueller"
/>
</div>
Andreas Mueller
</a>
<div class="team-member-handle">@amueller</div>
</div><div class="team-member">
<a href="https://github.com/blink1073" class="team-member-name">
<div class="team-member-photo">
<img
src="https://avatars.githubusercontent.com/u/2096628?v=4&s=60"
loading="lazy"
alt="Avatar picture of @blink1073"
/>
</div>
Steven Silvester
</a>
<div class="team-member-handle">@blink1073</div>
</div><div class="team-member">
<a href="https://github.com/emmanuelle" class="team-member-name">
<div class="team-member-photo">
<img
src="https://avatars.githubusercontent.com/u/263366?v=4&s=60"
loading="lazy"
alt="Avatar picture of @emmanuelle"
/>
</div>
Emmanuelle Gouillart
</a>
<div class="team-member-handle">@emmanuelle</div>
</div><div class="team-member">
<a href="https://github.com/grlee77" class="team-member-name">
<div class="team-member-photo">
<img
src="https://avatars.githubusercontent.com/u/6528957?v=4&s=60"
loading="lazy"
alt="Avatar picture of @grlee77"
/>
</div>
Gregory Lee
</a>
<div class="team-member-handle">@grlee77</div>
</div><div class="team-member">
<a href="https://github.com/rfezzani" class="team-member-name">
<div class="team-member-photo">
<img
src="https://avatars.githubusercontent.com/u/3438227?v=4&s=60"
loading="lazy"
alt="Avatar picture of @rfezzani"
/>
</div>
Riadh Fezzani
</a>
<div class="team-member-handle">@rfezzani</div>
</div><div class="team-member">
<a href="https://github.com/sciunto" class="team-member-name">
<div class="team-member-photo">
<img
src="https://avatars.githubusercontent.com/u/335370?v=4&s=60"
loading="lazy"
alt="Avatar picture of @sciunto"
/>
</div>
François Boulogne
</a>
<div class="team-member-handle">@sciunto</div>
</div><div class="team-member">
<a href="https://github.com/tonysyu" class="team-member-name">
<div class="team-member-photo">
<img
src="https://avatars.githubusercontent.com/u/133031?v=4&s=60"
loading="lazy"
alt="Avatar picture of @tonysyu"
/>
</div>
Tony S Yu
</a>
<div class="team-member-handle">@tonysyu</div>
</div><div class="team-member">
<a href="https://github.com/zpincus" class="team-member-name">
<div class="team-member-photo">
<img
src="https://avatars.githubusercontent.com/u/174217?v=4&s=60"
loading="lazy"
alt="Avatar picture of @zpincus"
/>
</div>
Zachary Pincus
</a>
<div class="team-member-handle">@zpincus</div>
</div></section>
</div>
</div>
<div class="well footer">
<small>
© Copyright the scikit-image development team.
Created using <a href="https://twitter.github.com/bootstrap/">Bootstrap</a> and <a href="https://sphinx.pocoo.org/">Sphinx</a>.
</small>
</div>
<div class="chatbutton"><a href="https://skimage.zulipchat.com">Open Chat</a></div>
</body>
</html>