liblas

    -1熱度

    1回答

    我有這個小代碼用於在Las文件中操作激光雷達點。目標是從文件1中取1個點,然後查找文件2中的最近點。然後使用點的座標創建一個新點,然後保存它。我遇到的問題2到目前爲止,解釋如下: import laspy import laspy.file import liblas from liblas import header h = header.Header() inFile2 = las

    0熱度

    2回答

    我在docker中使用python,我需要添加包libLAS。 我通常只是添加一個簡單的線條來我dockerfile,因爲它將libLAS是: Run pip install liblas 泊塢似乎是能夠建立的形象,但是當我運行一個python腳本與線: import liblas 它給人的錯誤: Traceback (most recent call last): File "

    1熱度

    1回答

    我在Python中使用liblas來讀取,操作和編寫特殊點格式*.las。我有一個字符串作爲 s = "309437.95 6959999.84 118.98 16 1 1 0 0 1 0 112.992 5.9881" 當第一是X,第二個Y,第三元件的Z等 使用Liblas,我創建一個空liblas.point.Point對象 >>> pt = liblas.point.Point() >

    0熱度

    1回答

    我在Windows 64位和Python 2.7上有以下錯誤消息。 的liblas模塊版本是libLAS-1.7.0.win-amd64-py2.7.‌exe import liblas Traceback (most recent call last): File "<interactive input>", line 1, in <module> File "C:\Pyt

    0熱度

    1回答

    我試圖手動設置空間參考,但它崩潰了。 std::ofstream ofs; liblas::Header header; liblas::SpatialReference srs; srs.SetFromUserInput("EPSG:4326"); // It crashes here header.SetSRS(srs); header.SetPointRecordsCount(1)

    0熱度

    1回答

    我在.las文件中有激光雷達數據,我想從IT中消除噪音? 這是可能的開源工具,即拉斯維加斯工具,LibLas或任何其他開源, 因爲我的發現是我們可以實現這一點在使用.pcd文件格式的點雲庫但我們可以做同樣的庫在拉斯或拉斯維加斯工具

    0熱度

    1回答

    我想安裝庫libLAS。我正在使用Microsoft Visual Studio 2010,Windows 7和Cmake 2.8.10.2。到目前爲止,我已經安裝了升壓1.51,我跟着這個教程: http://www.liblas.org/compilation.html#using-visual-studio-9-2008-on-windows 與cmake的相當多的問題後,我創建的.sln,

    0熱度

    1回答

    從LiDAR數據中我已經分離了地面和非地面點與PMF。現在我想要將所有非地面點(z = 0)平坦化,但要保持距離地面以上的距離。這可以用LASground -replace_z在LASTools中完成。 想要的結果如下圖所示。 Image of wanted output

    1熱度

    1回答

    我需要使用C#讀取我的項目的LAS文件。 我使用libLAS庫到我的項目讀取LAS文件,我收到此錯誤: (Unable to load DLL 'liblas1.dll': The specified module could not be found. (Exception from HRESULT: 0x8007007E)). 任何幫助嗎?

    2熱度

    1回答

    我想用libLAS Python API將點數據集寫入*.las文件。但我遇到了一些問題與浮動值被四捨五入 >>> from liblas import point >>> pt=point.Point() >>> pt.x=2.323 >>> pt.x 2.0 >>> 如果我設置pt.raw_x,而不是pt.x我沒有看到的四捨五入問題,但沒有las文件寫入。 >>> pt.raw_