@srsergio/taptapp-ar 1.1.7 โ 1.1.8
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 +59 -21
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,11 +1,23 @@
|
|
|
1
|
-
|
|
1
|
+
<div align="center">
|
|
2
|
+
|
|
3
|
+
# ๐ฏ @srsergio/taptapp-ar
|
|
2
4
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
+
<img src="./docs/images/hero-banner.png" alt="TapTapp AR - High Performance Augmented Reality" width="100%"/>
|
|
6
|
+
|
|
7
|
+
[](https://www.npmjs.com/package/@srsergio/taptapp-ar)
|
|
8
|
+
[](https://www.npmjs.com/package/@srsergio/taptapp-ar)
|
|
5
9
|
[](./LICENSE)
|
|
6
|
-
[](https://bundlephobia.com/package/@srsergio/taptapp-ar)
|
|
10
|
+
[](https://bundlephobia.com/package/@srsergio/taptapp-ar)
|
|
11
|
+
[](https://www.typescriptlang.org/)
|
|
12
|
+
[](https://www.npmjs.com/package/@srsergio/taptapp-ar)
|
|
13
|
+
|
|
14
|
+
### ๐ Ultra-Fast AR Tracking โข 100% Pure JavaScript โข No TensorFlow Required
|
|
15
|
+
|
|
16
|
+
</div>
|
|
17
|
+
|
|
18
|
+
---
|
|
7
19
|
|
|
8
|
-
|
|
20
|
+
**TapTapp AR** is a high-performance Augmented Reality (AR) toolkit for **Node.js** and **Browser** environments. It provides an ultra-fast offline compiler and a lightweight runtime for image tracking.
|
|
9
21
|
|
|
10
22
|
**100% Pure JavaScript**: This package is now completely independent of **TensorFlow.js** for both compilation and real-time tracking, resulting in massive performance gains and zero-latency initialization.
|
|
11
23
|
|
|
@@ -30,21 +42,22 @@
|
|
|
30
42
|
|
|
31
43
|
## ๐ Key Features
|
|
32
44
|
|
|
33
|
-
|
|
34
|
-
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
45
|
+
<div align="center">
|
|
46
|
+
<img src="./docs/images/features-grid.png" alt="TapTapp AR Key Features" width="600"/>
|
|
47
|
+
</div>
|
|
48
|
+
|
|
49
|
+
<br/>
|
|
50
|
+
|
|
51
|
+
| Feature | Description |
|
|
52
|
+
|---------|-------------|
|
|
53
|
+
| ๐ญ **Non-Rigid Tracking** | Curved & deformable surfaces with Delaunay Meshes |
|
|
54
|
+
| ๐ **Nanite-style Features** | Single-pass multi-octave detection |
|
|
55
|
+
| โก **Zero Dependencies** | No TensorFlow.js - Pure JavaScript |
|
|
56
|
+
| ๐งฌ **Neural Encoding** | Fourier positional encoding (GPT-style) |
|
|
57
|
+
| ๐งต **HD Precision** | 1280x960 default resolution |
|
|
58
|
+
| โก **JIT Compilation** | Pass an image URL, track instantly |
|
|
59
|
+
| ๐ **20% - 1000% Scale** | Extreme scale range from a single keyframe |
|
|
60
|
+
| ๐ฆ **~100KB Output** | Ultra-compact `.taar` files |
|
|
48
61
|
|
|
49
62
|
---
|
|
50
63
|
|
|
@@ -58,6 +71,12 @@ npm install @srsergio/taptapp-ar
|
|
|
58
71
|
|
|
59
72
|
## ๐ Industry-Leading Benchmarks (v7 Moonshot)
|
|
60
73
|
|
|
74
|
+
<div align="center">
|
|
75
|
+
<img src="./docs/images/performance-chart.png" alt="Performance Comparison" width="500"/>
|
|
76
|
+
</div>
|
|
77
|
+
|
|
78
|
+
<br/>
|
|
79
|
+
|
|
61
80
|
| Metric | Official MindAR | TapTapp AR V11 | Improvement |
|
|
62
81
|
| :--- | :--- | :--- | :--- |
|
|
63
82
|
| **Compilation Time** | ~23.50s | **~1.69s (HD)** | ๐ **~14x Faster** |
|
|
@@ -130,6 +149,12 @@ const tracker = await startTracking({
|
|
|
130
149
|
|
|
131
150
|
## ๐ฅ Runtime Usage (AR Tracking)
|
|
132
151
|
|
|
152
|
+
<div align="center">
|
|
153
|
+
<img src="./docs/images/ar-tracking-demo.png" alt="AR Tracking Pipeline" width="700"/>
|
|
154
|
+
</div>
|
|
155
|
+
|
|
156
|
+
<br/>
|
|
157
|
+
|
|
133
158
|
### 1. The Easy Way: React Component โ๏ธ
|
|
134
159
|
|
|
135
160
|
The simplest, zero-config way to add AR to your app:
|
|
@@ -256,6 +281,13 @@ import { TaarThree } from '@srsergio/taptapp-ar';
|
|
|
256
281
|
---
|
|
257
282
|
|
|
258
283
|
## ๐๏ธ Protocol V11 (Nanite Virtualized Format)
|
|
284
|
+
|
|
285
|
+
<div align="center">
|
|
286
|
+
<img src="./docs/images/architecture-flow.png" alt="Architecture Pipeline" width="700"/>
|
|
287
|
+
</div>
|
|
288
|
+
|
|
289
|
+
<br/>
|
|
290
|
+
|
|
259
291
|
TapTapp AR uses a proprietary **Nanite-style Vision Codec** that is significantly more efficient than standard AR formats.
|
|
260
292
|
|
|
261
293
|
- **Virtualized Multi-Octave Features**: Instead of storing redundant images for each scale, V11 stores a single high-res keyframe with features stratified across 6 octaves.
|
|
@@ -270,7 +302,13 @@ TapTapp AR uses a proprietary **Nanite-style Vision Codec** that is significantl
|
|
|
270
302
|
|
|
271
303
|
---
|
|
272
304
|
|
|
273
|
-
##
|
|
305
|
+
## ๐ Visual Search & Embeddings (NEW!) ๐
|
|
306
|
+
|
|
307
|
+
<div align="center">
|
|
308
|
+
<img src="./docs/images/visual-search.png" alt="Visual Search & Embeddings" width="600"/>
|
|
309
|
+
</div>
|
|
310
|
+
|
|
311
|
+
<br/>
|
|
274
312
|
|
|
275
313
|
TapTapp AR now includes a state-of-the-art **Image Embedding** system based on Hyperdimensional Computing (HDC). This allows you to convert any image into a tiny mathematical fingerprint (vector) for ultra-fast visual search, deduplication, and clustering.
|
|
276
314
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@srsergio/taptapp-ar",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.8",
|
|
4
4
|
"description": "Ultra-fast Augmented Reality (AR) SDK for Node.js and Browser. Image tracking with 100% pure JavaScript, zero-dependencies, and high-performance compilation.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"augmented reality",
|