ITK的安裝與測試(Ubuntu系統)

2021-08-20 10:26:01 字數 1662 閱讀 1461

首先更新電腦的ubuntu系統和檢測編譯環境

sudo

apt-get update

sudo

apt-get

install build-essential

export cc=/usr/bin/gcc

export cxx=/usr/bin/g++

cd /home

mkdir cmake

拆包及解壓
cd /home/cmake

tar -xzvf cmake-3.11.3.tar.gz

cd cmake-3.11.3
sudo

su#一定要加這句命令,否則執行下面的語句會出錯

./bootstrap &&

make

&&make

install

exit
cmake --version #如果在終端輸出當前cmake的版本號,則說明安裝成功

sudo

apt-get

install ccmake-curses-gui

ccmake --version #如果在終端輸出當前ccmake的版本號,則說明安裝成功
cd /home

mkdir itk

拆包及解壓
tar -xzvf insighttoolkit-4.10.0.tar.gz
cd /home/itk

mkdir build

cd /home/itk/build

ccmake ../insighttoolkit-4.10.0

cd /home/itk/build

make

cd /home

mkdir helloworld

cp /home/itk/insighttoolkit-4.10.0/examples/installation/cmakelists.txt /home/helloworld

cp /home/itk/insighttoolkit-4.10.0/examples/installation/helloworld.cxx /home/helloworld

cd /home/helloworld

mkdir build

cd /home/helloworld/build

ccmake ../../helloworld

cd /home/helloworld/build

make

./helloworld
itk hello world!

Ubuntu下ROS的安裝與測試

ros robot operating system 機械人作業系統。說是個作業系統,其實更像乙個庫和平台。分為兩層,底層是開源的,提供一些核心工具和程式 上層有的開源有的不開源,是開發者們在底層的基礎上編寫的實現某些特定功能的工具和程式。就像linux一樣,最核心的東西由乙個絕世天才寫好,基於這個...

Linux下ITK的編譯安裝

參考 sudo apt get install build essential wget tar xf cmake 3.14.5.tar.gz cd cmake 3.14.5 configure make sudo make install 安裝完成後在根目錄輸入 make version可以看到c...

ubuntu12 04下ROS的安裝與測試

參考官網的安裝教程 使用ros中的小海龜進行ros的測試。參考 在使用 rosrun turtle teleop turtle teleop key echo export ros package path ros workspace ros package path bashrc echo exp...