@web-ar-studio/webar-engine-sdk 1.0.16 โ 1.0.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +54 -10
- package/dist/index.d.ts +340 -290
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +54 -45
- package/LICENSE +0 -28
package/README.md
CHANGED
|
@@ -1,10 +1,54 @@
|
|
|
1
|
-
# webar-engine-sdk
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
1
|
+
# webar-engine-sdk
|
|
2
|
+
Official WebAR.Studio SDK for browser-based AR tracking (image, QR, face, WebXR, and AR 360). ๐
|
|
3
|
+
|
|
4
|
+
๐ Samples repo (ready-to-run demos):
|
|
5
|
+
https://github.com/WebAR-Studio/webar-sdk-samples
|
|
6
|
+
|
|
7
|
+
## โจ Why try it
|
|
8
|
+
- โ
Real CV tracking, not a mock
|
|
9
|
+
- โก Fast setup without boilerplate
|
|
10
|
+
- ๐ฏ Proof-of-concepts in minutes
|
|
11
|
+
- ๐ Browser-first AR (no app installs)
|
|
12
|
+
|
|
13
|
+
## ๐งญ Who this is for
|
|
14
|
+
- ๐งโ๐ป Web developers building immersive sites
|
|
15
|
+
- ๐จ Marketing and creative teams running AR campaigns
|
|
16
|
+
- ๐๏ธ E-commerce teams prototyping try-on or product previews
|
|
17
|
+
- ๐ Educators and students learning AR
|
|
18
|
+
- ๐ Startups validating ideas quickly
|
|
19
|
+
|
|
20
|
+
## ๐งฉ Tracking modes at a glance
|
|
21
|
+
| Mode | Marker needed | Best for | Browser support |
|
|
22
|
+
| --- | --- | --- | --- |
|
|
23
|
+
| `ar-360-tracking` | โ | 360 tours, panoramas | Modern mobile browsers |
|
|
24
|
+
| `face-tracking` | โ | filters, try-ons | Front-camera supported |
|
|
25
|
+
| `image-tracking` | โ
| posters, packaging | WebGL/WebRTC capable |
|
|
26
|
+
| `qrcode-tracking` | โ
| QR-triggered AR | Any camera-enabled |
|
|
27
|
+
| `webxr-tracking` | โ | plane placement | WebXR + HTTPS |
|
|
28
|
+
|
|
29
|
+
## ๐ SDK vs samples (quick comparison)
|
|
30
|
+
| You need | Use |
|
|
31
|
+
| --- | --- |
|
|
32
|
+
| Core CV tracking engine | `webar-engine-sdk` |
|
|
33
|
+
| Ready-to-run examples | `webar-sdk-samples` |
|
|
34
|
+
|
|
35
|
+
## ๐ Quick start
|
|
36
|
+
Install the package and follow the runnable examples in the samples repo:
|
|
37
|
+
https://github.com/WebAR-Studio/webar-sdk-samples
|
|
38
|
+
|
|
39
|
+
## ๐ธ Pricing and limits
|
|
40
|
+
- ๐ Free for educational and non-commercial use. We provide a key on request via support.
|
|
41
|
+
- ๐ผ Commercial use: $8/month with no limits on views/scans and continuous library improvements with new algorithms.
|
|
42
|
+
- ๐งช Test key to get started (limit: 1000 requests per month per domain):
|
|
43
|
+
```
|
|
44
|
+
dca17806a3135ec541fff4a1109be543f1994bcc96effaf790d7add0fc0dc6ba
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
## ๐ฎ Support and API key requests
|
|
48
|
+
For any questions about the library or API keys, contact us here:
|
|
49
|
+
- https://t.me/was_team
|
|
50
|
+
- support@web-ar.studio
|
|
51
|
+
- https://discord.gg/4q5dbAb4GZ
|
|
52
|
+
|
|
53
|
+
## โ
Typed API
|
|
54
|
+
The library is fully typed, so you can explore available types and arguments after installation.
|