# MaixPy3 **Repository Path**: prtemly/MaixPy3 ## Basic Information - **Project Name**: MaixPy3 - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: develop - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-04-18 - **Last Updated**: 2021-04-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # MaixPy3 ## example ```python from maix import display, camera while True: im = camera.capture() if im: display.show(im) ``` ```python from maix import display, camera from PIL import ImageDraw while True: tmp = (camera.capture()) draw = ImageDraw.Draw(tmp) draw.text((10, 10), str(time.asctime()), (255, 255, 255)) display.show(tmp) ``` ``` import numpy as np array = np.array([[1,2,3],[4,5,6]]) print(array) print('number of dim:', array.ndim) print('shape:',array.shape) print('size:',array.size) ``` ## help - [MaixPy3 CPython 开发文档](./docs/develop_zh.md) - [MaixPy3 CPython develop_en.md](./docs/develop_en.md) ## pass - glibc >= 27 on Ubuntu20.04 & manjaro20.03 ## usage - python3 setup.py build - python3.8 setup.py build v831