-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpc_factory.py
1081 lines (1055 loc) · 59 KB
/
pc_factory.py
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
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
"""
This script is used for point cloud processing.
The common pc format: .pts, .las, .pcd, .xyz, .ply, .txt
"""
import os
import sys
import platform
import open3d as o3d
from pathlib import Path
import pathlib
import numpy as np
import torch
BASE_DIR = os.path.dirname(os.path.abspath(__file__))
sys.path.append(BASE_DIR)
sys.path.append(os.path.join(BASE_DIR, '../common'))
sys.path.append(os.path.join(BASE_DIR, '../vox/linux'))
sys.path.append(os.path.join(BASE_DIR, '../vox/windows'))
from configs import FLAGS
from pc_io import get_all_files
from read_las import read_las
from filter import passThroughFilter, voxelGrid, project_inliers, remove_outlier, StatisticalOutlierRemovalFilter
from fps import farthest_point_sample, index_points
from PointCloud2Voxel import pointcloud2voxel
from reconstruction import poisson_surface_reconstruction, ball_pivot_surface_reconstruction
class PointCloud_FormatFactory(object):
def __init__(self, opts, filelist):
"""
:param opts: 超参
:param filelist: 要处理的文件列表
"""
self.opts = opts
self.filelist = filelist
self.filenum = len(self.filelist) # 要处理的文件个数
def pc_pc(self):
"""
点云格式转换函数
:return:
"""
for i in range(self.filenum):
print("Processing: ", self.filelist[i])
file_path = self.filelist[i] # 要处理的文件
input_pc_format = self.opts.input_format
output_pc_format = self.opts.output_format
# pcd->*
if input_pc_format == 'pcd':
# pcd->xyz
if output_pc_format == 'xyz':
pc = o3d.io.read_point_cloud(file_path)
# 获取文件名
stem = Path(file_path).stem
# 输出文件夹不存在则创建
pathlib.Path(self.opts.output_dir).mkdir(parents=True, exist_ok=True)
output_file = self.opts.output_dir + stem + '.xyz'
o3d.io.write_point_cloud(output_file, pc)
print("Done! result is saved in: ", output_file)
# pcd->pts
elif output_pc_format == 'pts':
pc = o3d.io.read_point_cloud(file_path)
# 获取文件名
stem = Path(file_path).stem
# 输出文件夹不存在则创建
pathlib.Path(self.opts.output_dir).mkdir(parents=True, exist_ok=True)
output_file = self.opts.output_dir + stem + '.pts'
o3d.io.write_point_cloud(output_file, pc)
print("Done! result is saved in: ", output_file)
# pcd->txt
elif output_pc_format == 'txt':
pc = o3d.io.read_point_cloud(file_path)
# 获取文件名
stem = Path(file_path).stem
# 输出文件夹不存在则创建
pathlib.Path(self.opts.output_dir).mkdir(parents=True, exist_ok=True)
output_file = self.opts.output_dir + stem + '.txt'
# txt is not supported!
# o3d.io.write_point_cloud(output_file, pc)
xyz = np.asarray(pc.points)
# print(xyz)
np.savetxt(output_file, xyz)
print("Done! result is saved in: ", output_file)
# pcd->csv
elif output_pc_format == 'csv':
pc = o3d.io.read_point_cloud(file_path)
# 获取文件名
stem = Path(file_path).stem
# 输出文件夹不存在则创建
pathlib.Path(self.opts.output_dir).mkdir(parents=True, exist_ok=True)
output_file = self.opts.output_dir + stem + '.csv'
# csv is not supported!
# o3d.io.write_point_cloud(output_file, pc)
xyz = np.asarray(pc.points)
# print(xyz)
np.savetxt(output_file, xyz, delimiter=',')
print("Done! result is saved in: ", output_file)
# pcd->ply
elif output_pc_format == 'ply':
pc = o3d.io.read_point_cloud(file_path)
# 获取文件名
stem = Path(file_path).stem
# 输出文件夹不存在则创建
pathlib.Path(self.opts.output_dir).mkdir(parents=True, exist_ok=True)
output_file = self.opts.output_dir + stem + '.ply'
o3d.io.write_point_cloud(output_file, pc)
print("Done! result is saved in: ", output_file)
else:
raise Exception('Unsupported Output file format! Only [xyz, pts, txt, csv, ply] is supported!')
# las->*
elif input_pc_format == 'las':
# las->pcd
if output_pc_format == 'pcd':
pc_list = read_las(file_path)
pc = []
for i in range(len(pc_list)):
pc.append(list(pc_list[i]))
point_xyz = np.array(pc)
# print(point_xyz)
# 创建open3d对象
pcd = o3d.geometry.PointCloud()
pcd.points = o3d.utility.Vector3dVector(point_xyz)
# 获取文件名
stem = Path(file_path).stem
# 输出文件夹不存在则创建
pathlib.Path(self.opts.output_dir).mkdir(parents=True, exist_ok=True)
output_file = self.opts.output_dir + stem + '.pcd'
o3d.io.write_point_cloud(output_file, pcd)
print("Done! result is saved in: ", output_file)
# las->xyz
elif output_pc_format == 'xyz':
pc_list = read_las(file_path)
pc = []
for i in range(len(pc_list)):
pc.append(list(pc_list[i]))
point_xyz = np.array(pc)
# print(point_xyz)
# 创建open3d对象
pcd = o3d.geometry.PointCloud()
pcd.points = o3d.utility.Vector3dVector(point_xyz)
# 获取文件名
stem = Path(file_path).stem
# 输出文件夹不存在则创建
pathlib.Path(self.opts.output_dir).mkdir(parents=True, exist_ok=True)
output_file = self.opts.output_dir + stem + '.xyz'
o3d.io.write_point_cloud(output_file, pcd)
print("Done! result is saved in: ", output_file)
# las->pts
elif output_pc_format == 'pts':
pc_list = read_las(file_path)
pc = []
for i in range(len(pc_list)):
pc.append(list(pc_list[i]))
point_xyz = np.array(pc)
# print(point_xyz)
# 创建open3d对象
pcd = o3d.geometry.PointCloud()
pcd.points = o3d.utility.Vector3dVector(point_xyz)
# 获取文件名
stem = Path(file_path).stem
# 输出文件夹不存在则创建
pathlib.Path(self.opts.output_dir).mkdir(parents=True, exist_ok=True)
output_file = self.opts.output_dir + stem + '.pts'
o3d.io.write_point_cloud(output_file, pcd)
print("Done! result is saved in: ", output_file)
# las->ply
elif output_pc_format == 'ply':
pc_list = read_las(file_path)
pc = []
for i in range(len(pc_list)):
pc.append(list(pc_list[i]))
point_xyz = np.array(pc)
# print(point_xyz)
# 创建open3d对象
pcd = o3d.geometry.PointCloud()
pcd.points = o3d.utility.Vector3dVector(point_xyz)
# 获取文件名
stem = Path(file_path).stem
# 输出文件夹不存在则创建
pathlib.Path(self.opts.output_dir).mkdir(parents=True, exist_ok=True)
output_file = self.opts.output_dir + stem + '.ply'
o3d.io.write_point_cloud(output_file, pcd)
print("Done! result is saved in: ", output_file)
# las->txt
elif output_pc_format == 'txt':
pc_list = read_las(file_path)
pc = []
for i in range(len(pc_list)):
pc.append(list(pc_list[i]))
point_xyz = np.array(pc)
# print(point_xyz)
# 获取文件名
stem = Path(file_path).stem
# 输出文件夹不存在则创建
pathlib.Path(self.opts.output_dir).mkdir(parents=True, exist_ok=True)
output_file = self.opts.output_dir + stem + '.txt'
np.savetxt(output_file, point_xyz)
print("Done! result is saved in: ", output_file)
# las->csv
elif output_pc_format == 'csv':
pc_list = read_las(file_path)
pc = []
for i in range(len(pc_list)):
pc.append(list(pc_list[i]))
point_xyz = np.array(pc)
# print(point_xyz)
# 获取文件名
stem = Path(file_path).stem
# 输出文件夹不存在则创建
pathlib.Path(self.opts.output_dir).mkdir(parents=True, exist_ok=True)
output_file = self.opts.output_dir + stem + '.csv'
np.savetxt(output_file, point_xyz, delimiter=',')
print("Done! result is saved in: ", output_file)
else:
raise Exception('Unsupported Output file format! Only [pcd, xyz, pts, txt, csv, ply] is supported!')
# ply->*
elif input_pc_format == 'ply':
# ply->pcd
if output_pc_format == 'pcd':
pc = o3d.io.read_point_cloud(file_path)
# 获取文件名
stem = Path(file_path).stem
# 输出文件夹不存在则创建
pathlib.Path(self.opts.output_dir).mkdir(parents=True, exist_ok=True)
output_file = self.opts.output_dir + stem + '.pcd'
o3d.io.write_point_cloud(output_file, pc)
print("Done! result is saved in: ", output_file)
# ply->xyz
elif output_pc_format == 'xyz':
pc = o3d.io.read_point_cloud(file_path)
# 获取文件名
stem = Path(file_path).stem
# 输出文件夹不存在则创建
pathlib.Path(self.opts.output_dir).mkdir(parents=True, exist_ok=True)
output_file = self.opts.output_dir + stem + '.xyz'
o3d.io.write_point_cloud(output_file, pc)
print("Done! result is saved in: ", output_file)
# ply->pts
elif output_pc_format == 'pts':
pc = o3d.io.read_point_cloud(file_path)
# 获取文件名
stem = Path(file_path).stem
# 输出文件夹不存在则创建
pathlib.Path(self.opts.output_dir).mkdir(parents=True, exist_ok=True)
output_file = self.opts.output_dir + stem + '.pts'
o3d.io.write_point_cloud(output_file, pc)
print("Done! result is saved in: ", output_file)
# ply->txt
elif output_pc_format == 'txt':
pc = o3d.io.read_point_cloud(file_path)
# 获取文件名
stem = Path(file_path).stem
# 输出文件夹不存在则创建
pathlib.Path(self.opts.output_dir).mkdir(parents=True, exist_ok=True)
output_file = self.opts.output_dir + stem + '.txt'
xyz = np.asarray(pc.points)
np.savetxt(output_file, xyz)
# o3d.io.write_point_cloud(output_file, pc)
print("Done! result is saved in: ", output_file)
# ply->csv
elif output_pc_format == 'csv':
pc = o3d.io.read_point_cloud(file_path)
# 获取文件名
stem = Path(file_path).stem
# 输出文件夹不存在则创建
pathlib.Path(self.opts.output_dir).mkdir(parents=True, exist_ok=True)
output_file = self.opts.output_dir + stem + '.csv'
xyz = np.asarray(pc.points)
np.savetxt(output_file, xyz, delimiter=',')
# o3d.io.write_point_cloud(output_file, pc)
print("Done! result is saved in: ", output_file)
else:
raise Exception('Unsupported Output file format! Only [pcd, xyz, pts, txt, csv] is supported!')
# xyz->*
elif input_pc_format == 'xyz':
# xyz->pcd
if output_pc_format == 'pcd':
pc = o3d.io.read_point_cloud(file_path)
# 获取文件名
stem = Path(file_path).stem
# 输出文件夹不存在则创建
pathlib.Path(self.opts.output_dir).mkdir(parents=True, exist_ok=True)
output_file = self.opts.output_dir + stem + '.pcd'
o3d.io.write_point_cloud(output_file, pc)
print("Done! result is saved in: ", output_file)
# xyz->pts
elif output_pc_format == 'pts':
pc = o3d.io.read_point_cloud(file_path)
# 获取文件名
stem = Path(file_path).stem
# 输出文件夹不存在则创建
pathlib.Path(self.opts.output_dir).mkdir(parents=True, exist_ok=True)
output_file = self.opts.output_dir + stem + '.pts'
o3d.io.write_point_cloud(output_file, pc)
print("Done! result is saved in: ", output_file)
# xyz->ply
elif output_pc_format == 'ply':
pc = o3d.io.read_point_cloud(file_path)
# 获取文件名
stem = Path(file_path).stem
# 输出文件夹不存在则创建
pathlib.Path(self.opts.output_dir).mkdir(parents=True, exist_ok=True)
output_file = self.opts.output_dir + stem + '.ply'
o3d.io.write_point_cloud(output_file, pc)
print("Done! result is saved in: ", output_file)
# xyz->txt
elif output_pc_format == 'txt':
pc = o3d.io.read_point_cloud(file_path)
# 获取文件名
stem = Path(file_path).stem
# 输出文件夹不存在则创建
pathlib.Path(self.opts.output_dir).mkdir(parents=True, exist_ok=True)
output_file = self.opts.output_dir + stem + '.txt'
xyz = np.asarray(pc.points)
np.savetxt(output_file, xyz)
print("Done! result is saved in: ", output_file)
# xyz->csv
elif output_pc_format == 'csv':
pc = o3d.io.read_point_cloud(file_path)
# 获取文件名
stem = Path(file_path).stem
# 输出文件夹不存在则创建
pathlib.Path(self.opts.output_dir).mkdir(parents=True, exist_ok=True)
output_file = self.opts.output_dir + stem + '.csv'
xyz = np.asarray(pc.points)
np.savetxt(output_file, xyz, delimiter=',')
print("Done! result is saved in: ", output_file)
else:
raise Exception('Unsupported Output file format! Only [pcd, pts, ply, txt, csv] is supported!')
# pts->*
elif input_pc_format == "pts":
# pts->pcd
if output_pc_format == 'pcd':
with open(file_path, 'r', encoding='utf-8') as f:
lines = f.readlines()
first_line = lines[0].split(' ')
# print(first_line)
try:
assert len(first_line) == 1
# header
pc = o3d.io.read_point_cloud(file_path)
# 获取文件名
stem = Path(file_path).stem
# 输出文件夹不存在则创建
pathlib.Path(self.opts.output_dir).mkdir(parents=True, exist_ok=True)
output_file = self.opts.output_dir + stem + '.pcd'
o3d.io.write_point_cloud(output_file, pc)
print("Done! result is saved in: ", output_file)
except:
# no header
pc = np.loadtxt(file_path, delimiter=' ')
# print(pc)
# 创建open3d对象
pcd = o3d.geometry.PointCloud()
pcd.points = o3d.utility.Vector3dVector(pc)
# 获取文件名
stem = Path(file_path).stem
# 输出文件夹不存在则创建
pathlib.Path(self.opts.output_dir).mkdir(parents=True, exist_ok=True)
output_file = self.opts.output_dir + stem + '.pcd'
o3d.io.write_point_cloud(output_file, pcd)
print("Done! result is saved in: ", output_file)
# pts->xyz
elif output_pc_format == 'xyz':
with open(file_path, 'r', encoding='utf-8') as f:
lines = f.readlines()
first_line = lines[0].split(' ')
try:
assert len(first_line) == 1
# header
pc = o3d.io.read_point_cloud(file_path)
# 获取文件名
stem = Path(file_path).stem
# 输出文件夹不存在则创建
pathlib.Path(self.opts.output_dir).mkdir(parents=True, exist_ok=True)
output_file = self.opts.output_dir + stem + '.xyz'
o3d.io.write_point_cloud(output_file, pc)
print("Done! result is saved in: ", output_file)
except:
# no header
pc = np.loadtxt(file_path, delimiter=' ')
# 创建open3d对象
pcd = o3d.geometry.PointCloud()
pcd.points = o3d.utility.Vector3dVector(pc)
# 获取文件名
stem = Path(file_path).stem
# 输出文件夹不存在则创建
pathlib.Path(self.opts.output_dir).mkdir(parents=True, exist_ok=True)
output_file = self.opts.output_dir + stem + '.xyz'
o3d.io.write_point_cloud(output_file, pcd)
print("Done! result is saved in: ", output_file)
# pts->ply
elif output_pc_format == 'ply':
with open(file_path, 'r', encoding='utf-8') as f:
lines = f.readlines()
first_line = lines[0].split(' ')
try:
assert len(first_line) == 1
# header
pc = o3d.io.read_point_cloud(file_path)
# 获取文件名
stem = Path(file_path).stem
# 输出文件夹不存在则创建
pathlib.Path(self.opts.output_dir).mkdir(parents=True, exist_ok=True)
output_file = self.opts.output_dir + stem + '.ply'
o3d.io.write_point_cloud(output_file, pc)
print("Done! result is saved in: ", output_file)
except:
# no header
pc = np.loadtxt(file_path, delimiter=' ')
# 创建open3d对象
pcd = o3d.geometry.PointCloud()
pcd.points = o3d.utility.Vector3dVector(pc)
# 获取文件名
stem = Path(file_path).stem
# 输出文件夹不存在则创建
pathlib.Path(self.opts.output_dir).mkdir(parents=True, exist_ok=True)
output_file = self.opts.output_dir + stem + '.ply'
o3d.io.write_point_cloud(output_file, pcd)
print("Done! result is saved in: ", output_file)
# pts->txt
elif output_pc_format == 'txt':
with open(file_path, 'r', encoding='utf-8') as f:
lines = f.readlines()
first_line = lines[0].split(' ')
try:
assert len(first_line) == 1
# header
pc = o3d.io.read_point_cloud(file_path)
# 获取文件名
stem = Path(file_path).stem
# 输出文件夹不存在则创建
pathlib.Path(self.opts.output_dir).mkdir(parents=True, exist_ok=True)
output_file = self.opts.output_dir + stem + '.txt'
xyz = np.asarray(pc.points)
np.savetxt(output_file, xyz)
print("Done! result is saved in: ", output_file)
except:
# no header
pc = np.loadtxt(file_path, delimiter=' ')
# 获取文件名
stem = Path(file_path).stem
# 输出文件夹不存在则创建
pathlib.Path(self.opts.output_dir).mkdir(parents=True, exist_ok=True)
output_file = self.opts.output_dir + stem + '.txt'
np.savetxt(output_file, pc)
print("Done! result is saved in: ", output_file)
# pts->csv
elif output_pc_format == 'csv':
with open(file_path, 'r', encoding='utf-8') as f:
lines = f.readlines()
first_line = lines[0].split(' ')
try:
assert len(first_line) == 1
# header
pc = o3d.io.read_point_cloud(file_path)
# 获取文件名
stem = Path(file_path).stem
# 输出文件夹不存在则创建
pathlib.Path(self.opts.output_dir).mkdir(parents=True, exist_ok=True)
output_file = self.opts.output_dir + stem + '.csv'
xyz = np.asarray(pc.points)
np.savetxt(output_file, xyz, delimiter=',')
print("Done! result is saved in: ", output_file)
except:
# no header
pc = np.loadtxt(file_path, delimiter=' ')
# 获取文件名
stem = Path(file_path).stem
# 输出文件夹不存在则创建
pathlib.Path(self.opts.output_dir).mkdir(parents=True, exist_ok=True)
output_file = self.opts.output_dir + stem + '.csv'
np.savetxt(output_file, pc, delimiter=',')
print("Done! result is saved in: ", output_file)
else:
raise Exception('Unsupported Output file format! Only [pcd, xyz, ply, txt, csv] is supported!')
# txt->*
elif input_pc_format == 'txt':
# txt->pcd
if output_pc_format == 'pcd':
pc = np.loadtxt(file_path, delimiter=' ')[:, :3]
# 创建open3d对象
pcd = o3d.geometry.PointCloud()
pcd.points = o3d.utility.Vector3dVector(pc)
# 获取文件名
stem = Path(file_path).stem
# 输出文件夹不存在则创建
pathlib.Path(self.opts.output_dir).mkdir(parents=True, exist_ok=True)
output_file = self.opts.output_dir + stem + '.pcd'
o3d.io.write_point_cloud(output_file, pcd)
print("Done! result is saved in: ", output_file)
# txt->ply
elif output_pc_format == 'ply':
pc = np.loadtxt(file_path, delimiter=' ')[:, :3]
# 创建open3d对象
pcd = o3d.geometry.PointCloud()
pcd.points = o3d.utility.Vector3dVector(pc)
# 获取文件名
stem = Path(file_path).stem
# 输出文件夹不存在则创建
pathlib.Path(self.opts.output_dir).mkdir(parents=True, exist_ok=True)
output_file = self.opts.output_dir + stem + '.ply'
o3d.io.write_point_cloud(output_file, pcd)
print("Done! result is saved in: ", output_file)
# txt->xyz
elif output_pc_format == 'xyz':
pc = np.loadtxt(file_path, delimiter=' ')[:, :3]
# 创建open3d对象
pcd = o3d.geometry.PointCloud()
pcd.points = o3d.utility.Vector3dVector(pc)
# 获取文件名
stem = Path(file_path).stem
# 输出文件夹不存在则创建
pathlib.Path(self.opts.output_dir).mkdir(parents=True, exist_ok=True)
output_file = self.opts.output_dir + stem + '.xyz'
o3d.io.write_point_cloud(output_file, pcd)
print("Done! result is saved in: ", output_file)
# txt->pts
elif output_pc_format == 'pts':
pc = np.loadtxt(file_path, delimiter=' ')[:, :3]
# 创建open3d对象
pcd = o3d.geometry.PointCloud()
pcd.points = o3d.utility.Vector3dVector(pc)
# 获取文件名
stem = Path(file_path).stem
# 输出文件夹不存在则创建
pathlib.Path(self.opts.output_dir).mkdir(parents=True, exist_ok=True)
output_file = self.opts.output_dir + stem + '.pts'
o3d.io.write_point_cloud(output_file, pcd)
print("Done! result is saved in: ", output_file)
else:
raise Exception('Unsupported Output file format! Only [pcd, ply, xyz, pts] is supported!')
else:
raise Exception('Unsupported Input file format! Only [pcd, las, ply, xyz, pts, txt] is supported!')
def filter(self):
"""
点云滤波
:return: 滤波之后的点云
"""
for i in range(self.filenum):
print("Processing: ", self.filelist[i])
file_path = self.filelist[i] # 要处理的文件
input_pc_format = self.opts.input_format
filters = self.opts.filter
# 检查输入输出文件格式是否合法
# ["xyz", "pcd", "ply"]
assert input_pc_format in ["xyz", "pcd", "pts", "ply", "txt"]
if input_pc_format in ["xyz", "pcd", "ply"]:
# 获取文件名
stem = Path(file_path).stem
# 输出文件夹不存在则创建
pathlib.Path(self.opts.output_dir).mkdir(parents=True, exist_ok=True)
# 以原格式输出
output_file = self.opts.output_dir + stem + '.' + input_pc_format
pc = o3d.io.read_point_cloud(file_path)
xyz = np.asarray(pc.points, dtype=np.float32)
# print(xyz)
if filters == "PassThroughFilter":
# You need set suitable upper limit value of passThroughFilter, or you will get 0 point.
upper_limit = self.opts.upper_limit
filter_pc = passThroughFilter(xyz, upper_limit)
pcd = o3d.geometry.PointCloud()
pcd.points = o3d.utility.Vector3dVector(filter_pc)
o3d.io.write_point_cloud(output_file, pcd)
elif filters == "VoxelGridFilter":
# You need set suitable voxel size of passThroughFilter
voxel_size = self.opts.voxel_size
filter_pc = voxelGrid(xyz, voxel_size)
pcd = o3d.geometry.PointCloud()
pcd.points = o3d.utility.Vector3dVector(filter_pc)
o3d.io.write_point_cloud(output_file, pcd)
elif filters == "project_inliers":
filter_pc = project_inliers(xyz)
pcd = o3d.geometry.PointCloud()
pcd.points = o3d.utility.Vector3dVector(filter_pc)
o3d.io.write_point_cloud(output_file, pcd)
elif filters == "remove_outliers":
choices = self.opts.removal
radius = self.opts.radius
min_neighbor = self.opts.min_neighbor
# Maybe you should set suitable radius and min_neighbor
filter_pc = remove_outlier(xyz, choices, radius, min_neighbor)
pcd = o3d.geometry.PointCloud()
pcd.points = o3d.utility.Vector3dVector(filter_pc)
o3d.io.write_point_cloud(output_file, pcd)
elif filters == "statistical_removal":
std_dev = self.opts.std_dev
# Maybe you should set suitable std_dev
filter_pc = StatisticalOutlierRemovalFilter(xyz, std_dev)
pcd = o3d.geometry.PointCloud()
pcd.points = o3d.utility.Vector3dVector(filter_pc)
o3d.io.write_point_cloud(output_file, pcd)
else:
raise Exception("Unsupported filter! Choices = [PassThroughFilter, VoxelGridFilter, "
"project_inliers, remove_outliers, statistical_removal]")
print("Done! Filtered point cloud is saved in: ", output_file)
# pts
elif input_pc_format == "pts":
with open(file_path, 'r', encoding='utf-8') as f:
lines = f.readlines()
first_line = lines[0].split(' ')
try:
assert len(first_line) == 1
# header
# 获取文件名
stem = Path(file_path).stem
# 输出文件夹不存在则创建
pathlib.Path(self.opts.output_dir).mkdir(parents=True, exist_ok=True)
# 以原格式输出
output_file = self.opts.output_dir + stem + '.' + input_pc_format
pc = o3d.io.read_point_cloud(file_path)
xyz = np.asarray(pc.points, dtype=np.float32)
if filters == "PassThroughFilter":
# You need set suitable upper limit value of passThroughFilter, or you will get 0 point.
upper_limit = self.opts.upper_limit
filter_pc = passThroughFilter(xyz, upper_limit)
pcd = o3d.geometry.PointCloud()
pcd.points = o3d.utility.Vector3dVector(filter_pc)
o3d.io.write_point_cloud(output_file, pcd)
elif filters == "VoxelGridFilter":
# You need set suitable voxel size of passThroughFilter
voxel_size = self.opts.voxel_size
filter_pc = voxelGrid(xyz, voxel_size)
pcd = o3d.geometry.PointCloud()
pcd.points = o3d.utility.Vector3dVector(filter_pc)
o3d.io.write_point_cloud(output_file, pcd)
elif filters == "project_inliers":
filter_pc = project_inliers(xyz)
pcd = o3d.geometry.PointCloud()
pcd.points = o3d.utility.Vector3dVector(filter_pc)
o3d.io.write_point_cloud(output_file, pcd)
elif filters == "remove_outliers":
choices = self.opts.removal
radius = self.opts.radius
min_neighbor = self.opts.min_neighbor
# Maybe you should set suitable radius and min_neighbor
filter_pc = remove_outlier(xyz, choices, radius, min_neighbor)
pcd = o3d.geometry.PointCloud()
pcd.points = o3d.utility.Vector3dVector(filter_pc)
o3d.io.write_point_cloud(output_file, pcd)
elif filters == "statistical_removal":
std_dev = self.opts.std_dev
# Maybe you should set suitable std_dev
filter_pc = StatisticalOutlierRemovalFilter(xyz, std_dev)
pcd = o3d.geometry.PointCloud()
pcd.points = o3d.utility.Vector3dVector(filter_pc)
o3d.io.write_point_cloud(output_file, pcd)
else:
raise Exception("Unsupported filter! Choices = [PassThroughFilter, VoxelGridFilter, "
"project_inliers, remove_outliers, statistical_removal]")
print("Done! Filtered point cloud is saved in: ", output_file)
except:
# no header
pc = np.loadtxt(file_path, delimiter=' ', dtype=np.float32)
# 获取文件名
stem = Path(file_path).stem
# 输出文件夹不存在则创建
pathlib.Path(self.opts.output_dir).mkdir(parents=True, exist_ok=True)
# 以原格式输出
output_file = self.opts.output_dir + stem + '.' + input_pc_format
if filters == "PassThroughFilter":
# You need set suitable upper limit value of passThroughFilter, or you will get 0 point.
upper_limit = self.opts.upper_limit
filter_pc = passThroughFilter(pc, upper_limit)
pcd = o3d.geometry.PointCloud()
pcd.points = o3d.utility.Vector3dVector(filter_pc)
o3d.io.write_point_cloud(output_file, pcd)
elif filters == "VoxelGridFilter":
# You need set suitable voxel size of VoxelGridFilter
voxel_size = self.opts.voxel_size
filter_pc = voxelGrid(pc, voxel_size)
pcd = o3d.geometry.PointCloud()
pcd.points = o3d.utility.Vector3dVector(filter_pc)
o3d.io.write_point_cloud(output_file, pcd)
elif filters == "project_inliers":
filter_pc = project_inliers(pc)
pcd = o3d.geometry.PointCloud()
pcd.points = o3d.utility.Vector3dVector(filter_pc)
o3d.io.write_point_cloud(output_file, pcd)
elif filters == "remove_outliers":
choices = self.opts.removal
radius = self.opts.radius
min_neighbor = self.opts.min_neighbor
# Maybe you should set suitable radius and min_neighbor
filter_pc = remove_outlier(pc, choices, radius, min_neighbor)
pcd = o3d.geometry.PointCloud()
pcd.points = o3d.utility.Vector3dVector(filter_pc)
o3d.io.write_point_cloud(output_file, pcd)
elif filters == "statistical_removal":
std_dev = self.opts.std_dev
# Maybe you should set suitable std_dev
filter_pc = StatisticalOutlierRemovalFilter(pc, std_dev)
pcd = o3d.geometry.PointCloud()
pcd.points = o3d.utility.Vector3dVector(filter_pc)
o3d.io.write_point_cloud(output_file, pcd)
else:
raise Exception("Unsupported filter! Choices = [PassThroughFilter, VoxelGridFilter, "
"project_inliers, remove_outliers, statistical_removal]")
print("Done! Filtered point cloud is saved in: ", output_file)
# txt
elif input_pc_format == "txt":
pc = np.loadtxt(file_path, delimiter=' ', dtype=np.float32)[:, :3]
# 获取文件名
stem = Path(file_path).stem
# 输出文件夹不存在则创建
pathlib.Path(self.opts.output_dir).mkdir(parents=True, exist_ok=True)
# 以原格式输出
output_file = self.opts.output_dir + stem + '.' + input_pc_format
if filters == "PassThroughFilter":
# You need set suitable upper limit value of passThroughFilter, or you will get 0 point.
upper_limit = self.opts.upper_limit
filter_pc = passThroughFilter(pc, upper_limit)
np.savetxt(output_file, filter_pc)
elif filters == "VoxelGridFilter":
# You need set suitable voxel size of passThroughFilter
voxel_size = self.opts.voxel_size
filter_pc = voxelGrid(pc, voxel_size)
np.savetxt(output_file, filter_pc)
elif filters == "project_inliers":
filter_pc = project_inliers(pc)
np.savetxt(output_file, filter_pc)
elif filters == "remove_outliers":
choices = self.opts.removal
radius = self.opts.radius
min_neighbor = self.opts.min_neighbor
# Maybe you should set suitable radius and min_neighbor
filter_pc = remove_outlier(pc, choices, radius, min_neighbor)
np.savetxt(output_file, filter_pc)
elif filters == "statistical_removal":
std_dev = self.opts.std_dev
# Maybe you should set suitable std_dev
filter_pc = StatisticalOutlierRemovalFilter(pc, std_dev)
np.savetxt(output_file, filter_pc)
else:
raise Exception("Unsupported filter! Choices = [PassThroughFilter, VoxelGridFilter, "
"project_inliers, remove_outliers, statistical_removal]")
print("Done! Filtered point cloud is saved in: ", output_file)
else:
raise Exception("Unsupported input file format. Choices=[xyz, pcd, pts, ply, txt]")
def pc_downsample(self):
"""
点云下采样
:return:
"""
for i in range(self.filenum):
print("Processing: ", self.filelist[i])
file_path = self.filelist[i] # 要处理的文件
input_pc_format = self.opts.input_format
down_sampler = self.opts.down_sampler
point_num = self.opts.point_num
# 获取文件名
stem = Path(file_path).stem
# 输出文件夹不存在则创建
pathlib.Path(self.opts.output_dir).mkdir(parents=True, exist_ok=True)
# 下采样后以原格式输出
output_file = self.opts.output_dir + stem + '.' + input_pc_format
# xyz, pcd, ply
if input_pc_format in ["xyz", "pcd", "ply"]:
pc = o3d.io.read_point_cloud(file_path)
xyz = np.asarray(pc.points, dtype=np.float32)
# farthest point sampling used in PointNet++
if down_sampler == "fps":
if point_num > xyz.shape[0]:
raise Exception("The point num cannot be greater than the actual number of points.")
else:
xyz = xyz[np.newaxis, :, :]
xyz = torch.from_numpy(xyz)
centroids = farthest_point_sample(xyz, point_num)
new_points = index_points(xyz, centroids)
ds_points = new_points.numpy()[0]
pcd = o3d.geometry.PointCloud()
pcd.points = o3d.utility.Vector3dVector(ds_points)
o3d.io.write_point_cloud(output_file, pcd)
print("Done! result is saved in: ", output_file)
elif down_sampler == "random":
if point_num > xyz.shape[0]:
raise Exception("The point num cannot be greater than the actual number of points.")
else:
sampling_ratio = point_num * 1.0 / xyz.shape[0]
pc = o3d.geometry.PointCloud.random_down_sample(pc, sampling_ratio)
o3d.io.write_point_cloud(output_file, pc)
print("Done! result is saved in: ", output_file)
elif down_sampler == "uniform":
k = self.opts.k
pc = o3d.geometry.PointCloud.uniform_down_sample(pc, k)
o3d.io.write_point_cloud(output_file, pc)
print("Done! result is saved in: ", output_file)
elif down_sampler == "voxel":
voxel_size = self.opts.voxel_size
pc = o3d.geometry.PointCloud.voxel_down_sample(pc, voxel_size)
o3d.io.write_point_cloud(output_file, pc)
print("Done! result is saved in: ", output_file)
else:
raise Exception("Unsupported down sampler. Choices=[fps, random, uniform, voxel]")
# txt
elif input_pc_format == "txt":
pc = np.loadtxt(file_path, delimiter=' ')[:, :3]
xyz = pc[np.newaxis, :, :]
# farthest point sampling used in PointNet++
if down_sampler == "fps":
if point_num > pc.shape[0]:
raise Exception("The point num cannot be greater than the actual number of points.")
else:
xyz = torch.from_numpy(xyz)
centroids = farthest_point_sample(xyz, point_num)
new_points = index_points(xyz, centroids)
ds_points = new_points.numpy()[0]
np.savetxt(output_file, ds_points)
print("Done! result is saved in: ", output_file)
elif down_sampler == "random":
if point_num > pc.shape[0]:
raise Exception("The point num cannot be greater than the actual number of points.")
else:
sampling_ratio = point_num * 1.0 / pc.shape[0]
pcd = o3d.geometry.PointCloud()
pcd.points = o3d.utility.Vector3dVector(pc)
pc = o3d.geometry.PointCloud.random_down_sample(pcd, sampling_ratio)
ds_points = np.asarray(pc.points, dtype=np.float32)
np.savetxt(output_file, ds_points)
print("Done! result is saved in: ", output_file)
elif down_sampler == "uniform":
k = self.opts.k
pcd = o3d.geometry.PointCloud()
pcd.points = o3d.utility.Vector3dVector(pc)
pc = o3d.geometry.PointCloud.uniform_down_sample(pcd, k)
ds_points = np.asarray(pc.points, dtype=np.float32)
np.savetxt(output_file, ds_points)
print("Done! result is saved in: ", output_file)
elif down_sampler == "voxel":
voxel_size = self.opts.voxel_size
pcd = o3d.geometry.PointCloud()
pcd.points = o3d.utility.Vector3dVector(pc)
pc = o3d.geometry.PointCloud.voxel_down_sample(pcd, voxel_size)
ds_points = np.asarray(pc.points, dtype=np.float32)
np.savetxt(output_file, ds_points)
print("Done! result is saved in: ", output_file)
else:
raise Exception("Unsupported down sampler. Choices=[fps, random, uniform, voxel]")
# pts
elif input_pc_format == "pts":
with open(file_path, 'r', encoding='utf-8') as f:
lines = f.readlines()
first_line = lines[0].split(' ')
try:
assert len(first_line) == 1
# header
# 获取文件名
stem = Path(file_path).stem
# 输出文件夹不存在则创建
pathlib.Path(self.opts.output_dir).mkdir(parents=True, exist_ok=True)
# 以原格式输出
output_file = self.opts.output_dir + stem + '.' + input_pc_format
pc = o3d.io.read_point_cloud(file_path)
xyz = np.asarray(pc.points, dtype=np.float32)
# farthest point sampling used in PointNet++
if down_sampler == "fps":
if point_num > xyz.shape[0]:
raise Exception("The point num cannot be greater than the actual number of points.")
else:
xyz = xyz[np.newaxis, :, :]
xyz = torch.from_numpy(xyz)
centroids = farthest_point_sample(xyz, point_num)
new_points = index_points(xyz, centroids)
ds_points = new_points.numpy()[0]
pcd = o3d.geometry.PointCloud()
pcd.points = o3d.utility.Vector3dVector(ds_points)
o3d.io.write_point_cloud(output_file, pcd)
print("Done! result is saved in: ", output_file)
elif down_sampler == "random":
if point_num > xyz.shape[0]:
raise Exception("The point num cannot be greater than the actual number of points.")
else:
sampling_ratio = point_num * 1.0 / xyz.shape[0]
pc = o3d.geometry.PointCloud.random_down_sample(pc, sampling_ratio)
o3d.io.write_point_cloud(output_file, pc)
print("Done! result is saved in: ", output_file)
elif down_sampler == "uniform":
k = self.opts.k
pc = o3d.geometry.PointCloud.uniform_down_sample(pc, k)
o3d.io.write_point_cloud(output_file, pc)
print("Done! result is saved in: ", output_file)
elif down_sampler == "voxel":
voxel_size = self.opts.voxel_size
pc = o3d.geometry.PointCloud.voxel_down_sample(pc, voxel_size)
o3d.io.write_point_cloud(output_file, pc)
print("Done! result is saved in: ", output_file)
else:
raise Exception("Unsupported down sampler. Choices=[fps, random, uniform, voxel]")
except:
# no header
pc = np.loadtxt(file_path, delimiter=' ', dtype=np.float32)
# 获取文件名
stem = Path(file_path).stem
# 输出文件夹不存在则创建
pathlib.Path(self.opts.output_dir).mkdir(parents=True, exist_ok=True)
# 以原格式输出
output_file = self.opts.output_dir + stem + '.' + input_pc_format
xyz = pc[np.newaxis, :, :]
# farthest point sampling used in PointNet++
if down_sampler == "fps":
if point_num > pc.shape[0]:
raise Exception("The point num cannot be greater than the actual number of points.")
else:
xyz = torch.from_numpy(xyz)
centroids = farthest_point_sample(xyz, point_num)
new_points = index_points(xyz, centroids)
ds_points = new_points.numpy()[0]
pcd = o3d.geometry.PointCloud()
pcd.points = o3d.utility.Vector3dVector(ds_points)
o3d.io.write_point_cloud(output_file, pcd)
print("Done! result is saved in: ", output_file)
elif down_sampler == "random":
if point_num > pc.shape[0]:
raise Exception("The point num cannot be greater than the actual number of points.")
else:
sampling_ratio = point_num * 1.0 / pc.shape[0]
pcd = o3d.geometry.PointCloud()
pcd.points = o3d.utility.Vector3dVector(pc)
pc = o3d.geometry.PointCloud.random_down_sample(pcd, sampling_ratio)
o3d.io.write_point_cloud(output_file, pc)
print("Done! result is saved in: ", output_file)
elif down_sampler == "uniform":
k = self.opts.k
pcd = o3d.geometry.PointCloud()
pcd.points = o3d.utility.Vector3dVector(pc)
pc = o3d.geometry.PointCloud.uniform_down_sample(pcd, k)
o3d.io.write_point_cloud(output_file, pc)
print("Done! result is saved in: ", output_file)
elif down_sampler == "voxel":
voxel_size = self.opts.voxel_size
pcd = o3d.geometry.PointCloud()
pcd.points = o3d.utility.Vector3dVector(pc)
pc = o3d.geometry.PointCloud.voxel_down_sample(pcd, voxel_size)
o3d.io.write_point_cloud(output_file, pc)
print("Done! result is saved in: ", output_file)
else:
raise Exception("Unsupported down sampler. Choices=[fps, random, uniform, voxel]")
else:
raise Exception("Unsupported input format! Choices=[ply, xyz, pts, pcd, txt]")
def pc_upsampling(self):
"""
点云上采样
支持的上采样模型:
1. Meta-PU
支持的采样率:任意的浮点数,如:5.5
支持的运行系统:Linux
支持的点云格式:仅xyz
:return:
"""
for i in range(self.filenum):
print("Processing: ", self.filelist[i])
file_path = self.filelist[i] # 要处理的文件
input_pc_format = self.opts.input_format
pu_model = self.opts.pu_model
scale_R = self.opts.scale
if pu_model == "Meta-PU":
# 检查系统
assert platform.system() == "Linux"
# 检查输入输出文件格式是否合法
assert input_pc_format in ["xyz"]
os.system('cd ../PU/Meta-PU')
# model/data/all_testset/4/input : the path of the point cloud to be sampled
# result is saved in /model/new/result/${R}input/
os.system('python main_gan.py --phase test --dataset model/data/all_testset/4/input --log_dir '
'model/new --batch_size 4 --model model_res_mesh_pool --model_path 60 --gpu 0 '
'--test_scale ' + str(scale_R))
else:
raise Exception("unsupported PU model.")
def pc_voxel(self):
"""
点云体素化
:return:
"""
for i in range(self.filenum):
print("Processing: ", self.filelist[i])
file_path = self.filelist[i] # 要处理的文件
input_pc_format = self.opts.input_format
output_voxel_format = self.opts.output_format
voxel_size = self.opts.voxel
# 获取文件名
stem = Path(file_path).stem
# 输出文件夹不存在则创建
pathlib.Path(self.opts.output_dir).mkdir(parents=True, exist_ok=True)
# 体素化后以体素格式输出