Update AidStream Development Documents.md
Browse files
AidStream Development Documents.md
CHANGED
@@ -1,2 +1,32 @@
|
|
1 |
<h1>AidStream Development Documents</h1>
|
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
<h1>AidStream Development Documents</h1>
|
2 |
|
3 |
+
## CONTENTS
|
4 |
+
- [Introduction](#introduction)
|
5 |
+
- [Installation](#installation)
|
6 |
+
- [API Documents](#api-documents)
|
7 |
+
|
8 |
+
## Introduction
|
9 |
+
|
10 |
+
AidStream is a video framework for building streaming media applications.
|
11 |
+
|
12 |
+
It aims to simplify the construction of programs that need to insert algorithms in the development of video + AI applications. AidStream based on pipelines, developers need to configure the input stream and output stream information for each pipeline. In a complete pipeline, data flows out from the input stream. Developers can obtain the corresponding RGB data through the AidStream API and input it into the output stream after processing.
|
13 |
+
|
14 |
+
## Installation
|
15 |
+
|
16 |
+
### Installation for AidLux
|
17 |
+
|
18 |
+
1. Install from APP store
|
19 |
+
|
20 |
+

|
21 |
+
|
22 |
+
2. Install in terminal
|
23 |
+
|
24 |
+
```bash
|
25 |
+
# password is aidlux
|
26 |
+
sudo aid-pkg install aidstream-sdk
|
27 |
+
```
|
28 |
+
|
29 |
+
## API Documents
|
30 |
+
|
31 |
+
- [AidStream SDK for C++](https://v2.docs.aidlux.com/sdk-api/aid-stream/aidstream-c++)
|
32 |
+
- [AidStream SDK for Python](https://v2.docs.aidlux.com/sdk-api/aid-stream/aidstream_for_python)
|