成人国产在线小视频_日韩寡妇人妻调教在线播放_色成人www永久在线观看_2018国产精品久久_亚洲欧美高清在线30p_亚洲少妇综合一区_黄色在线播放国产_亚洲另类技巧小说校园_国产主播xx日韩_a级毛片在线免费

資訊專欄INFORMATION COLUMN

python將指定點(diǎn)云文件(asc)轉(zhuǎn)換為PCD格式

cyrils / 2349人閱讀

摘要:起因由于自己大部分的點(diǎn)云文件都是格式的,但最近用做點(diǎn)云方面的研究,從文件到文件手動(dòng)轉(zhuǎn)化太麻煩,而且效率較低,故此寫一個(gè)不太成熟的腳本實(shí)現(xiàn)從文件到格式文件的轉(zhuǎn)換。

起因

由于自己大部分的點(diǎn)云文件都是.asc格式的,但最近用pcl做點(diǎn)云方面的研究,從asc文件到pcd文件手動(dòng)轉(zhuǎn)化太麻煩,而且效率較低,故此寫一個(gè)不太成熟的python腳本實(shí)現(xiàn)從asc文件到pcd格式文件的轉(zhuǎn)換。
ps此腳本只適用于ASCII編碼的文件,并且只適用于散亂點(diǎn)云

著手寫作

分析pcd文件的格式可知,從asc到pcd轉(zhuǎn)換最根本要求就是其文件開頭符合pcd格式要求,其中最主要的問題是的是如何動(dòng)態(tài)設(shè)置WIDTHPOINTS的值,對(duì)于散亂點(diǎn)云,這兩個(gè)值都可以表示點(diǎn)數(shù).點(diǎn)數(shù)的獲得可用asc文件的行數(shù)表示.
代碼如下:

#coding:utf-8
import time
from sys import argv
script ,filename = argv
print ("the input file name is:%r." %filename)

start = time.time()
print ("open the file...")
file = open(filename,"r+")
count = 0
#統(tǒng)計(jì)源文件的點(diǎn)數(shù)
for line in file:
    count=count+1
print ("size is %d" %count)
file.close()

#output = open("out.pcd","w+")
f_prefix = filename.split(".")[0]
output_filename = "{prefix}.pcd".format(prefix=f_prefix)
output = open(output_filename,"w+")

list = ["# .PCD v.5 - Point Cloud Data file format
","VERSION .5
","FIELDS x y z
","SIZE 4 4 4
","TYPE F F F
","COUNT 1 1 1
"]

output.writelines(list)
output.write("WIDTH ") #注意后邊有空格
output.write(str(count))
output.write("
HEIGHT")
output.write(str(1))  #強(qiáng)制類型轉(zhuǎn)換,文件的輸入只能是str格式
output.write("
POINTS ")
output.write(str(count))
output.write("
DATA ascii
")
file1 = open(filename,"r")
all = file1.read()
output.write(all)
output.close()
file1.close()

end = time.time()
print ("run time is: ", end-start)
實(shí)例

以20萬左右的點(diǎn)云為例,該腳本運(yùn)行時(shí)間大約在0.14s左右,基本可以滿足自己的需求

運(yùn)行以上腳本,便可自動(dòng)將example.asc轉(zhuǎn)化為example.pcd

文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請(qǐng)注明本文地址:http://systransis.cn/yun/45525.html

相關(guān)文章

發(fā)表評(píng)論

0條評(píng)論

最新活動(dòng)
閱讀需要支付1元查看
<