Downloads
Docker for Windows / LinuxOrbStack for Mac
Links
Installing Docker from the Default Repositories (Option 2)進入容器 - 《Docker —— 從入門到實踐》正體中文版Docker 基本指令操作
Docker 實戰系列(一):一步一步帶你 dockerize 你的應用
Basic
Create new container
Wei Chen Pai changed 2 years agoView mode Like Bookmark
The following information represents the comprehensive notes from the ‘’Embedded System Course 2023’’. These notes provide the fundamental concepts, principles, and practical applications covered in the course. They serve as a valuable resource for students and professionals seeking to enhance their knowledge and skills in the field of embedded systems.
Chapter 1
Bit
1 (True)
0 (False)
Byte
8 bits
Wei Chen Pai changed 2 years agoView mode Like Bookmark
Create Date: August 31, 2022
Latest Update: August 31, 2022
Tags: OpenMVG, OpenMVS, Ubuntu
⚠️ If you’ve already complete the installation.
Below’s link can lead you to the “User Manual” page.
OpenMVG/OpenMVS User Manual
OpenMVG安裝
Required tools:
Wei Chen Pai changed 2 years agoView mode Like Bookmark
Create Date: August 31, 2022
Latest Update: August 31, 2022
Tags: OpenMVG, OpenMVS, Ubuntu
⚠️ Make sure you’ve completed all the installation, both OpenMVG and OpenMVS.
If not, below’s link will lead you to the “Installation Guide” page.
OpenMVG/OpenMVS Installation Guide
OpenMVG
openMVG 實現的功能是將二維圖像轉換為point cloud
Wei Chen Pai changed 2 years agoView mode Like Bookmark
DFaust Data Preparation
Create "DFaust" folder under <workspace_folder>.
cd <workspace_folder>
mkdir DFaust
Download SMPL+H parameters, gets "DFaust.tar.bz2".Move "DFaust.tar.bz2" to <workspace_folder>/DFaust, and unzip to get folder DFaust_67/...
Download DFaust Scan Data, gets "50002.tar.xz".
Here use 50002 as example for the following steps.
Wei Chen Pai changed 2 years agoView mode Like Bookmark
Follow the Steps Below
Download Python(http://python.org/downloads/)make sure to tick the checkbox “Add Python 3.xx to PATH”
Open “Command Prompt 命令提示字元”, and type inpython --version
(Should pops up >> Python 3.xx <-----version you download)python -m pip install --upgrade pip
pip install matplotlib
Search your CUDA version for your graphic card(https://forums.developer.nvidia.com/t/cuda-10-1-and-gtx-1660-ti-not-compatible/79704)e.g. RTX 1660Ti >>> CUDA toolkit 10.x
(but we download newer version CUDA toolkit 11.0)
Check CUDA / Microsoft Visual C++ compatibility(https://quasar.ugent.be/files/doc/cuda-msvc-compatibility.html)e.g. CUDA 11.0 >>> Visual C++ 2017
Download Visual Studio(https://visualstudio.microsoft.com/zh-hant/vs/older-downloads/)
Wei Chen Pai changed 2 years agoView mode Like Bookmark