-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
373 lines (295 loc) · 15.5 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<!-- hexo-inject:begin --><!-- hexo-inject:end --><meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" name="viewport">
<title>Jefine</title>
<meta charset="utf-8">
<meta name="title" content="Jefine">
<meta name="description" content="Makes Better">
<meta property="og:image" content="/">
<meta property="og:image:width" content="200" />
<meta property="og:image:height" content="200" />
<link href="https://fonts.proxy.ustclug.org/css2?family=Noto+Serif+SC:wght@400;700&display=swap" rel="stylesheet">
<link href="https://fonts.proxy.ustclug.org/css2?family=Noto+Serif+SC:wght@400;700&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Noto Serif CJK TC', 'Noto Serif SC', serif;
}
</style>
<link rel="shortcut icon" href="/">
<link rel="stylesheet"
href="//cdn.jsdelivr.net/gh/highlightjs/[email protected]/build/styles/arduino-light.min.css">
<script src="//cdn.jsdelivr.net/gh/highlightjs/[email protected]/build/highlight.min.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
<link rel="stylesheet" href="/css/style.css">
<script src="/js/jquery.min.js"></script>
<link rel="alternate" href="/atom.xml" title="Jefine" type="application/atom+xml"><!-- hexo-inject:begin --><!-- hexo-inject:end -->
</head>
<body>
<!-- hexo-inject:begin --><!-- hexo-inject:end --><header class="header">
<div class="blog-title">
<a href="/" class="logo">Jefine</a>
</div>
<nav class="navbar">
<ul class="menu">
<li class="menu-item">
<a href="/" class="current-menu-item-link">Home</a>
</li>
<li class="menu-item">
<a href="/archives" class="menu-item-link">Archives</a>
</li>
<li class="menu-item">
<a href="/about" class="menu-item-link">About</a>
</li>
<li class="menu-item">
<a href="/atom.xml" class="menu-item-link">Rss</a>
</li>
</ul>
</nav>
</header>
<main class="main">
<section class="posts">
<article class="post">
<div class="post-title">
<a class="post-title-link" href="/2024/12/03/%E5%B5%8C%E5%85%A5%E5%BC%8FAI%E5%BC%80%E5%8F%91%E4%B8%8E%E9%83%A8%E7%BD%B2/">嵌入式AI开发与部署</a>
</div>
<div class="post-content">
<p>近年来,随着计算机AI软件技术的突破以及嵌入式硬件性能的提升,通过边缘计算设备部署小规模AI模型以更好解决工业界实际问题的思路,得到了越来越多的关注。</p>
<blockquote>
<p>常见应用场景包括:门禁机的人员识别, 停车场的车牌识别,录音设备中语音转文字等。</p>
</blockquote>
<p>本文将简要介绍在嵌入式(边缘计算)设备中常规算法开发方案与模型部署流程,共分为两部分:算法模型的获取与模型的落地部署。</p>
<a class="More" href="/2024/12/03/%E5%B5%8C%E5%85%A5%E5%BC%8FAI%E5%BC%80%E5%8F%91%E4%B8%8E%E9%83%A8%E7%BD%B2/">More</a>
</div>
<div class="post-meta">
<span class="post-time">二〇二四年十二月三日</span>
</div>
</article>
<article class="post">
<div class="post-title">
<a class="post-title-link" href="/2023/12/12/Linux-C%E7%A8%8B%E5%BA%8F%E6%B5%8B%E8%AF%95%E8%A6%86%E7%9B%96%E7%8E%87%E8%AF%84%E4%BC%B0%E6%96%B9%E5%BC%8F/">Linux C program cover rate test</a>
</div>
<div class="post-content">
<p>在拥有了一定的测试框架和测试用例后,如何评估测试的覆盖率,全面性就成为了一个问题,这需要一定的工具去帮助我们查看哪些内容还没有被测试到,需要我们定向的增加测试用例。<br>当然这些工具也可以帮助我们观测到更多内容,比如说每行代码的被执行次数,可以用来作为问题的排查等等。<br></p>
<a class="More" href="/2023/12/12/Linux-C%E7%A8%8B%E5%BA%8F%E6%B5%8B%E8%AF%95%E8%A6%86%E7%9B%96%E7%8E%87%E8%AF%84%E4%BC%B0%E6%96%B9%E5%BC%8F/">More</a>
</div>
<div class="post-meta">
<span class="post-time">二〇二三年十二月十二日</span>
</div>
</article>
<article class="post">
<div class="post-title">
<a class="post-title-link" href="/2023/05/03/Linux_shell_tricks/">Linux_shell_tricks</a>
</div>
<div class="post-content">
<p>Hi, Long time no see.<br>In the process of developing programs using Linux, I have encountered some shell problems, and below I will share some of the more common and more useful tips and tools. And keep updating them as I learn more.<br></p>
<a class="More" href="/2023/05/03/Linux_shell_tricks/">More</a>
</div>
<div class="post-meta">
<span class="post-time">二〇二三年五月三日</span>
</div>
</article>
<article class="post">
<div class="post-title">
<a class="post-title-link" href="/2022/06/16/%E8%93%9D%E6%A1%A5%E6%9D%AF%E5%8D%95%E7%89%87%E6%9C%BA%E6%89%8B%E5%86%8C/">蓝桥杯单片机手册</a>
</div>
<div class="post-content">
<p>主要是 记录下来关于蓝桥杯比赛板中的一些比较模块化和认为可在今后借鉴的内容。包括了自己的一丢丢理解和包括了广大互联网的智慧结晶。<br>2022 年<a href="赛点资源数据包_SCM_2022.zip">第十三届单片机类赛点数据包</a>,以供下载。相关介绍可以浏览 <a href="https://baiblog.top/lq2/" target="_blank" rel="noopener">链接</a> 。<br></p>
<a class="More" href="/2022/06/16/%E8%93%9D%E6%A1%A5%E6%9D%AF%E5%8D%95%E7%89%87%E6%9C%BA%E6%89%8B%E5%86%8C/">More</a>
</div>
<div class="post-meta">
<span class="post-time">二〇二二年六月十六日</span>
</div>
</article>
<article class="post">
<div class="post-title">
<a class="post-title-link" href="/2022/05/14/Flask_First_Api/">Flask_First_Api</a>
</div>
<div class="post-content">
<p>Flask 作为一个轻量级的 Python 前端网页框架,正在逐渐壮大,而在一些近期的一些项目中,也常出现其身影,作为前端和后端相互结合的框架,适合我们去快速构建一个服务器端的服务应用,同时也方便了自己的维护,更重要的是构建起较为完善的技术栈。</p>
<a class="More" href="/2022/05/14/Flask_First_Api/">More</a>
</div>
<div class="post-meta">
<span class="post-time">二〇二二年五月十四日</span>
</div>
</article>
<article class="post">
<div class="post-title">
<a class="post-title-link" href="/2022/05/10/%E5%B9%B2%E9%A5%AD%E5%B0%8F%E5%8A%A9%E6%89%8BMeal_Alter_Bot/">干饭小助手 Meal_Alter_Bot</a>
</div>
<div class="post-content">
<p>A bot to forward the QQ message to user,then send it to your bot.</p>
<p>Meal_Alter_Bot 项目是基于 <a href="https://github.com/Mrs4s/go-cqhttp" target="_blank" rel="noopener"></a><a href="https://github.com/Mrs4s/go-cqhttp" target="_blank" rel="noopener">https://github.com/Mrs4s/go-cqhttp</a> 项目进行开发的QQ机器人,通过监控聊天信息,获取干饭通知,通过 ESP32 Wi-Fi 通信功能,控制设备进行蜂鸣器提醒。<br></p>
<a class="More" href="/2022/05/10/%E5%B9%B2%E9%A5%AD%E5%B0%8F%E5%8A%A9%E6%89%8BMeal_Alter_Bot/">More</a>
</div>
<div class="post-meta">
<span class="post-time">二〇二二年五月十日</span>
</div>
</article>
<article class="post">
<div class="post-title">
<a class="post-title-link" href="/2022/02/14/YoloV5%E5%AD%A6%E4%B9%A0%E4%B8%8E%E8%AE%AD%E7%BB%83/">YoloV5 学习与训练</a>
</div>
<div class="post-content">
<p>简要学习 YoloV5,通过在云端训练和本地推理,初步入门 ML 的图形识别场景。实现对特定物体的检测和框选。</p>
<a class="More" href="/2022/02/14/YoloV5%E5%AD%A6%E4%B9%A0%E4%B8%8E%E8%AE%AD%E7%BB%83/">More</a>
</div>
<div class="post-meta">
<span class="post-time">二〇二二年二月十四日</span>
</div>
</article>
<article class="post">
<div class="post-title">
<a class="post-title-link" href="/2022/01/09/ESP32_IDF_VScode%E9%85%8D%E7%BD%AE%E7%8E%AF%E5%A2%83/">ESP32_IDF_VScode配置环境</a>
</div>
<div class="post-content">
<p>ESP32官方推荐的IDF开发环境,可以作为插件,在VScode中进行编译烧录。<br>需要安装数G环境,如果不是必须,可以尽量使用 Arduino 方式进行编程。</p>
<a class="More" href="/2022/01/09/ESP32_IDF_VScode%E9%85%8D%E7%BD%AE%E7%8E%AF%E5%A2%83/">More</a>
</div>
<div class="post-meta">
<span class="post-time">二〇二二年一月九日</span>
</div>
</article>
<article class="post">
<div class="post-title">
<a class="post-title-link" href="/2022/01/09/ESP32/">ESP32</a>
</div>
<div class="post-content">
<p>近期,多次使用了 ESP32 系列的模组,发现 ESP32 的一些优良特性,后期打算继续将其作为网络节点,特此介绍 ESP32 的可用性以及其特点。</p>
<a class="More" href="/2022/01/09/ESP32/">More</a>
</div>
<div class="post-meta">
<span class="post-time">二〇二二年一月九日</span>
</div>
</article>
<article class="post">
<div class="post-title">
<a class="post-title-link" href="/2021/10/23/mmWave%E7%8E%AF%E5%A2%83%E9%85%8D%E7%BD%AE%E4%B8%8E%E7%A1%AC%E4%BB%B6%E6%90%AD%E9%85%8D/">mmWave环境配置与硬件搭配</a>
</div>
<div class="post-content">
<p>本文主要介绍了 joybien 公司的b201 VSD毫米波雷达和树莓派配合中,出现的一些安装问题以及如何安装:<br></p>
<a class="More" href="/2021/10/23/mmWave%E7%8E%AF%E5%A2%83%E9%85%8D%E7%BD%AE%E4%B8%8E%E7%A1%AC%E4%BB%B6%E6%90%AD%E9%85%8D/">More</a>
</div>
<div class="post-meta">
<span class="post-time">二〇二一年十月廿三日</span>
</div>
</article>
</section>
<script>
var Home = location.href,
xhr,
xhrUrl = '';
var Diaspora = {
L: function(url, f, err) {
if (url == xhrUrl) {
return false;
}
xhrUrl = url;
if (xhr) {
xhr.abort();
}
xhr = $.ajax({
type: 'GET',
url: url,
timeout: 10000,
success: function(data) {
f(data);
xhrUrl = '';
},
error: function(a, b, c) {
if (b == 'abort') {
err && err()
} else {
window.location.href = url;
}
xhrUrl = '';
}
});
},
loading: function() {
var w = window.innerWidth;
var css = '<style class="loaderstyle" id="loaderstyle'+ w +'">'+
'@-moz-keyframes loader'+ w +'{100%{background-position:'+ w +'px 0}}'+
'@-webkit-keyframes loader'+ w +'{100%{background-position:'+ w +'px 0}}'+
'.loader'+ w +'{-webkit-animation:loader'+ w +' 3s linear infinite;-moz-animation:loader'+ w +' 3s linear infinite;}'+
'</style>';
$('.loaderstyle').remove()
$('head').append(css)
$('#loader').removeClass().addClass('loader'+ w).show()
},
loaded: function() {
$('#loader').removeClass().hide()
}
};
$(function() {
$('body').on('click', function(e) {
var tag = $(e.target).attr('class') || '',
rel = $(e.target).attr('rel') || '';
if (!tag && !rel) return;
switch (true) {
// next page
case (tag.indexOf('more') != -1):
tag = $('.more');
if (tag.data('status') == 'loading') {
return false
}
var num = parseInt(tag.data('page')) || 1;
if (num == 1) {
tag.data('page', 1)
}
tag.html("Loading...").data('status', 'loading')
Diaspora.loading()
Diaspora.L(tag.attr('href'), function(data) {
tag.hide();
$('.license').hide();
var link = $(data).find('.more').attr('href');
if (link != undefined) {
tag.attr('href', link).html("Older Article").data('status', 'loaded')
tag.data('page', parseInt(tag.data('page')) + 1)
} else {
$('body').remove()
}
var tempScrollTop = $(window).scrollTop();
$('body').append($(data).find('.posts'))
$(window).scrollTop(tempScrollTop + 100);
Diaspora.loaded()
//$('html,body').animate({ scrollTop: tempScrollTop + 400 }, 500);
if (link !== '/') {
$('body').append($(data).find('.page-nav'))
}
$('body').append($(data).find('.license'))
}, function() {
tag.html("Older Article").data('status', 'loaded')
})
return false;
break;
default:
return true;
break;
}
});
})
</script>
<nav class="page-nav">
<a href="/page/2/" class="more">Older Article</a>
</nav>
<p class="license">本站文章使用 CC BY-NC-SA 4.0 许可证</p>
</main><!-- hexo-inject:begin --><!-- Begin: Injected MathJax -->
<script type="text/x-mathjax-config">
MathJax.Hub.Config("");
</script>
<script type="text/x-mathjax-config">
MathJax.Hub.Queue(function() {
var all = MathJax.Hub.getAllJax(), i;
for(i=0; i < all.length; i += 1) {
all[i].SourceElement().parentNode.className += ' has-jax';
}
});
</script>
<script type="text/javascript" src="custom_mathjax_source">
</script>
<!-- End: Injected MathJax -->
<!-- hexo-inject:end -->
</body>
</html>