awesome-repositories.com
المدونة
awesome-repositories.com

اكتشف أفضل مستودعات المصادر المفتوحة باستخدام بحث مدعوم بالذكاء الاصطناعي.

استكشفعمليات بحث منسقةبدائل مفتوحة المصدربرمجيات ذاتية الاستضافةالمدونةخريطة الموقع
المشروعحولكيفية ترتيب النتائجالصحافةخادم MCP
قانونيالخصوصيةالشروط
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

5 مستودعات

Awesome GitHub RepositoriesImage-Optimized Memory Regions

Techniques for placing image data in specialized memory areas to maximize processing speed.

Distinct from Memory-Optimized Processing: Targets the placement of binary image data specifically to avoid OOM errors and CPU overhead

Explore 5 awesome GitHub repositories matching data & databases · Image-Optimized Memory Regions. Refine with filters or upvote what's useful.

Awesome Image-Optimized Memory Regions GitHub Repositories

اعثر على أفضل المستودعات باستخدام الذكاء الاصطناعي.سنبحث عن أفضل المستودعات المطابقة باستخدام الذكاء الاصطناعي.
  • facebook/frescoالصورة الرمزية لـ facebook

    facebook/fresco

    17,149عرض على GitHub↗

    Fresco is an Android image loading library and cache manager designed to fetch, decode, and display images from network or local sources. It functions as a rendering engine for animated image formats and a streaming system for progressive image loading. The library distinguishes itself through specialized memory management that utilizes off-heap allocation to reduce garbage collection overhead and prevent out-of-memory errors. It includes a dedicated rendering pipeline for animated GIFs and WebP files and supports progressive JPEG decoding to render low-resolution versions of images while the

    Places image data in specialized memory regions to increase processing speed and prevent out-of-memory errors.

    Kotlin
    عرض على GitHub↗17,149
  • coil-kt/coilالصورة الرمزية لـ coil-kt

    coil-kt/coil

    11,819عرض على GitHub↗

    Coil is an image loading and caching pipeline designed for Android and Compose Multiplatform applications. It functions as a comprehensive loader, caching engine, and rendering utility that asynchronously fetches and displays images from network URLs, local storage, and multiplatform resource systems. The library distinguishes itself through a flexible fetcher-decoder pipeline and an interface-driven component registry, allowing for the integration of custom networking clients and decoders. It provides specialized support for rendering scalable vector graphics, animated formats such as GIF an

    Reduces resource consumption through a combination of memory caching, disk storage, and downsampling.

    Kotlinandroidandroidxcompose
    عرض على GitHub↗11,819
  • path/fastimagecacheالصورة الرمزية لـ path

    path/FastImageCache

    8,068عرض على GitHub↗

    FastImageCache is an iOS image caching library that provides a persistent disk-based image store. It utilizes a persistent bitmap cache to store images in uncompressed formats and incorporates an image pre-processing pipeline to optimize assets before they are committed to storage. The library optimizes rendering performance by using memory-mapped image tables for constant-time retrieval and byte-aligned data layouts to prevent memory copies. It organizes images of identical dimensions into shared tables and manages disk space through a least-recently-used cache eviction system. The project

    Implements byte-aligned data layouts to prevent expensive memory copies and optimize rendering performance.

    Objective-C
    عرض على GitHub↗8,068
  • zetbaitsu/compressorالصورة الرمزية لـ zetbaitsu

    zetbaitsu/Compressor

    7,222عرض على GitHub↗

    Compressor is an Android image compression library designed to reduce the file size and dimensions of images within mobile applications. It functions as a bitmap optimizer that adjusts image quality and formats to minimize storage footprints and improve network upload speeds. The library operates as an asynchronous image processor, utilizing background threads and reactive streams to compress high-resolution photos. This execution model prevents user interface freezes and maintains application responsiveness during heavy image manipulation tasks. The project covers a broad range of image opt

    Uses optimized memory-mapped regions to decode high-resolution photos without triggering out-of-memory errors.

    Kotlin
    عرض على GitHub↗7,222
  • hosseinmoein/dataframeالصورة الرمزية لـ hosseinmoein

    hosseinmoein/DataFrame

    2,917عرض على GitHub↗

    DataFrame is a C++ tabular data library and manipulation engine designed for managing heterogeneous data in contiguous memory. It functions as a statistical analysis framework and time series analysis toolkit, providing the means to store, index, and transform multidimensional datasets. The project distinguishes itself through a high-performance execution model that utilizes column-major storage, SIMD-aligned memory allocation, and a thread-pool for parallel computations. It employs a visitor-based algorithm dispatch system and policy-driven transformations to decouple data processing logic f

    Allocates data on custom byte boundaries to enable SIMD instructions and prevent cache-line sharing.

    C++aicppdata-analysis
    عرض على GitHub↗2,917
  1. Home
  2. Data & Databases
  3. High-Performance Data Infrastructures
  4. Memory-Optimized Processing
  5. Image-Optimized Memory Regions

استكشف الوسوم الفرعية

  • Byte Alignment OptimizationsTechniques for aligning binary image data to specific memory boundaries to avoid expensive CPU memory copies. **Distinct from Image-Optimized Memory Regions:** Focuses on memory boundary alignment to prevent copies, rather than general region placement for OOM prevention.