-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
981 lines (566 loc) · 32.6 KB
/
Copy pathindex.html
File metadata and controls
981 lines (566 loc) · 32.6 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
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
<!DOCTYPE html>
<html>
<head>
<!-- hexo-inject:begin --><!-- hexo-inject:end --><meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" >
<title>
Isaac's Blog
</title>
<link rel="icon" href= /favicon.ico>
<!-- TODO: 在font-face加载完毕后改变字体 -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/webfont/1.6.28/webfontloader.js"></script>
<!-- 提前加载place holder -->
<style type="text/css">
@font-face {
font-family: 'Oswald-Regular';
src: url(/font/Oswald-Regular.ttf);
}
</style>
<style type="text/css">
.site-intro {
position: relative;
width: 100%;
height: 50vh;
overflow: hidden;
box-shadow: -0.1rem 0 0.5rem 0 rgba(0, 0, 0, 0.8);
}
.site-intro-placeholder {
position: absolute;
z-index: -2;
top: 0;
left: 0px;
width: calc(100% + 300px);
height: 100%;
background: repeating-linear-gradient(-45deg, #444 0, #444 80px, #333 80px, #333 160px);
background-position: center center;
transform: translate3d(-226px, 0, 0);
animation: gradient-move 2.5s ease-out 0s 1;
}
@keyframes gradient-move {
0% {
transform: translate3d(-226px, 0, 0);
}
100% {
transform: translate3d(0, 0, 0);
}
}
</style>
<link rel="stylesheet" href = /css/style.css?v=20171218 />
<script src="//cdn.staticfile.org/jquery/3.2.1/jquery.min.js" defer></script>
<script src="/scripts/main.js" defer></script>
<!-- 百度统计 -->
<!-- 谷歌统计 -->
<script>
(function (i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r; i[r] = i[r] || function () {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date(); a = s.createElement(o),
m = s.getElementsByTagName(o)[0]; a.async = 1; a.src = g; m.parentNode.insertBefore(a, m)
})(window, document, 'script', 'https://www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-109312212-1', 'auto');
ga('send', 'pageview');
</script><!-- hexo-inject:begin --><!-- hexo-inject:end -->
</head>
<body class="home-body">
<!-- hexo-inject:begin --><!-- hexo-inject:end --><header class="header index-header">
<div class="read-progress"></div>
<div class="header-sidebar-menu"></div>
<!-- post页的toggle banner -->
<a class="home-link" href=/>Isaac's Blog</a>
</header>
<div class="wrapper">
<div class="site-intro">
<!-- 主页 -->
<!-- 文章页 -->
<div class="site-intro-img" style="background-image: url(/intro/desktop.jpg)"></div>
<div class="site-intro-placeholder"></div>
<div class="site-intro-meta">
<!-- 标题 -->
<h1 class="intro-title">
<!-- 主页 -->
Isaac's Blog
<!-- 文章页 -->
</h1>
<!-- 副标题 -->
<p class="intro-subtitle">
<!-- 主页副标题 -->
<!-- 文章页 -->
</p>
<!-- 文章页meta -->
</div>
</div>
<img class="loading" src="/assets/loading.svg" style="display: block; margin: 6rem auto 0 auto; width: 6rem; height: 6rem;" />
<script>
var browser = {
versions: function () {
var u = window.navigator.userAgent;
return {
userAgent: u,
trident: u.indexOf('Trident') > -1, //IE内核
presto: u.indexOf('Presto') > -1, //opera内核
webKit: u.indexOf('AppleWebKit') > -1, //苹果、谷歌内核
gecko: u.indexOf('Gecko') > -1 && u.indexOf('KHTML') == -1, //火狐内核
mobile: !!u.match(/AppleWebKit.*Mobile.*/), //是否为移动终端
ios: !!u.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/), //ios终端
android: u.indexOf('Android') > -1 || u.indexOf('Linux') > -1, //android终端或者uc浏览器
iPhone: u.indexOf('iPhone') > -1 || u.indexOf('Mac') > -1, //是否为iPhone或者安卓QQ浏览器
iPad: u.indexOf('iPad') > -1, //是否为iPad
webApp: u.indexOf('Safari') == -1, //是否为web应用程序,没有头部与底部
weixin: u.indexOf('MicroMessenger') == -1, //是否为微信浏览器
uc: u.indexOf('UCBrowser') > -1 //是否为android下的UC浏览器
};
}()
}
function fontLoaded(){
console.log('font loaded');
if (document.getElementsByClassName('site-intro-meta')) {
document.getElementsByClassName('intro-title')[0].classList.add('intro-fade-in');
document.getElementsByClassName('intro-subtitle')[0].classList.add('intro-fade-in');
var postIntroTags = document.getElementsByClassName('post-intro-tags')[0],
postIntroMeat = document.getElementsByClassName('post-intro-meta')[0];
if (postIntroTags) {
postIntroTags.classList.add('post-fade-in');
}
if (postIntroMeat) {
postIntroMeat.classList.add('post-fade-in');
}
}
}
console.log("userAgent:" + browser.versions.userAgent);
// UC不支持跨域,所以直接显示
if (browser.versions.uc) {
console.log("UCBrowser");
fontLoaded();
} else {
WebFont.load({
custom: {
families: ['Oswald-Regular']
},
loading: function () { //所有字体开始加载
// console.log('loading');
},
active: function () { //所有字体已渲染
fontLoaded();
},
inactive: function () { //字体预加载失败,无效字体或浏览器不支持加载
console.log('inactive: timeout');
fontLoaded();
},
timeout: 7000 // Set the timeout to two seconds
});
}
</script>
<div class="container container-unloaded">
<main class="main index-page">
<article class="index-post">
<a class="content-show-full" href = "/2020/05/15/3D-Shape-Context-for-Instance-Segmentation/" >
<h2 class="abstract-title">
<span>3D Shape Context for Instance Segmentation</span>
</h2>
<div class="abstract-content">
While many deep learning-based methods have been developed to enable 3D instance segmentation, such as SGPN and ASIS, it is still interesting to see how some traditional methods can perform on this task, for example, using 3D shape contexts. The shape context is a kind of regional point descripto...
</div>
</a>
<div class="abstract-post-meta">
<!-- tags -->
<div class= abstract-tags >
<a class="post-tag" href="javascript:void(0);" data-href = geometry-processing>geometry-processing</a>
<a class="post-tag" href="javascript:void(0);" data-href = shape-context>shape-context</a>
<a class="post-tag" href="javascript:void(0);" data-href = instance-segmentation>instance-segmentation</a>
</div>
<!-- date -->
<div class="abstract-date">
<span class="abstract-calander iconfont-archer"></span><span class="abstract-time">2020/05/15</span>
</div>
</div>
</article>
<article class="index-post">
<a class="content-show-full" href = "/2019/08/10/Dealing-with-Class-Imbalance/" >
<h2 class="abstract-title">
<span>Dealing with Class Imbalance</span>
</h2>
<div class="abstract-content">
Class imbalance is a common problem in machine learning, where the total number of one class of data is far less than that of another class of data. Class imbalance affects the quality and reliability of results in machine learning tasks as most of the evaluation metrics assume a balanced class d...
</div>
</a>
<div class="abstract-post-meta">
<!-- tags -->
<div class= abstract-tags >
<a class="post-tag" href="javascript:void(0);" data-href = data-preprocessing>data-preprocessing</a>
<a class="post-tag" href="javascript:void(0);" data-href = class-imbalance>class-imbalance</a>
</div>
<!-- date -->
<div class="abstract-date">
<span class="abstract-calander iconfont-archer"></span><span class="abstract-time">2019/08/10</span>
</div>
</div>
</article>
<article class="index-post">
<a class="content-show-full" href = "/2018/07/24/From-Shanghai-to-Xiamen-Biking-along-the-South-East-Coast-of-China/" >
<h2 class="abstract-title">
<span>From Shanghai to Xiamen: Biking along the South-East Coast of China</span>
</h2>
<div class="abstract-content">
We travel just to travel.
The world looks different when you bike. A car window is more or less a divide between the traveler and the outside world, a motorcycle engine could be too noisy for a person who loves a peaceful trip. Biking, however, makes you taste the true beauty of nature: sufferi...
</div>
</a>
<div class="abstract-post-meta">
<!-- tags -->
<div class= abstract-tags >
<a class="post-tag" href="javascript:void(0);" data-href = biking>biking</a>
<a class="post-tag" href="javascript:void(0);" data-href = trip>trip</a>
</div>
<!-- date -->
<div class="abstract-date">
<span class="abstract-calander iconfont-archer"></span><span class="abstract-time">2018/07/24</span>
</div>
</div>
</article>
<article class="index-post">
<a class="content-show-full" href = "/2018/06/01/Plane-Detection-Using-Deep-Learning-Approach/" >
<h2 class="abstract-title">
<span>Plane Detection Using Deep Learning Approach</span>
</h2>
<div class="abstract-content">
Plane detection is a widely used technique that can be applied in many applications, e.g., augmented reality (AR), where we have to detect a plane to generate AR models, and 3D scene reconstruction, especially for man-made scenes, which consist of many planar objects. Nowadays, with the prolifera...
</div>
</a>
<div class="abstract-post-meta">
<!-- tags -->
<div class= abstract-tags >
<a class="post-tag" href="javascript:void(0);" data-href = geometry-processing>geometry-processing</a>
<a class="post-tag" href="javascript:void(0);" data-href = plane-detection>plane-detection</a>
<a class="post-tag" href="javascript:void(0);" data-href = deep-learning>deep-learning</a>
<a class="post-tag" href="javascript:void(0);" data-href = pointnet>pointnet</a>
</div>
<!-- date -->
<div class="abstract-date">
<span class="abstract-calander iconfont-archer"></span><span class="abstract-time">2018/06/01</span>
</div>
</div>
</article>
<article class="index-post">
<a class="content-show-full" href = "/2018/05/04/Prepare-Your-Own-Data-for-PointNet/" >
<h2 class="abstract-title">
<span>Prepare Your Own Data for PointNet</span>
</h2>
<div class="abstract-content">
Being a novel deep net architecture invariant towards input order, PointNet is able to consume unordered point clouds directly and thus has a promising prospect in the field of geometry processing. At present, the most popular implementation of PointNet is based on TensorFlow and it takes HDF5 as...
</div>
</a>
<div class="abstract-post-meta">
<!-- tags -->
<div class= abstract-tags >
<a class="post-tag" href="javascript:void(0);" data-href = data-preprocessing>data-preprocessing</a>
<a class="post-tag" href="javascript:void(0);" data-href = pointnet>pointnet</a>
</div>
<!-- date -->
<div class="abstract-date">
<span class="abstract-calander iconfont-archer"></span><span class="abstract-time">2018/05/04</span>
</div>
</div>
</article>
<article class="index-post">
<a class="content-show-full" href = "/2018/04/29/RAPter-on-Ubuntu/" >
<h2 class="abstract-title">
<span>RAPter on Ubuntu</span>
</h2>
<div class="abstract-content">
The RAPter gives us a very nice design and implementation for doing man-made scene reconstruction. According to the nature of its algorithm, it also shows a potential use in terms of 3D plane detection. However, the documentation related to it is pretty poor, so I decided to write here a summary ...
</div>
</a>
<div class="abstract-post-meta">
<!-- tags -->
<div class= abstract-tags >
<a class="post-tag" href="javascript:void(0);" data-href = ubuntu>ubuntu</a>
<a class="post-tag" href="javascript:void(0);" data-href = rapter>rapter</a>
</div>
<!-- date -->
<div class="abstract-date">
<span class="abstract-calander iconfont-archer"></span><span class="abstract-time">2018/04/29</span>
</div>
</div>
</article>
<article class="index-post">
<a class="content-show-full" href = "/2018/03/19/Tutte-Embedding-for-Parameterization/" >
<h2 class="abstract-title">
<span>Tutte Embedding for Parameterization</span>
</h2>
<div class="abstract-content">
In geometry processing, Tutte embedding, also known as barycentric embedding, can be used for mesh parameterization by fixing the boundary vertices of the mesh on a certain convex polygon, and building a crossing-free straight-line embedding with the interior vertices inside the convex boundary.
...
</div>
</a>
<div class="abstract-post-meta">
<!-- tags -->
<div class= abstract-tags >
<a class="post-tag" href="javascript:void(0);" data-href = geometry-processing>geometry-processing</a>
<a class="post-tag" href="javascript:void(0);" data-href = parameterization>parameterization</a>
<a class="post-tag" href="javascript:void(0);" data-href = tutte-embedding>tutte-embedding</a>
</div>
<!-- date -->
<div class="abstract-date">
<span class="abstract-calander iconfont-archer"></span><span class="abstract-time">2018/03/19</span>
</div>
</div>
</article>
<article class="index-post">
<a class="content-show-full" href = "/2018/02/28/Hough-Transform-for-Plane-Detection/" >
<h2 class="abstract-title">
<span>Hough Transform for Plane Detection</span>
</h2>
<div class="abstract-content">
The Hough transform is a method for detecting parameterized objects, typically used for lines and circles in 2D space. Nowadays, with the proliferation of acquisitive devices, deriving a massive point cloud is an easy task. As we can also parameterize objects in 3D, Hough transform can be applied...
</div>
</a>
<div class="abstract-post-meta">
<!-- tags -->
<div class= abstract-tags >
<a class="post-tag" href="javascript:void(0);" data-href = geometry-processing>geometry-processing</a>
<a class="post-tag" href="javascript:void(0);" data-href = hough-transform>hough-transform</a>
<a class="post-tag" href="javascript:void(0);" data-href = parameterization>parameterization</a>
<a class="post-tag" href="javascript:void(0);" data-href = plane-detection>plane-detection</a>
</div>
<!-- date -->
<div class="abstract-date">
<span class="abstract-calander iconfont-archer"></span><span class="abstract-time">2018/02/28</span>
</div>
</div>
</article>
<article class="index-post">
<a class="content-show-full" href = "/2018/01/26/Mesh-Smoothing/" >
<h2 class="abstract-title">
<span>Mesh Smoothing</span>
</h2>
<div class="abstract-content">
Mesh smoothing, also known as mesh denoising, is an important and widely discussed topic in geometry processing. Basically, a mesh smoothing method takes three steps: loading a mesh from a file; smoothing that mesh; outputting the mesh to a file. Recently, I implemented a few basic algorithms reg...
</div>
</a>
<div class="abstract-post-meta">
<!-- tags -->
<div class= abstract-tags >
<a class="post-tag" href="javascript:void(0);" data-href = geometry-processing>geometry-processing</a>
<a class="post-tag" href="javascript:void(0);" data-href = mesh-smoothing>mesh-smoothing</a>
</div>
<!-- date -->
<div class="abstract-date">
<span class="abstract-calander iconfont-archer"></span><span class="abstract-time">2018/01/26</span>
</div>
</div>
</article>
<article class="index-post">
<a class="content-show-full" href = "/2017/12/22/Implementation-of-Voronoi-Diagram-and-Delaunay-Triangulation/" >
<h2 class="abstract-title">
<span>Implementation of Voronoi Diagram and Delaunay Triangulation</span>
</h2>
<div class="abstract-content">
The Voronoi diagram and the Delaunay triangulation are dual representations of a set of points to each other. Due to their wide applications in science and technology, the Voronoi diagram and the Delaunay triangulation play important roles in the field of computational geometry. In this post, I a...
</div>
</a>
<div class="abstract-post-meta">
<!-- tags -->
<div class= abstract-tags >
<a class="post-tag" href="javascript:void(0);" data-href = computational-geometry>computational-geometry</a>
<a class="post-tag" href="javascript:void(0);" data-href = voronoi-diagram>voronoi-diagram</a>
<a class="post-tag" href="javascript:void(0);" data-href = delaunay-triangulation>delaunay-triangulation</a>
</div>
<!-- date -->
<div class="abstract-date">
<span class="abstract-calander iconfont-archer"></span><span class="abstract-time">2017/12/22</span>
</div>
</div>
</article>
<!-- paginator -->
<nav class="page-nav">
<span class="page-number current">1</span><a class="page-number" href="/page/2/">2</a><a class="extend next" rel="next" href="/page/2/">#NEXT</a>
</nav>
</main>
<!-- profile -->
<div class="profile">
<img class="profile-avatar" src= /avatar/isaac.jpg >
<div class="profile-name">Yanran (Isaac) Guan</div>
<div class="profile-social">
<a href="mailto:yanranguan@gmail.com" class="iconfont-archer email" title=email ></a>
<a href="//github.com/IsaacGuan" class="iconfont-archer github" target="_blank" title="github"></a>
<a href="//www.facebook.com/isaac.guan.96" class="iconfont-archer facebook" target="_blank" title="facebook"></a>
<a href="//www.zhihu.com/people/guan-yan-ran" class="iconfont-archer zhihu" target="_blank" title="zhihu"></a>
<a href="//www.linkedin.com/in/yanran-guan" class="iconfont-archer linkedin" target="_blank" title="linkedin"></a>
<a href="/atom.xml" class="iconfont-archer rss" target="_blank" title="rss"></a>
</div>
<div class="about-me">
<div>
<a href = "/about" >ABOUT ME</a>
</div>
</div>
<div class="about-me">
<div>
<a href = "/publications" >PUBLICATIONS & REPORTS</a>
</div>
</div>
</div>
</div>
<footer class="footer footer-unloaded">
<!-- social -->
<div class="social">
<a href="mailto:yanranguan@gmail.com" class="iconfont-archer email" title=email ></a>
<a href="//github.com/IsaacGuan" class="iconfont-archer github" target="_blank" title="github"></a>
<a href="//www.facebook.com/isaac.guan.96" class="iconfont-archer facebook" target="_blank" title="facebook"></a>
<a href="//www.zhihu.com/people/guan-yan-ran" class="iconfont-archer zhihu" target="_blank" title="zhihu"></a>
<a href="//www.linkedin.com/in/yanran-guan" class="iconfont-archer linkedin" target="_blank" title="linkedin"></a>
<a href="/atom.xml" class="iconfont-archer rss" target="_blank" title="rss"></a>
</div>
<!-- powered by Hexo -->
<div class="copyright">
<span id="hexo-power">Copyright © 2023 Yanran Guan</span><span class="iconfont-archer power"></span><span id="hexo-power">Powered by <a href="https://hexo.io/" target="_blank">Hexo</a></span>
</div>
<!-- 不蒜子 -->
<div class="busuanzi-container">
<span id="busuanzi_container_site_pv">Welcome, No. <span id="busuanzi_value_site_pv"></span> visitor.
</span>
</div>
</footer>
</div>
<!-- toc -->
<div class="back-top"></div>
<div class="sidebar">
<div class="sidebar-header sidebar-header-show-archive">
<div class="sidebar-category">
<span class="sidebar-archive-link"><span class="iconfont-archer"></span>Archive</span>
<span class="sidebar-tags-link"><span class="iconfont-archer"></span>Tag</span>
</div>
</div>
<div class="sidebar-content sidebar-content-show-archive">
<div class="sidebar-archive">
<!-- 在ejs中将archive按照时间排序 -->
<div class="total-archive"> Total : 12 </div>
<div class="post-archive">
<div class="archive-year"> 2020 </div>
<ul class="year-list">
<li class="archive-post-item">
<span class="archive-post-date">05/15</span><a class="archive-post-title" href= "/2020/05/15/3D-Shape-Context-for-Instance-Segmentation/" >3D Shape Context for Instance Segmentation</a>
</li>
</ul>
<div class="archive-year"> 2019 </div>
<ul class="year-list">
<li class="archive-post-item">
<span class="archive-post-date">08/10</span><a class="archive-post-title" href= "/2019/08/10/Dealing-with-Class-Imbalance/" >Dealing with Class Imbalance</a>
</li>
</ul>
<div class="archive-year"> 2018 </div>
<ul class="year-list">
<li class="archive-post-item">
<span class="archive-post-date">07/24</span><a class="archive-post-title" href= "/2018/07/24/From-Shanghai-to-Xiamen-Biking-along-the-South-East-Coast-of-China/" >From Shanghai to Xiamen: Biking along the South-East Coast of China</a>
</li>
<li class="archive-post-item">
<span class="archive-post-date">06/01</span><a class="archive-post-title" href= "/2018/06/01/Plane-Detection-Using-Deep-Learning-Approach/" >Plane Detection Using Deep Learning Approach</a>
</li>
<li class="archive-post-item">
<span class="archive-post-date">05/04</span><a class="archive-post-title" href= "/2018/05/04/Prepare-Your-Own-Data-for-PointNet/" >Prepare Your Own Data for PointNet</a>
</li>
<li class="archive-post-item">
<span class="archive-post-date">04/29</span><a class="archive-post-title" href= "/2018/04/29/RAPter-on-Ubuntu/" >RAPter on Ubuntu</a>
</li>
<li class="archive-post-item">
<span class="archive-post-date">03/19</span><a class="archive-post-title" href= "/2018/03/19/Tutte-Embedding-for-Parameterization/" >Tutte Embedding for Parameterization</a>
</li>
<li class="archive-post-item">
<span class="archive-post-date">02/28</span><a class="archive-post-title" href= "/2018/02/28/Hough-Transform-for-Plane-Detection/" >Hough Transform for Plane Detection</a>
</li>
<li class="archive-post-item">
<span class="archive-post-date">01/26</span><a class="archive-post-title" href= "/2018/01/26/Mesh-Smoothing/" >Mesh Smoothing</a>
</li>
</ul>
<div class="archive-year"> 2017 </div>
<ul class="year-list">
<li class="archive-post-item">
<span class="archive-post-date">12/22</span><a class="archive-post-title" href= "/2017/12/22/Implementation-of-Voronoi-Diagram-and-Delaunay-Triangulation/" >Implementation of Voronoi Diagram and Delaunay Triangulation</a>
</li>
<li class="archive-post-item">
<span class="archive-post-date">11/19</span><a class="archive-post-title" href= "/2017/11/19/Width-of-a-Set-in-the-Plane/" >Width of a Set in the Plane</a>
</li>
<li class="archive-post-item">
<span class="archive-post-date">11/01</span><a class="archive-post-title" href= "/2017/11/01/Hello-World/" >Hello World</a>
</li>
</div>
</div>
<div class="sidebar-tags">
<div class="sidebar-tags-name">
<span class="sidebar-tag-name"><a href= "#">geometry-processing</a></span>
<span class="sidebar-tag-name"><a href= "#">shape-context</a></span>
<span class="sidebar-tag-name"><a href= "#">instance-segmentation</a></span>
<span class="sidebar-tag-name"><a href= "#">data-preprocessing</a></span>
<span class="sidebar-tag-name"><a href= "#">class-imbalance</a></span>
<span class="sidebar-tag-name"><a href= "#">biking</a></span>
<span class="sidebar-tag-name"><a href= "#">trip</a></span>
<span class="sidebar-tag-name"><a href= "#">hello-world</a></span>
<span class="sidebar-tag-name"><a href= "#">hough-transform</a></span>
<span class="sidebar-tag-name"><a href= "#">parameterization</a></span>
<span class="sidebar-tag-name"><a href= "#">plane-detection</a></span>
<span class="sidebar-tag-name"><a href= "#">computational-geometry</a></span>
<span class="sidebar-tag-name"><a href= "#">voronoi-diagram</a></span>
<span class="sidebar-tag-name"><a href= "#">delaunay-triangulation</a></span>
<span class="sidebar-tag-name"><a href= "#">mesh-smoothing</a></span>
<span class="sidebar-tag-name"><a href= "#">deep-learning</a></span>
<span class="sidebar-tag-name"><a href= "#">pointnet</a></span>
<span class="sidebar-tag-name"><a href= "#">ubuntu</a></span>
<span class="sidebar-tag-name"><a href= "#">rapter</a></span>
<span class="sidebar-tag-name"><a href= "#">tutte-embedding</a></span>
<span class="sidebar-tag-name"><a href= "#">convex-hull</a></span>
</div>
<div class="tag-load-fail" style="display: none; color: #ccc; font-size: 0.6rem;">
缺失模块。<br/>
1、请确保node版本大于6.2<br/>
2、在博客根目录(注意不是archer根目录)执行以下命令:<br/>
<span style="color: #f75357; font-size: 1rem; line-height: 2rem;">npm i hexo-generator-json-content --save</span><br/>
3、在根目录_config.yml里添加配置:
<pre style="color: #787878; font-size: 0.6rem;">
jsonContent:
meta: false
pages: false
posts:
title: true
date: true
path: true
text: false
raw: false
content: false
slug: false
updated: false
comments: false
link: false
permalink: false
excerpt: false
categories: false
tags: true</pre>
</div>
<div class="sidebar-tag-list"></div>
</div>
</div>
</div>
<script>
var jsInfo = {
root: '/'
}
</script>
<!-- 不蒜子 -->
<script async src="//busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"></script>
<!-- CNZZ统计 -->
</div>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
tex2jax: {
inlineMath: [ ["$","$"], ["\\(","\\)"] ],
skipTags: ['script', 'noscript', 'style', 'textarea', 'pre', 'code'],
processEscapes: true
}
});
MathJax.Hub.Queue(function() {
var all = MathJax.Hub.getAllJax();
for (var i = 0; i < all.length; ++i)
all[i].SourceElement().parentNode.className += ' has-jax';
});
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-MML-AM_CHTML"></script><!-- hexo-inject:begin --><!-- hexo-inject:end -->
</body>
</html>