Edge AI Vision & Fast APP Deploy
MaixCAM-Pro
Nano IP KVM, provides BIOS level remote control
NanoKVM
Development board that keep pace with the times
Lichee
New generation modular FPGA development board
Tang FPGA
Maix AI
Compact body, powerful AI performance, and a user-friendly software ecosystem
Simple API design, AI image recognition in just 10 lines of code
1from maix import camera, display, image, nn
2
3model = nn.Classifier(model="/root/models/mobilenetv2.mud")
4cam = camera.Camera(model.input_width(), model.input_height(), model.input_format())
5disp = display.Display()
6
7while 1:
8 img = cam.read()
9 res = model.classify(img)
10 max_idx, max_prob = res[0]
11 msg = f"{max_prob:5.2f}: {model.labels[max_idx]}"
12 img.draw_string(10, 10, msg, image.COLOR_RED)
13 disp.show(img)
14Python / C++ unified API, efficient operation, and easy coding
1int main()
2{
3 nn::Classifier model("/root/models/mobilenetv2.mud");
4 camera::Camera cam(model.input_width(), model.input_height(), model.input_format());
5 display::Display disp;
6
7 char msg[64];
8 while(!app::need_exit())
9 {
10 auto img = cam.read();
11 auto result = model.classify(*img);
12 int max_idx = result->at(0).first;
13 float max_score = result->at(0).second;
14 snprintf(msg, sizeof(msg), "%5.2f: %s", max_score, model.labels[max_idx].c_str());
15 img->draw_string(10, 10, msg, image::COLOR_RED);
16 disp.show(*img);
17 delete result; delete img;
18 }
19 return 0;
20}
21A developer tool specifically designed for the Maix ecosystem, with a more modern interface and richer features
No AI background or expensive training equipment required, train and deploy models to edge devices with one click
NanoKVM
Innovative mini IP-KVM, providing stable and reliable hardware-level remote access and BIOS-level control
Tang FPGA
Small FPGA development board
Lichee SBC
Linux development boards and RISC-V development boards that keep pace with the times
MaixHub
AI model training platform, no coding skills required, one-click training
Tools and Accessories
Practical tools, modules, and accessories