termux-vision 1.2.0 → 1.3.0

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.
Files changed (3) hide show
  1. package/README.md +290 -71
  2. package/README.pypi.md +120 -40
  3. package/package.json +58 -58
package/README.md CHANGED
@@ -1,71 +1,290 @@
1
- # Termux-Vision
2
-
3
- [![PyPI](https://img.shields.io/pypi/v/termux-vision.svg?style=flat-square&color=0369a1)](https://pypi.org/project/termux-vision/)
4
- [![Python](https://img.shields.io/pypi/pyversions/termux-vision.svg?style=flat-square)](https://pypi.org/project/termux-vision/)
5
- [![npm](https://img.shields.io/npm/v/termux-vision.svg?style=flat-square&color=b91c1c)](https://www.npmjs.com/package/termux-vision)
6
- [![npm downloads](https://img.shields.io/npm/dm/termux-vision.svg?style=flat-square&color=b91c1c)](https://www.npmjs.com/package/termux-vision)
7
- [![License](https://img.shields.io/badge/License-Apache_2.0-004499.svg?style=flat-square)](https://github.com/uno-km/termux-vision)
8
-
9
- > **디바이스 리소스를 활용한 안드로이드 Termux 제로 디펜던시 온디바이스 컴퓨터 비전 & VLM 멀티모달 추론 엔진**
10
- > *Zero-Dependency On-Device Computer Vision & Multimodal VLM Inference Engine Utilizing Device Resources for Android Termux*
11
-
12
- ---
13
-
14
- ## 📌 Architecture & Overview
15
-
16
- 순수 ARM64 NEON 커널과 4단계 화질 프리셋(fast, optimal, high, original), 디바이스 리소스 최적화 연산을 결합하여 메모리 격리 환경에서 엣지 검출과 VLM 멀티모달 시각 추론을 실현합니다.
17
-
18
- Eliminates heavy C++ dependencies by integrating SIMD NEON spatial image transforms with on-device VLM (Qwen2-VL, SmolVLM) multi-tier resolution presets (fast, optimal, high, original) utilizing device resources under strict memory isolation.
19
-
20
- ---
21
-
22
- ## 🚀 Installation & Quickstart
23
-
24
- ### Python (PyPI)
25
- ```bash
26
- pip install termux-vision
27
- ```
28
- ```python
29
- import termux_vision as tv
30
-
31
- # 1. Zero-Dependency Spatial Filtering (0.01s ultra-fast)
32
- img = tv.io.load_image("photo.jpg")
33
- edges = tv.cv.canny(tv.transforms.to_grayscale(img), 40, 120)
34
-
35
- # 2. On-Device VLM Multimodal Inference with 4-Tier Quality Presets
36
- with tv.vlm.load("qwen2-vl-2b-q4", quality="optimal") as engine:
37
- res = engine.describe("photo.jpg", prompt="Describe this scene in detail.", quality="optimal")
38
- print(f"Generated ({res.metrics.tokens_per_second:.1f} t/s): {res.text}")
39
-
40
- ```
41
-
42
- ### Node.js / TypeScript (npm)
43
- ```bash
44
- npm install termux-vision
45
- ```
46
- ```typescript
47
- import tv from 'termux-vision';
48
-
49
- // 1. Diagnostics & Hardware Probe
50
- const doc = tv.doctor(true);
51
- console.log(`Vulkan GPU: ${doc.vulkan.status} | RAM: ${doc.hardware.availableRamMb} MB`);
52
-
53
- // 2. Multimodal VLM Inference with Quality Preset
54
- const engine = await tv.load({ modelId: 'qwen2-vl-2b-q4', contextLimit: 4096 });
55
- const result = await engine.describe('photo.jpg', { quality: 'optimal', maxTokens: 300 });
56
- console.log(`[${result.metrics.backend.toUpperCase()}] ${result.text}`);
57
- engine.close();
58
-
59
- ```
60
-
61
- ---
62
-
63
- ## 📖 Official Documentation & Benchmarks
64
- - [Official Architecture & API Reference](https://uno-km.vercel.app/lib/vision/)
65
- - [Ecosystem Metrics & Registry Stats](https://uno-km.vercel.app/foundation/metrics)
66
- - [AMEVA Open-Source Foundation Portal](https://uno-km.vercel.app/foundation/index.html)
67
-
68
- ---
69
-
70
- ## 📄 License
71
- Licensed under the Apache-2.0 License. Copyright (c) 2026 Eunho Kim ([@uno-km](https://github.com/uno-km)).
1
+ # Termux-Vision: On-Device Computer Vision & Multimodal VLM Framework
2
+
3
+ [![PyPI](https://img.shields.io/pypi/v/termux-vision.svg?style=flat-square&color=0369a1)](https://pypi.org/project/termux-vision/)
4
+ [![Python](https://img.shields.io/pypi/pyversions/termux-vision.svg?style=flat-square)](https://pypi.org/project/termux-vision/)
5
+ [![npm](https://img.shields.io/npm/v/termux-vision.svg?style=flat-square&color=b91c1c)](https://www.npmjs.com/package/termux-vision)
6
+ [![npm downloads](https://img.shields.io/npm/dm/termux-vision.svg?style=flat-square&color=b91c1c)](https://www.npmjs.com/package/termux-vision)
7
+ [![License](https://img.shields.io/badge/License-Apache_2.0-004499.svg?style=flat-square)](https://github.com/uno-km/termux-vision)
8
+ [![Hardware Acceleration](https://img.shields.io/badge/Vulkan-1.1%2B%20Compute-orange?style=flat-square&logo=vulkan)](https://www.vulkan.org/)
9
+
10
+ > **Native On-Device Computer Vision & Multimodal Vision-Language Model (VLM) Runtime for Android Termux via Direct Bionic libc & Vulkan Compute Acceleration.**
11
+ > *Zero PRoot. Zero Virtualization. 100% Native ARMv8.2-A NEON SIMD & Hardware GPU Offloading.*
12
+
13
+ ---
14
+
15
+ ## 📑 Table of Contents
16
+
17
+ 1. [Overview & Key Capabilities](#1-overview--key-capabilities)
18
+ 2. [Installation Guide](#2-installation-guide)
19
+ 3. [Enabling Hardware GPU Acceleration (with ameva-runtime)](#3-enabling-hardware-gpu-acceleration-with-ameva-runtime)
20
+ 4. [Standardized CLI & Parameter Matrix](#4-standardized-cli--parameter-matrix)
21
+ 5. [Dual Engine Code Examples (Python & Node.js)](#5-dual-engine-code-examples-python--nodejs)
22
+ 6. [Production Diagnostics (`termux-vision doctor`)](#6-production-diagnostics-termux-vision-doctor)
23
+ 7. [Real-World Benchmarks & Hardware Scorecard](#7-real-world-benchmarks--hardware-scorecard)
24
+ 8. [Memory & VRAM Architecture (Zero CPU-Mapped VRAM)](#8-memory--vram-architecture)
25
+ 9. [Hardware Requirements & Operational Limits](#9-hardware-requirements--operational-limits)
26
+ 10. [License & Permissible Use](#10-license--permissible-use)
27
+
28
+ ---
29
+
30
+ ## 1. Overview & Key Capabilities
31
+
32
+ `termux-vision` is an enterprise-grade, on-device multimodal vision inference and spatial computing framework engineered specifically for mobile Android devices. Operating directly against Android's native Bionic libc ABI and host Vulkan compute drivers, `termux-vision` eliminates heavyweight desktop dependencies (OpenCV, TorchVision) and enables high-throughput visual question answering, OCR image captioning, and classical feature extraction directly on edge hardware.
33
+
34
+ * **Native Bionic libc ABI Direct Binding**: Runs directly inside Termux user space with zero virtualization indirection, achieving bare-metal compute efficiency.
35
+ * **Dual Compute Acceleration**: Integrates ARMv8.2-A DotProd/FP16 SIMD vector instructions with mobile Vulkan compute shader pipelines.
36
+ * **Full-Layer GPU Offloading (-ngl 99)**: Dispatches all 99 transformer layers and cross-attention vision projections directly to device GPU VRAM, achieving pure GPU offloading (**0.00 MiB CPU mapped VRAM**).
37
+ * **Zero-Dependency Classical Vision Suite**: Native 5-stage Canny edge detector (8-directional BFS hysteresis), Sobel 3x3 filtering, 2D Integral Images, and Haar-like face candidate localization in pure C/Python/JS.
38
+ * **Autonomous OOM & LMK Protection**: Enforces atomic model validation (>10MB threshold guard) and quant-pair validation (SmolVLM Q4_K_M + Q8_0 mmproj) to strictly respect Android Low Memory Killer (LMK) bounds.
39
+
40
+ ---
41
+
42
+ ## 2. Installation Guide
43
+
44
+ `termux-vision` is distributed across both Python (PyPI) and Node.js (npm) ecosystems, with official precompiled ARM64 wheel assets published on GitHub Releases.
45
+
46
+ ### 2.1 Termux System Prerequisites
47
+ Launch Termux and install required native compilers, Vulkan drivers, and image libraries:
48
+ ```bash
49
+ pkg update -y
50
+ pkg install -y python nodejs clang make cmake git termux-api wget vulkan-loader vulkan-headers vulkan-tools opencl-headers python-numpy libjpeg-turbo
51
+ ```
52
+
53
+ ### 2.2 Python Package Installation
54
+
55
+ * **Option A: Install from PyPI (Recommended)**:
56
+ ```bash
57
+ pip install --upgrade pip setuptools wheel
58
+ pip install termux-vision
59
+ ```
60
+
61
+ * **Option B: Direct GitHub Releases Wheel Asset (SSOT Verified)**:
62
+ ```bash
63
+ # Download and install the prebuilt v1.3.0 release wheel
64
+ pip install https://github.com/uno-km/termux-vision/releases/download/v1.3.0/termux_vision-1.3.0-py3-none-any.whl
65
+ ```
66
+
67
+ ### 2.3 Node.js / TypeScript CLI Installation
68
+ ```bash
69
+ # Global CLI installation
70
+ npm install -g termux-vision
71
+
72
+ # Local project dependency
73
+ npm install termux-vision
74
+ ```
75
+
76
+ ### 2.4 One-Line Bootstrap Installer
77
+ Run the universal bootstrap installer to automatically configure repositories, compile native C/C++ acceleration shims, and verify hardware:
78
+ ```bash
79
+ curl -sL https://raw.githubusercontent.com/uno-km/termux-vision/main/install.sh | bash
80
+ ```
81
+
82
+ ---
83
+
84
+ ## 3. Enabling Hardware GPU Acceleration (with ameva-runtime)
85
+
86
+ To unlock mobile GPU acceleration via Vulkan compute shaders and achieve significant speedups over pure CPU execution, install **`termux-vision`** alongside **`ameva-runtime`**:
87
+
88
+ ### 🌟 One-Line Installation
89
+ ```bash
90
+ # Python Environment
91
+ pip install termux-vision ameva-runtime termux-llamacpp
92
+
93
+ # Node.js Environment
94
+ npm install -g termux-vision @ameva/runtime
95
+ ```
96
+
97
+ ### 🔮 Mobile GPU Silicon Architecture Status
98
+
99
+ | GPU Microarchitecture | Silicon / SoC Reference | Status | Optimization Mechanics |
100
+ | :--- | :--- | :--- | :--- |
101
+ | **ARM Mali GPU** | Exynos 2100 (Mali-G78 MP14)<br>Exynos 1380 (Mali-G68 MP5) | 🟢 **Production Verified** | Bionic Vulkan ICD binding, Tile-Based Deferred Rendering (TBDR) memory isolation, MMVQ matrix-vector kernel dispatch (`--tune-mali`). |
102
+ | **Qualcomm Adreno GPU** | Snapdragon 8 Gen 1/2/3/Elite<br>(Adreno 730 / 740 / 750 / 830) | 🟡 **In Development (개발 진행 중)** | Direct Bionic ICD & Freedreno/Turnip dispatch layers under active engineering. |
103
+ | **Samsung Xclipse GPU** | Exynos 2200 / 2400<br>(Xclipse 920 / 940 - AMD RDNA) | 🟡 **In Development (개발 진행 중)** | SPIR-V instruction scheduling and RDNA mobile shader alignment under active engineering. |
104
+
105
+ Verify GPU driver detection and hardware readiness:
106
+ ```bash
107
+ termux-vision doctor
108
+ ```
109
+
110
+ ---
111
+
112
+ ## 4. Standardized CLI & Parameter Matrix
113
+
114
+ `termux-vision` strictly complies with the official `uno-km` family CLI standard:
115
+
116
+ | Parameter | Alias | Default | Description |
117
+ | :--- | :--- | :--- | :--- |
118
+ | `-d, --device` | `-b, --backend` | `auto` | Compute acceleration backend: `auto`, `gpu`, `vulkan`, `cpu`, `vulkan-force` |
119
+ | `-i, --image` | `--image-path` | *Required* | Path to input image (`.png`, `.jpg`, `.webp`) |
120
+ | `-p, --prompt` | *N/A* | `"Describe this image"` | Multimodal text instruction query |
121
+ | `-m, --model` | *N/A* | `smolvlm-500m` | GGUF language model path or catalog identifier |
122
+ | `--mmproj` | *N/A* | *Auto-paired* | Vision projector GGUF model path (`mmproj-*.gguf`) |
123
+ | `-n, --max-tokens` | `--n-predict` | `150` | Maximum number of generated tokens |
124
+ | `-c, --ctx-size` | `--ctx` | `2048` | Context window size |
125
+ | `-t, --threads` | *N/A* | `auto` | Number of CPU execution threads |
126
+ | `-W, --width` | *N/A* | *None* | Explicit image resize width in pixels |
127
+ | `-H, --height` | *N/A* | *None* | Explicit image resize height in pixels |
128
+ | `--image-size` | *N/A* | *None* | Image resolution preset (e.g. `224x224`, `384x384`) |
129
+ | `-q, --quality` | *N/A* | `optimal` | 4-tier resolution preset: `fast` (384px), `optimal` (768px), `high` (1280px), `original` (1:1) |
130
+ | `--tune-mali` | *N/A* | `False` | Enable ARM Mali GPU MMVQ tuning (`GGML_VK_FORCE_MMVQ=1`) |
131
+ | `--json` | *N/A* | `False` | Emit machine-readable JSON benchmark telemetry |
132
+ | `-v, --verbose` | *N/A* | `False` | Print detailed layer offloading and hardware logs |
133
+
134
+ ### Practical CLI Usage Examples
135
+
136
+ ```bash
137
+ # 1. Automated GPU Acceleration (Default auto-routing)
138
+ termux-vision vlm photo.jpg -p "What objects are visible in this scene?"
139
+
140
+ # 2. Pure GPU Mode on ARM Mali Silicon (Galaxy S21 / A35)
141
+ termux-vision vlm photo.jpg -d gpu --tune-mali -p "Describe the text and layout."
142
+
143
+ # 3. Pure CPU Fallback Mode (Strict 0 GPU VRAM allocation)
144
+ termux-vision vlm photo.jpg -d cpu -t 6 -p "Analyze this diagram."
145
+
146
+ # 4. Ultra-Low-Latency Mode (224x224 scaled ViT input)
147
+ python tools/vlm_runner.py -i photo.jpg -d gpu --image-size 224x224 -n 60
148
+
149
+ # 5. Zero-Dependency Classical Canny Edge Detection
150
+ termux-vision canny input.jpg -o edges.png --low 40 --high 120
151
+ ```
152
+
153
+ ---
154
+
155
+ ## 5. Dual Engine Code Examples (Python & Node.js)
156
+
157
+ ### 5.1 Python SDK
158
+ ```python
159
+ import termux_vision as tv
160
+
161
+ # 1. Zero-Dependency Classical CV Filtering (sub-10ms execution)
162
+ image = tv.io.load_image("document.jpg")
163
+ grayscale = tv.transforms.to_grayscale(image)
164
+ edges = tv.cv.canny(grayscale, low_threshold=40, high_threshold=120)
165
+ tv.io.save_image(edges, "edges.png")
166
+
167
+ # 2. On-Device Multimodal VLM Inference (Vulkan GPU Accelerated)
168
+ with tv.vlm.load("smolvlm-500m", device="gpu") as engine:
169
+ result = engine.describe(
170
+ "document.jpg",
171
+ prompt="Extract all visible text and summarize key bullet points.",
172
+ quality="optimal",
173
+ max_tokens=200
174
+ )
175
+ print(f"Backend: {result.metrics.backend} | TPS: {result.metrics.tokens_per_second:.2f} tok/s")
176
+ print(f"Response:
177
+ {result.text}")
178
+ ```
179
+
180
+ ### 5.2 Node.js / TypeScript SDK
181
+ ```typescript
182
+ import tv from 'termux-vision';
183
+
184
+ // 1. Hardware Diagnostic Probe
185
+ const doctor = tv.doctor(true);
186
+ console.log(`Vulkan GPU: ${doctor.vulkan.status} | Available RAM: ${doctor.hardware.availableRamMb} MB`);
187
+
188
+ // 2. Multimodal VLM Inference
189
+ const engine = await tv.load({ modelId: 'smolvlm-500m', device: 'gpu' });
190
+ const response = await engine.describe('photo.jpg', {
191
+ prompt: 'Identify the geometric shapes and colors.',
192
+ quality: 'optimal',
193
+ maxTokens: 100
194
+ });
195
+
196
+ console.log(`[${response.metrics.backend.toUpperCase()}] ${response.text}`);
197
+ engine.close();
198
+ ```
199
+
200
+ ---
201
+
202
+ ## 6. Production Diagnostics (`termux-vision doctor`)
203
+
204
+ Termux-Vision features an integrated hardware diagnostics probe to inspect the host environment before launching inference:
205
+
206
+ ```bash
207
+ termux-vision doctor
208
+ ```
209
+
210
+ **Diagnostic Output Profile:**
211
+ ```
212
+ === termux-vision Diagnostic Doctor ===
213
+ Platform : Linux (aarch64) | Android: True
214
+ RAM : Total 7812MB | Available 3450MB
215
+ CPU Cores: 8 (big.LITTLE Affinity Governor active)
216
+ Vulkan : Loader=True | Driver=/system/lib64/libvulkan.so | Status=READY
217
+ GPU Soc : ARM Mali-G78 MP14 (Exynos 2100)
218
+ Models : 2 installed in ~/.cache/termux-vision/models
219
+ Preset : optimal (768px recommended)
220
+ ```
221
+
222
+ ---
223
+
224
+ ## 7. Real-World Benchmarks & Hardware Scorecard
225
+
226
+ All metrics represent deterministic ground-truth measurements obtained on physical test devices running Android Termux unrooted, using SmolVLM-500M Instruct (Q4_K_M text model + Q8_0 mmproj vision projector).
227
+
228
+ | Target Device | SoC / GPU Architecture | Mode | Input Resolution | Prompt Eval | Token Generation | Total Latency | CPU Mapped VRAM | Vulkan GPU VRAM | Generation Speedup |
229
+ | :--- | :--- | :--- | :--- | :--- | :--- | :--- | :--- | :--- | :--- |
230
+ | **Samsung Galaxy S21 5G** | Exynos 2100<br>ARM Mali-G78 MP14 | **GPU (Vulkan)** | 224x224 | **14.28 tok/s** | **12.65 tok/s** | **21.26 s** | **0.00 MiB** | **1059.02 MiB** | **+58.9%** |
231
+ | Samsung Galaxy S21 5G | Exynos 2100<br>8-Core ARMv8.2-A CPU | CPU (NEON) | 224x224 | 8.84 tok/s | 7.96 tok/s | 34.22 s | 1059.02 MiB | 0.00 MiB | Baseline |
232
+ | **Samsung Galaxy A35 5G** | Exynos 1380<br>ARM Mali-G68 MP5 | **GPU (Vulkan)** | 224x224 | **5.67 tok/s** | **5.47 tok/s** | **52.57 s** | **0.00 MiB** | **1059.02 MiB** | **+55.8%** |
233
+ | Samsung Galaxy A35 5G | Exynos 1380<br>8-Core ARMv8.2-A CPU | CPU (NEON) | 224x224 | 4.88 tok/s | 3.51 tok/s | 65.34 s | 1059.02 MiB | 0.00 MiB | Baseline |
234
+
235
+ ### Key Performance Discoveries
236
+ 1. **100% Elimination of CPU Mapped VRAM**: In GPU mode (`-d gpu`), CPU mapped model buffer is completely zeroed out (`0.00 MiB`), offloading all 1059.02 MiB of model tensor data and 384.00 MiB of KV cache into Vulkan GPU buffers.
237
+ 2. **TBDR Tile Cache Synergy**: ARM Mali-G78 delivers a **+58.9%** throughput increase over pure CPU SIMD, maintaining thermal stability under continuous mobile inference.
238
+ 3. **Consistent Sub-Device Scaling**: Galaxy A35 (Mali-G68 5-core) achieves consistent ~5.5 tok/s generation throughput, proving robust multi-tier edge scalability.
239
+
240
+ ---
241
+
242
+ ## 8. Memory & VRAM Architecture
243
+
244
+ ```
245
+ +---------------------------------------------------------------+
246
+ | Physical Mobile LPDDR4X/LPDDR5 RAM (8 GB) |
247
+ +---------------------------------------------------------------+
248
+ | |
249
+ v v
250
+ +-------------------------------+ +-------------------------------+
251
+ | Android OS & Framework | | Termux User Space |
252
+ | (~3.5 - 4.2 GB) | | (~3.8 - 4.5 GB) |
253
+ +-------------------------------+ +-------------------------------+
254
+ |
255
+ v
256
+ +-------------------------------+
257
+ | Vulkan Unified Memory |
258
+ | - Model Weights: 1059.02 MiB |
259
+ | - KV Cache : 384.00 MiB |
260
+ | - CPU Mapped : 0.00 MiB |
261
+ +-------------------------------+
262
+ ```
263
+
264
+ ### Quantization & Android LMK Protection
265
+ * **SmolVLM-500M (Q4_K_M 350MB + Q8_0 mmproj 200MB)**: Peak working memory stays under ~1.6 GB, well below Android LMK eviction thresholds.
266
+ * **Qwen2-VL-2B (Q4_K_M 1.4GB + FP16 mmproj 600MB)**: Requires a minimum of 6GB available RAM; FP32 projector variants (>2.5GB) are automatically rejected to prevent SIGKILL aborts.
267
+
268
+ ---
269
+
270
+ ## 9. Hardware Requirements & Operational Limits
271
+
272
+ | Requirement | Minimum Specification | Recommended Specification |
273
+ | :--- | :--- | :--- |
274
+ | **Operating System** | Android 10+ (Termux ARM64) | Android 13+ (One UI 5.0+ / Termux Bionic) |
275
+ | **Processor (SoC)** | 8-Core ARM64 (Cortex-A55/A76) | Exynos 2100 / Snapdragon 8 Gen 2 or newer |
276
+ | **System RAM** | 6 GB LPDDR4X | 8 GB+ LPDDR5 |
277
+ | **Vulkan API** | Vulkan 1.1 with SPIR-V Compute | Vulkan 1.2+ with Subgroup 16 arithmetic |
278
+ | **Free Storage** | 2.5 GB internal storage | 6.0 GB internal storage |
279
+
280
+ ---
281
+
282
+ ## 10. License & Permissible Use
283
+
284
+ Licensed under the **Apache License, Version 2.0**.
285
+ Copyright (c) 2026 Eunho Kim ([@uno-km](https://github.com/uno-km)) & AMEVA Open-Source Foundation (AOSF).
286
+
287
+ * [Official Documentation Portal](https://uno-km.vercel.app/lib/vision/)
288
+ * [AMEVA Open-Source Foundation](https://uno-km.vercel.app/foundation/index.html)
289
+ * [GitHub Repository](https://github.com/uno-km/termux-vision)
290
+ * [Issue Tracker](https://github.com/uno-km/termux-vision/issues)
package/README.pypi.md CHANGED
@@ -1,40 +1,120 @@
1
- # Termux-Vision (Python)
2
-
3
- [![PyPI](https://img.shields.io/pypi/v/termux-vision.svg?style=flat-square&color=0369a1)](https://pypi.org/project/termux-vision/)
4
- [![Python](https://img.shields.io/pypi/pyversions/termux-vision.svg?style=flat-square)](https://pypi.org/project/termux-vision/)
5
- [![License](https://img.shields.io/badge/License-Apache_2.0-004499.svg?style=flat-square)](https://github.com/uno-km/termux-vision)
6
-
7
- > **디바이스 리소스를 활용한 안드로이드 Termux 제로 디펜던시 온디바이스 컴퓨터 비전 & VLM 멀티모달 추론 엔진**
8
- > *Zero-Dependency On-Device Computer Vision & Multimodal VLM Inference Engine Utilizing Device Resources for Android Termux*
9
-
10
- ## Installation
11
-
12
- ```bash
13
- pip install termux-vision
14
- ```
15
-
16
- ## Quickstart
17
-
18
- ```python
19
- import termux_vision as tv
20
-
21
- # 1. Zero-Dependency Spatial Filtering (0.01s ultra-fast)
22
- img = tv.io.load_image("photo.jpg")
23
- edges = tv.cv.canny(tv.transforms.to_grayscale(img), 40, 120)
24
-
25
- # 2. On-Device VLM Multimodal Inference with 4-Tier Quality Presets
26
- with tv.vlm.load("qwen2-vl-2b-q4", quality="optimal") as engine:
27
- res = engine.describe("photo.jpg", prompt="Describe this scene in detail.", quality="optimal")
28
- print(f"Generated ({res.metrics.tokens_per_second:.1f} t/s): {res.text}")
29
-
30
- ```
31
-
32
- ## Description
33
- Eliminates heavy C++ dependencies by integrating SIMD NEON spatial image transforms with on-device VLM (Qwen2-VL, SmolVLM) multi-tier resolution presets (fast, optimal, high, original) utilizing device resources under strict memory isolation.
34
-
35
- ## Documentation
36
- - [Official Documentation & API Reference](https://uno-km.vercel.app/lib/vision/)
37
- - [GitHub Repository](https://github.com/uno-km/termux-vision)
38
-
39
- ## License
40
- Apache-2.0 License. Copyright (c) 2026 Eunho Kim (@uno-km).
1
+ # Termux-Vision: On-Device Computer Vision & Multimodal VLM Framework
2
+
3
+ [![PyPI](https://img.shields.io/pypi/v/termux-vision.svg?style=flat-square&color=0369a1)](https://pypi.org/project/termux-vision/)
4
+ [![Python](https://img.shields.io/pypi/pyversions/termux-vision.svg?style=flat-square)](https://pypi.org/project/termux-vision/)
5
+ [![npm](https://img.shields.io/npm/v/termux-vision.svg?style=flat-square&color=b91c1c)](https://www.npmjs.com/package/termux-vision)
6
+ [![License](https://img.shields.io/badge/License-Apache_2.0-004499.svg?style=flat-square)](https://github.com/uno-km/termux-vision)
7
+
8
+ > **Native On-Device Computer Vision & Multimodal Vision-Language Model (VLM) Runtime for Android Termux via Direct Bionic libc & Vulkan Compute Acceleration.**
9
+ > *Zero PRoot. Zero Virtualization. 100% Native ARMv8.2-A NEON SIMD & Hardware GPU Offloading.*
10
+
11
+ ---
12
+
13
+ ## 1. Overview & Key Capabilities
14
+
15
+ `termux-vision` is an enterprise-grade, on-device multimodal vision inference and spatial computing framework engineered specifically for mobile Android devices. Operating directly against Android's native Bionic libc ABI and host Vulkan compute drivers, `termux-vision` eliminates heavyweight desktop dependencies (OpenCV, TorchVision) and enables high-throughput visual question answering, OCR image captioning, and classical feature extraction directly on edge hardware.
16
+
17
+ * **Native Bionic libc ABI Direct Binding**: Runs directly inside Termux user space with zero virtualization indirection.
18
+ * **Dual Compute Acceleration**: Integrates ARMv8.2-A DotProd/FP16 SIMD vector instructions with mobile Vulkan compute shader pipelines.
19
+ * **Full-Layer GPU Offloading (-ngl 99)**: Dispatches all 99 transformer layers and cross-attention vision projections directly to device GPU VRAM (**0.00 MiB CPU mapped VRAM**).
20
+ * **Zero-Dependency Classical Vision Suite**: Native 5-stage Canny edge detector (8-directional BFS hysteresis), Sobel 3x3 filtering, 2D Integral Images, and Haar-like face candidate localization.
21
+
22
+ ---
23
+
24
+ ## 2. Installation Guide
25
+
26
+ ### 2.1 Python Package Installation (PyPI)
27
+ ```bash
28
+ pip install --upgrade pip setuptools wheel
29
+ pip install termux-vision
30
+ ```
31
+
32
+ ### 2.2 Direct GitHub Releases Wheel Asset
33
+ ```bash
34
+ pip install https://github.com/uno-km/termux-vision/releases/download/v1.3.0/termux_vision-1.3.0-py3-none-any.whl
35
+ ```
36
+
37
+ ### 2.3 One-Line Bootstrap Installer
38
+ ```bash
39
+ curl -sL https://raw.githubusercontent.com/uno-km/termux-vision/main/install.sh | bash
40
+ ```
41
+
42
+ ---
43
+
44
+ ## 3. GPU Hardware Acceleration (`ameva-runtime`)
45
+
46
+ ```bash
47
+ pip install termux-vision ameva-runtime termux-llamacpp
48
+ ```
49
+
50
+ ### Silicon Architecture Support Status
51
+ * **ARM Mali GPU (Mali-G78, Mali-G68, etc.)**: Production Verified & Supported (Pure GPU offloading, 0.00 MiB CPU Mapped VRAM, MMVQ tuning via `--tune-mali`).
52
+ * **Qualcomm Adreno GPU (Adreno 730 / 740 / 750 / 830)**: Under Active Development (In Progress / 개발 진행 중).
53
+ * **Samsung Xclipse GPU (Xclipse 920 / 940 - AMD RDNA)**: Under Active Development (In Progress / 개발 진행 중).
54
+
55
+ Run hardware diagnostics:
56
+ ```bash
57
+ termux-vision doctor
58
+ ```
59
+
60
+ ---
61
+
62
+ ## 4. Standardized CLI & Parameter Matrix
63
+
64
+ | Parameter | Alias | Default | Description |
65
+ | :--- | :--- | :--- | :--- |
66
+ | `-d, --device` | `-b, --backend` | `auto` | Compute acceleration backend: `auto`, `gpu`, `vulkan`, `cpu`, `vulkan-force` |
67
+ | `-i, --image` | `--image-path` | *Required* | Path to input image (`.png`, `.jpg`, `.webp`) |
68
+ | `-p, --prompt` | *N/A* | `"Describe this image"` | Multimodal text instruction query |
69
+ | `-m, --model` | *N/A* | `smolvlm-500m` | GGUF language model path or catalog identifier |
70
+ | `--mmproj` | *N/A* | *Auto-paired* | Vision projector GGUF model path (`mmproj-*.gguf`) |
71
+ | `-n, --max-tokens` | `--n-predict` | `150` | Maximum number of generated tokens |
72
+ | `-c, --ctx-size` | `--ctx` | `2048` | Context window size |
73
+ | `-t, --threads` | *N/A* | `auto` | Number of CPU execution threads |
74
+ | `-q, --quality` | *N/A* | `optimal` | 4-tier resolution preset: `fast` (384px), `optimal` (768px), `high` (1280px), `original` (1:1) |
75
+ | `--tune-mali` | *N/A* | `False` | Enable ARM Mali GPU MMVQ tuning (`GGML_VK_FORCE_MMVQ=1`) |
76
+ | `--json` | *N/A* | `False` | Emit machine-readable JSON benchmark telemetry |
77
+
78
+ ### CLI Example
79
+ ```bash
80
+ # GPU-Accelerated Multimodal VLM Inference
81
+ termux-vision vlm photo.jpg -d gpu --tune-mali -p "What objects are visible?"
82
+
83
+ # Classical 5-stage Canny Edge Detection
84
+ termux-vision canny photo.jpg -o edges.png --low 40 --high 120
85
+ ```
86
+
87
+ ---
88
+
89
+ ## 5. Python SDK Quickstart
90
+
91
+ ```python
92
+ import termux_vision as tv
93
+
94
+ # 1. Zero-Dependency Classical CV Filtering
95
+ image = tv.io.load_image("document.jpg")
96
+ grayscale = tv.transforms.to_grayscale(image)
97
+ edges = tv.cv.canny(grayscale, low_threshold=40, high_threshold=120)
98
+ tv.io.save_image(edges, "edges.png")
99
+
100
+ # 2. On-Device Multimodal VLM Inference
101
+ with tv.vlm.load("smolvlm-500m", device="gpu") as engine:
102
+ result = engine.describe("document.jpg", prompt="Summarize this document.", quality="optimal")
103
+ print(f"TPS: {result.metrics.tokens_per_second:.2f} tok/s | Output: {result.text}")
104
+ ```
105
+
106
+ ---
107
+
108
+ ## 6. Real-World Benchmarks (SmolVLM-500M)
109
+
110
+ | Target Device | SoC / GPU | Mode | Prompt Eval | Token Generation | CPU Mapped VRAM | GPU VRAM | Speedup |
111
+ | :--- | :--- | :--- | :--- | :--- | :--- | :--- | :--- |
112
+ | **Samsung Galaxy S21 5G** | Exynos 2100 / Mali-G78 | **GPU (Vulkan)** | **14.28 tok/s** | **12.65 tok/s** | **0.00 MiB** | **1059.02 MiB** | **+58.9%** |
113
+ | Samsung Galaxy S21 5G | Exynos 2100 / 8-Core CPU | CPU (NEON) | 8.84 tok/s | 7.96 tok/s | 1059.02 MiB | 0.00 MiB | Baseline |
114
+ | **Samsung Galaxy A35 5G** | Exynos 1380 / Mali-G68 | **GPU (Vulkan)** | **5.67 tok/s** | **5.47 tok/s** | **0.00 MiB** | **1059.02 MiB** | **+55.8%** |
115
+ | Samsung Galaxy A35 5G | Exynos 1380 / 8-Core CPU | CPU (NEON) | 4.88 tok/s | 3.51 tok/s | 1059.02 MiB | 0.00 MiB | Baseline |
116
+
117
+ ---
118
+
119
+ ## 7. License
120
+ Licensed under the Apache-2.0 License. Copyright (c) 2026 Eunho Kim ([@uno-km](https://github.com/uno-km)) & AOSF.
package/package.json CHANGED
@@ -1,58 +1,58 @@
1
- {
2
- "name": "termux-vision",
3
- "version": "1.2.0",
4
- "description": "On-device computer vision & VLM multimodal inference framework utilizing device resources for Android Termux & ARM64",
5
- "main": "index.js",
6
- "types": "index.d.ts",
7
- "bin": {
8
- "termux-vision": "bin/cli.js",
9
- "tv": "bin/cli.js"
10
- },
11
- "files": [
12
- "index.js",
13
- "index.d.ts",
14
- "bin",
15
- "lib",
16
- "README.md",
17
- "LICENSE",
18
- "NOTICE"
19
- ],
20
- "scripts": {
21
- "test": "node tests/node_smoke.test.js"
22
- },
23
- "keywords": [
24
- "termux",
25
- "vision",
26
- "vlm",
27
- "multimodal",
28
- "computer-vision",
29
- "smolvlm",
30
- "qwen2-vl",
31
- "edge-ai",
32
- "on-device-ai",
33
- "vulkan",
34
- "arm64",
35
- "android",
36
- "llama-cli",
37
- "gguf",
38
- "canny",
39
- "haar-cascade",
40
- "open-source"
41
- ],
42
- "author": "uno-km (AMEVA Foundation) <dev@amevafoundation.org>",
43
- "license": "Apache-2.0",
44
- "homepage": "https://uno-km.vercel.app/lib/vision/",
45
- "repository": {
46
- "type": "git",
47
- "url": "git+https://github.com/uno-km/termux-vision.git"
48
- },
49
- "bugs": {
50
- "url": "https://github.com/uno-km/termux-vision/issues"
51
- },
52
- "dependencies": {
53
- "@ameva/runtime": ">=2.0.0"
54
- },
55
- "engines": {
56
- "node": ">=16.0.0"
57
- }
58
- }
1
+ {
2
+ "name": "termux-vision",
3
+ "version": "1.3.0",
4
+ "description": "On-device computer vision & VLM multimodal inference framework utilizing device resources for Android Termux & ARM64",
5
+ "main": "index.js",
6
+ "types": "index.d.ts",
7
+ "bin": {
8
+ "termux-vision": "bin/cli.js",
9
+ "tv": "bin/cli.js"
10
+ },
11
+ "files": [
12
+ "index.js",
13
+ "index.d.ts",
14
+ "bin",
15
+ "lib",
16
+ "README.md",
17
+ "LICENSE",
18
+ "NOTICE"
19
+ ],
20
+ "scripts": {
21
+ "test": "node tests/node_smoke.test.js"
22
+ },
23
+ "keywords": [
24
+ "termux",
25
+ "vision",
26
+ "vlm",
27
+ "multimodal",
28
+ "computer-vision",
29
+ "smolvlm",
30
+ "qwen2-vl",
31
+ "edge-ai",
32
+ "on-device-ai",
33
+ "vulkan",
34
+ "arm64",
35
+ "android",
36
+ "llama-cli",
37
+ "gguf",
38
+ "canny",
39
+ "haar-cascade",
40
+ "open-source"
41
+ ],
42
+ "author": "uno-km (AMEVA Foundation) <dev@amevafoundation.org>",
43
+ "license": "Apache-2.0",
44
+ "homepage": "https://uno-km.vercel.app/lib/vision/",
45
+ "repository": {
46
+ "type": "git",
47
+ "url": "git+https://github.com/uno-km/termux-vision.git"
48
+ },
49
+ "bugs": {
50
+ "url": "https://github.com/uno-km/termux-vision/issues"
51
+ },
52
+ "dependencies": {
53
+ "@ameva/runtime": ">=2.0.0"
54
+ },
55
+ "engines": {
56
+ "node": ">=16.0.0"
57
+ }
58
+ }