您好,登錄后才能下訂單哦!
這篇文章主要介紹“ubuntu下如何安裝ITK”,在日常操作中,相信很多人在ubuntu下如何安裝ITK問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”ubuntu下如何安裝ITK”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
vmware 10
ubuntu-14.04.2-desktop-amd64
(1)安裝curses庫,這個庫可以讓cmake運行成GUI界面,生成ccmake
sudo apt-get install libncurses5-dev sudo apt-get install cmake-curses-gui
(2)安裝cmake,這里一定要手動選擇安裝3.7.0的cmake,而不是apt-get install,否則會是問題很多的2.8.12
cd /home/bwb #進入你自己的目錄 wget "https://cmake.org/files/v3.7/cmake-3.7.0.tar.gz" tar zxvf cmake-3.7.0.tar.gz cd cmake-3.7.0 sudo su #一定要加這句話root,否則下面語句會沒有權限 ./bootstrap && make && make install
(3)驗證安裝
cmake --version ccmake --version
(1)下載4.10.1版本的ITK,需要自己用瀏覽器下載,因為并不是文件地址,而是一個下載服務的網頁
"https://sourceforge.net/projects/itk/files/itk/4.10/InsightToolkit-4.10.1.tar.gz/download"
下載文件InsightToolkit-4.10.1.tar.gz
放入/home/bwb
(2)建立目錄,解壓
cd /home/bwb mkdir ITK mkdir ITK/build tar -zxvf ../InsightToolkit-4.10.1.tar.gz #把/home/bwb下的壓縮文件解壓到/home/bwb/ITK里
(3)編譯
cd /home/bwb/ITK/build ccmake ../InsightToolkit-4.10.1
(4)出現了GUI界面,按c鍵配置。然后會提示一些設置,但其實根本不用設置,注意下這兩個選項是不是OFF就行,不是OFF改成OFF:
BUILD_EXAMPLES *OFF BUILD_TESTING *OFF
更改的方法是,光標上下選擇,回車修改,回車保存
(5)繼續按c鍵配置,提示成功,然后按g生成編譯文件。
(6)make
make
cd /home/bids/ITK mkdir test //工程文件 mkdir test/src //存放源代碼 mkdir test/bin //示例編譯目標 mkdir test/src/HelloWorld //項目名稱 mkdir test/bin/HelloWorld //項目名稱
cp /home/bwb/ITK/InsightToolkit-4.10.1/Examples/Installation/* /home/bwb/ITK/test/src/HelloWorld
會有兩個文件:CMakeLists.txt、HelloWorld.cxx
cd /home/bwb/test/bin/HelloWorld ccmake /home/bwb/ITK/test/src/HelloWorld
可能會出現錯誤:
ITK_DIR_NOTFOUND
同樣用箭頭上下選擇,回車修改保存,改為ITK的目錄:
/home/bwb/ITK/build
重新按c配置,按g生成編譯文件
make //生成 HelloWorld 可執行文件 ./HelloWrold //執行
最終結果:
ITK Hello World!
#最低cmake版本要求 cmake_minimum_required(VERSION 2.8.9) if(COMMAND CMAKE_POLICY) cmake_policy(SET CMP0003 NEW) endif() #項目名稱 project(HelloWorld) #ITK依賴的包的路徑,include進來 find_package(ITK REQUIRED) include(${ITK_USE_FILE}) #把HelloWorld.cxx源文件編譯成HelloWorld可執行程序 add_executable(HelloWorld HelloWorld.cxx ) #指定編譯參數 target_link_libraries(HelloWorld ${ITK_LIBRARIES})
四、安裝過程中出現的坑
<h1pingfang sc',="" 'microsoft="" yahei',="" simhei,="" arial,="" simsun;="" margin:="" 0px;="" padding:="" 0px="" 29px;="" font-weight:="" 700;="" box-sizing:="" border-box;="" word-break:="" break-all;="" word-wrap:="" break-word;="" color:="" rgb(44,="" 48,="" 51);="" font-size:="" 24px;="" line-height:="" 38px;="" font-style:="" normal;="" font-variant:="" letter-spacing:="" orphans:="" auto;="" text-align:="" start;="" text-indent:="" text-transform:="" none;="" white-space:="" widows:="" word-spacing:="" -webkit-text-stroke-width:="" 0px;"="">修改了一下CMakeLists.txt:
target_link_libraries(HelloWorld ${ITK_LIBRARIES}) 改為 target_link_libraries(HelloWorld ${ITK_LIBRARIES} -lpthread)
解決了。
沒有相關的資料,唯一在google查到的資料是一段郵件對話:
他說問題在cmake:
These messages indicate possible issues with the CMake configuration. For more information, see the "Configuring and Building ITK" section of the ITK Software Guide: https://itk.org/ITKSoftwareGuide/html/Book1/ITKSoftwareGuide-Book1ch2.html#x22-130002 and find a downloadable HelloWorld example that includes the CMake configuration here: https://itk.org/ITKExamples/src/Core/Common/BuildAHelloWorldProgram/Documentation.html Hope this helps, Matt
我用的2.8.12,是ITK最新版本的最低要求,所以我直接換用更高版本cmake和更低版本ITK了,才解決了,否則怎么改makefile文件都會報這個錯。
到此,關于“ubuntu下如何安裝ITK”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。