3 个仓库
Distributing computer vision tasks to background threads to maintain high UI frame rates.
Distinct from Worker Thread Patterns: Specific to offloading heavy image analysis, not generic thread patterns or UI messaging.
Explore 3 awesome GitHub repositories matching software engineering & architecture · Image Processing Offloading. Refine with filters or upvote what's useful.
AR.js is a web-based augmented reality framework used to create immersive experiences directly in a browser using WebGL and WebRTC. It provides a cross-platform runtime that executes on mobile devices and head-mounted displays without requiring a dedicated application installation. The framework includes a marker-based engine for detecting physical patterns or barcodes to anchor digital overlays, a location-based tool for positioning entities via GPS coordinates, and a face tracking library for anchoring content to human facial features. It supports multi-marker simultaneous tracking, custom
Offloads heavy image processing and pattern matching to background threads to maintain high performance.
jspaint is a web-based reimplementation of Microsoft Paint, built entirely in JavaScript to run in a browser. It recreates the classic desktop application by reverse-engineering the original Win32 API calls and event handling, rendering the entire interface onto an HTML5 canvas for pixel-perfect retro graphics. The project preserves the original file format compatibility with BMP, PNG, GIF, and JPEG, ensuring exact pixel data matches the legacy application. The application maintains a complete undo history stack using compressed image snapshots, and offloads computationally intensive image pr
Offloads computationally intensive image processing operations to background web workers for UI responsiveness.
Node-vibrant 是一个 JavaScript 图像处理库,旨在从媒体资产中提取调色板,用于动态用户界面主题化。它作为一个自动化设计工具,识别主色调和柔和色调,以在应用界面中保持视觉和谐。 该库利用基于量化的颜色聚类和基于启发式的评分将像素数据分组为代表性颜色集。通过将这些计算密集型的分析任务卸载到后台线程,该项目确保了主执行线程在图像处理过程中保持响应。 该工具支持浏览器和服务器端环境,为从视觉内容生成主题变体提供了一种一致的方法。它作为一个包提供,用于集成到需要自动化颜色提取和响应式样式系统的开发工作流中。
Distributes image analysis tasks to background threads to maintain high UI frame rates.