title |
---|
Quick Start with MaixCDK |
MaixCDK provides C++ APIs for commonly used AI functions related to image processing, vision, audio, and peripherals, enabling quick prototyping and stable product development.
MaixCDK is not only a C++ SDK but also auto-generates Python API bindings, so development can be done in Python through MaixPy.
Basic Linux knowledge and a fundamental understanding of cross-compilation are required to use MaixCDK.
To use MaixCDK, it is assumed that you are already familiar with the following knowledge. If not, please learn them first or consider using MaixPy:
- Proficient in using Linux for development, familiar with the terminal and common commands.
- Proficient in either C or C++ programming language. C++ proficiency is not required, but you must understand the basic syntax and object-oriented concepts.
- Able to actively read and analyze source code to troubleshoot issues.
- Chinese developers should be familiar with using network proxies.
- Understand cross-compilation.
- Read MaixCDK source code.
- Since MaixCDK shares the same functionality/API as MaixPy, detailed tutorials are not provided separately. Refer to the MaixPy documentation; the principles and code are nearly identical, requiring only minor modifications.
- It’s recommended to get hands-on experience with MaixPy before using MaixCDK for a smoother learning curve.
- Carefully review the official documentation, including MaixCDK, MaixPy, and hardware documentation.
- If issues arise, start by checking MaixCDK FAQ, MaixPy FAQ, MaixCAM Hardware FAQ, and the source code issues.
- Check out the MaixHub Share Plaza for community insights.
- Read error logs carefully and patiently, following logs from top to bottom, as errors might appear in the middle—don’t skip ahead hastily!
Two options are available:
Only supported on Linux, with Ubuntu >= 20.04 recommended. Note that the MaixCAM toolchain only supports x86_64 CPUs and is not compatible with ARM-based computers, such as ARM MacOS.
sudo apt update
sudo apt install git cmake build-essential python3 python3-pip autoconf automake libtool
cmake --version # cmake version should be >= 3.13
To compile for a Linux PC (instead of cross-compiling for a dev board), if you’re using
Ubuntu
, ensure the system version is>=20.04
, or some dependencies may be too outdated to compile. Install dependencies following the commands in the Dockerfile. If compilation errors occur, consider using Docker to compile.
The Docker
environment includes ubuntu20.04
and dependencies, making it ready for compilation. For users familiar with Docker
or those facing issues with local setup, refer to the Docker Usage Guide.
git clone https://github.com/Sipeed/MaixCDK
- Stable Release versions can be downloaded from the release page.
- Alternatively, check MaixPy release assets for
maixcdk_version_xxxxx.txt
, wherexxxxx
indicates the MaixPy version in use. Usegit checkout xxxx
to switch to the corresponding version.
For users in China experiencing slow clone speeds, use
git clone https://gitee.com/Sipeed/MaixCDK
.
cd MaixCDK
pip install -U pip # Update pip to the latest version
pip install -U -r requirements.txt # Install dependencies
Users in China can add the parameter
-i https://pypi.tuna.tsinghua.edu.cn/simple
to use the Tsinghua mirror. Dependencies are already installed in theDocker
environment, but you can update them to the latest version within the Docker container.
Run maixtool
and maixcdk
commands in the terminal to view help information.
If the commands are not found, try restarting the terminal or use
find / -name "maixtool"
to locatemaixtool
, then set it in the system path usingexport PATH=directory_containing_maixtool:$PATH
.
cd examples/hello_world
maixcdk menuconfig
Follow the prompts to select the device platform. A menu appears to configure parameters. For first-time use, the default parameters are fine (or skip menuconfig
and go straight to build), then press ESC
, and Y
to save and exit.
maixcdk build
The first time you run this step, the device will download the compilation toolchain. If the download is slow, you can manually download it to the specified directory as prompted, and then proceed with the compilation.
! The resources are mostly downloaded from GitHub, and download speeds in China may be slow or even fail (the list of files to download is in
dl/pkgs_info.json
). There are several common solutions:
- Set a proxy in the terminal (recommended), for example:
export http_proxy=http://127.0.0.1:8123 https_proxy=http://127.0.0.1:8123
. Here,http://127.0.0.1:8123
is the address of your HTTP proxy.- Manually download to the
dl/pkgs
folder: During the download, the download URL and local path will be printed. You can manually download the files and place them in the corresponding directory. When you run the build command again, it will use the locally prepared files (Note: the file’s sha256 checksum must match, i.e., it must be the same file).- Users in China can go to the QQ Group on the homepage, find the
MaixCDK
folder, and download the files to theMaixCDK/dl
directory.
! For common errors and solutions, refer to the FAQ.
After the compilation, you will find the binary program files in the build
directory, and the dependent .so
files in build/dl_lib
.
After modifying the code, you can run maixcdk build
again to compile.
If you haven’t added or removed source files, you can run maixcdk build2
or maixcdk build --no-gen
for faster compilation (it will only compile the modified files).
This is because the
build
command starts the entire build process from scratch, scanning files and recompiling. In contrast, thebuild2
command will not scan for file additions or deletions and will only compile the edited files.
Note: Thebuild2
command will not detect file additions or deletions, so if you add or remove files, you must run thebuild
command again.
Run maixcdk distclean
to clear all temporary build files and start fresh (this increases build time and is typically used to troubleshoot issues).
Copy the executable and dl_lib
folder to the device for execution.
Use scp
to copy files, for example:
scp -r dist/ [email protected]:/root/
The default password is root
.
Run the program via SSH. Ensure no other programs are running (including the startup application launcher). Steps:
- Connect MaixVision to the device to close the Launcher, or use SSH to
kill
thelauncher_daemon
. - SSH into the device, e.g.,
ssh [email protected]
, passwordroot
. - Navigate to the executable directory and run it, e.g.,
cd /root/dist/camera_display_release && ./camera_display
.
In the project directory, use maixcdk -p maixcam release
to create a program package for maixcam
in the dist
folder. This package can be uploaded to the MaixHub App Store.
Usage:
- Method 1: Unzip and copy to the device, run
chmod +x program_name && ./program_name
. - Method 2: Use the App Store application on the device to install from MaixHub.
- Method 3: For developers, if the device is connected to the same LAN as the PC, use
maixcdk deploy
to generate a QR code, which the device can scan to install. - Method 4: Copy the package to the device and install it by running
/maixapp/apps/app_store/app_store install xxx.zip
.
Application releases should follow the App Development Guidelines.
To create a project:
maixcdk new
To get started with MaixCDK, please begin by reading the MaixCDK Development Guidelines.
Since MaixPy’s core is largely MaixCDK, adding APIs to MaixPy is straightforward. Just annotate the function with @maixpy maix.xxx.xxxx
.
For example, to implement the following API:
from maix import example
result = example.hello("Bob")
print(result)
Simply add a declaration in maix_api_example.hpp:
namespace maix::example
{
/**
* @brief say hello to someone
* @param[in] name name of someone, string type
* @return string type, content is hello + name
* @maixpy maix.example.hello
*/
std::string hello(std::string name);
}
Then compile the MaixPy
project to get an installation package, which can be installed on the device to use the new API—simple, right?
For more detailed documentation, refer to Add API.