3D 13 在clion中使用PCL

2021-08-19 14:58:25 字數 862 閱讀 4162

主要是將pcl加入cmakelist.txt中去,不過我還是遇到了一些問題。比如說cmake沒有真正的將pcl的頭檔案目錄取進去。

從原始碼安裝好pcl-1.8後,利用find_package(pcl required)尋找pcl包,發現能找到,但是include_directories(pcl_include_dirs)無法新增標頭檔案,因此我就自己手動新增。具體是cmakelist.txt如下:

cmake_minimum_required(version 2.8)

project(pclregister)

set(cmake_cxx_flags "$ -std=c++11")

if(not pcl_include_dirs)

message("find pcl")

find_package(pcl required)

endif(not pcl_include_dirs)

#include_directories(pcl_include_dirs) #無效

include_directories(/usr/include/eigen3)#手動新增

include_directories(/usr/local/include/pcl-1.8) #手動新增

link_directories($)

add_definitions($)

set(source_files main.cpp)

add_executable(pclregister $)

#要使用哪些功能模組就需要鏈結,不然會提示未定義的引用

target_link_libraries(pclregister $$$

$$$)

任務13 在Core Mvc中使用Options

新建controllers資料夾,在裡面新增homecontroller控制器 新建views資料夾,再新建home資料夾。再新建index.cshtml的檢視頁面 注入mvc 新增預設路由,這樣就把整個mvc的middleware新增到我們的應用程式當中 使用ioptions是乙個泛型的方法,把我...

在Unity3d中使用GZip來壓縮傳輸資料

因為unity中的.net支援是有限制的,所以c 自帶的gzip的壓縮方法不能夠使用。引入頭部 using icsharpcode.sharpziplib using icsharpcode.sharpziplib.gzip 以下 實現了壓縮和解壓的方法 memorystream ms new me...

關於在Unity3D中使用C DLL庫的記錄

啊,long time no see.大概又是很久沒有更新部落格了。好訊息是我今天正式收到了轉正郵件了。最近get到了乙個新技能,就是在u3d中調我們自己寫的c 的庫。之前也有用到過,但都是導師來接好了,沒有自己研究過。現將內容記錄如下。1.關於unity中匯入外部庫,在pc端和安卓端 pc端使用的...