SLAM development on M1 Mac

来源:https://www.cnblogs.com/ZhaoqunZhong/archive/2022/09/15/16691371.html
-Advertisement-
Play Games

This blog introduces how to do SLAM related development natively on M1(Apple silicon) macbook. Most people come from Ubuntu environment will choose th ...


This blog introduces how to do SLAM related development natively on M1(Apple silicon) macbook. Most people come from Ubuntu environment will choose the easy but heavy path of installing a virtual Ubuntu machine and do the rest like before. I want to try to do it natively and share my experience with all the SLAM engineers out there who can't resist the new Macbook but worry about it can't be used for their daily work.

Conclusion comes first: It's rather straightforwad and the source code building speedup is really awesome.

With Clion and package management tool Homebrew, the whole process is not that much different from the Ubuntu environment.

Install Clion

The reason I recommand Clion is that it automatically takes care of the c++ toolchain part for you.

Clion's website provides the Apple silicon's version of download.

Install homebrew

Method 1

Guide from homebrew official website
https://docs.brew.sh/Installation

If you encounter this problem

curl: (7) Failed to connect to raw.githubusercontent.com port 443: Connection refused

then use method 2.

Method 2

Just manually download the install scripts from homebrew's github repo
https://github.com/Homebrew/install
and run the ./install.sh and ./uninstall.sh as you need.

You can also modify the HOMEBREW_BREW_DEFAULT_GIT_REMOTE and HOMEBREW_CORE_DEFAULT_GIT_REMOTE variables in the install.sh to use ssh urls instead of the https urls if you prefer.

Install pangolin

Pangolin is not in homebrew, so we have to build and install it from source.

  1. Install dependecies using homebrew
brew install eigen
brew install glew
  1. Fetch pangolin and compiles
    Because of some deprecation things related to opengl, the head of master branch from Pangolin's git repo can compile and run with itself, but causes error when it's used as dependency for certain SLAM algorithms. I forked the original repo and fixed some bugs here.
    https://github.com/ZhaoqunZhong/Pangolin

  2. Pay attention that the default CMAKE_INSTALL_PREFIX is still /usr/local/ like in Ubuntu. ('brew install' installs things to /opt/homebrew/, and cmake will include it into its search path. )
    So, if your project complains about can't find pangolin, you can just add /usr/local/~ to the include and library dirs manually.

Install OpenCV

Method 1

brew install opencv

Method 2

Build and install from source.
I used version 4.5.5. After earlier steps, it compiles out of the box.

By the way, I remember it takes at least 10min to build OpenCV from source on an Ubuntu machine with Intel i7 32g ram. But my M1pro Macbook takes about 3min13s. Shocking!

Install ceres-solver

Method 1

brew install ceres-solver

Method 2

Build and install from source.

  1. Install dependecies
brew install gflags
brew install glog
  1. Build ceres-solver
    It will automatically detect and use Apple's accelarate framework as the backend sparse solver.

-- Found Apple's Accelerate framework with sparse solvers, building with Accelerate sparse support.

Install PCL

brew install pcl

I'm tired of trying to build from source any more for two reasons:

  1. I guess they can all work based on the OpenCV and ceres-solver results.
  2. Homebrew takes care of all the dependencies for you if you are missing packages for your current installed package. It's so convenient. I recommand using it whenever possible.

Test a SLAM algorithm

Here I chose TUM's DSO algorithm. To make it work on M1 macbook, I also had to make some adjustments to the original head of master branch. I put the final workable version here.
https://github.com/ZhaoqunZhong/dso

Result

image

Good luck!


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 從提升性能角度來說 提升了對CPU的使用效率:目前生產的伺服器大多數都是多核,標配的機器都是 8C/16G。操作系統會將不同的線程分配給不同的核心處理,理論上,有多少核心就有多少個線程並行執行。如果沒有併發編程,CPU的利用率將極大的浪費,假設當前正在處理耗時的 I/O 操作,那麼整個CPU就會處於... ...
  • 大家好,我是三友~~ 在對於讀寫鎖的認識當中,我們都認為讀時加讀鎖,寫時加寫鎖來保證讀寫和寫寫互斥,從而達到讀寫安全的目的。但是就在我翻Eureka源碼的時候,發現Eureka在使用讀寫鎖時竟然是在讀時加寫鎖,寫時加讀鎖,這波操作屬實震驚到了我,於是我就花了點時間研究了一下Eureka的這波操作。 ...
  • DotnetZip使用方法見此文章https://www.cnblogs.com/pengze0902/p/6124659.html在netframework環境下,使用上面文章中的設置Encoding為Default的方法即可解決中文亂碼問題 但是當我使用.net6創建控制台項目並採用上述代碼時, ...
  • iNeuOS工業互聯網操作系統面向:儀器儀錶、雙碳環保、核能科學與工程和鋼鐵冶金領域頒發第一批技術認證資質,一共21名同志在項目實施過程中表現突出,從iNeuOS的應用、開發及項目過程中的交流都大大促進了項目保質保量的快速交付,特此頒發應用實施和二次開發工程認證。 ...
  • 一:背景 1. 講故事 前段時間有位朋友在微信上找到我,說他的程式出現了記憶體泄漏,能不能幫他看一下,這個問題還是比較經典的,加上好久沒上非托管方面的東西了,這篇就和大家分享一下,話不多說,上 WinDbg 說話。 二:WinDbg 分析 1. 到底是哪裡的泄漏 好的開始就是成功的一半,否則就南轅北轍 ...
  • sed高階用法 sed編輯器 sed是一種流編輯器,流編輯器會在編輯器處理數據之前基於預先提供的一組規則來編輯數據流。 1.sed編輯器工作流程 sed編輯器可以根據命令來處理數據流中的數據,這些命令要麼從命令行中輸入,要麼存儲在一個命令文本文件中。 sed的工作流程主要包括讀取、執行和顯示三個過程 ...
  • 個人學習-Linux文件系統架構 1. 參考文章 [1]https://blog.csdn.net/Holy_666/article/details/86532671 [2]CSDN博主土豆西瓜大芝麻:[Linux的VFS詳解]:https://blog.csdn.net/jinking01/art ...
  • Linux的哲學思想 優勢 一切都是一個文件。(包括硬體,文本,二進位,源代 碼) 系統中擁有小型,單一用途的程式。(一個程式只負責 做好自己的本職工作) 當遇到複雜任務,通過不同功能用途的程式組合起來 完成。 輕量級,一臺服務 dhcp ip 資料庫服務 網 頁 避免令人困惑的用戶界面就是沒有複雜 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...