@srsergio/taptapp-ar 1.0.83 โ 1.0.85
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 +4 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -31,7 +31,9 @@
|
|
|
31
31
|
|
|
32
32
|
- ๐ผ๏ธ **Hyper-Fast Compiler**: Pure JavaScript compiler that generates `.taar` files in **< 3s**.
|
|
33
33
|
- โก **No TensorFlow Dependency**: No TFJS at all. Works natively in any JS environment (Node, Browser, Workers).
|
|
34
|
+
- ๐งฌ **Fourier Positional Encoding**: Uses high-frequency sine/cosine mappings (GPT-style) for neural-like spatial consistency.
|
|
34
35
|
- ๐ **Protocol V7 (Moonshot)**:
|
|
36
|
+
- **16-bit Fourier Signatures**: Spatial ADN embedded in every feature for harmonic matching.
|
|
35
37
|
- **4-bit Packed Tracking Data**: Grayscale images are compressed to 4-bit depth, slashing file size.
|
|
36
38
|
- **64-bit LSH Descriptors**: Optimized Locality Sensitive Hashing for descriptors.
|
|
37
39
|
- ๐งต **High-Precision Tracking**: Now using **Float32** coordinate precision for rock-solid tracking stability.
|
|
@@ -256,10 +258,11 @@ ar.stop();
|
|
|
256
258
|
## ๐๏ธ Protocol V7 (Moonshot Packed Format)
|
|
257
259
|
TapTapp AR uses a proprietary **Moonshot Vision Codec** that is significantly more efficient than standard AR formats.
|
|
258
260
|
|
|
261
|
+
- **Fourier Positional Encoding**: Maps 2D coordinates into a 16-dimensional frequency space. This creates a "Neural Consistency Check" that filters out noise and motion blur by checking for harmonic spatial agreement.
|
|
259
262
|
- **4-bit Packed Tracking Data**: Image data used for optical flow is compressed to 4-bit depth.
|
|
260
263
|
- **64-bit LSH Fingerprinting**: Feature descriptors are compressed to just 8 bytes using LSH.
|
|
261
264
|
- **Binary Matching Engine**: Uses hardware-accelerated population count (`popcount`) and `XOR` for near-instant point matching.
|
|
262
|
-
- **Zero-Copy Restoration**: Binary buffers are mapped directly to TypedArrays (Uint32 for descriptors, Float32 for tracking coordinates).
|
|
265
|
+
- **Zero-Copy Restoration**: Binary buffers are mapped directly to TypedArrays (Uint32 for descriptors, Float32 for tracking coordinates, Int8 for Fourier signatures).
|
|
263
266
|
|
|
264
267
|
---
|
|
265
268
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@srsergio/taptapp-ar",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.85",
|
|
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",
|