You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FastImage ist eine ultra‑schnelle, native‑beschleunigte Image‑Processing‑Engine für Java, gebaut für das FastJava‑Ecosystem. Es kombiniert AVX/SSE SIMD, off‑heap Storage, zero‑copy Pipelines und eine fluent API, um typische BufferedImage‑Operationen **10–50× schneller**auszuführen — ohne GC‑Pressure, ohne Pixel‑Loops, ohne JVM‑Overhead.
11
+
FastImage ist eine ultra‑schnelle, native‑beschleunigte Image‑Processing‑Engine für Java, gebaut für das FastJava‑Ecosystem. Es kombiniert AVX/SSE SIMD, off‑heap Storage, zero‑copy Pipelines und eine fluent API, um typische BufferedImage‑Operationen **10–50× schneller**auszuführen — ohne GC‑Pressure, ohne Pixel‑Loops, ohne JVM‑Overhead.
12
12
13
13
```java
14
-
// Quick Start — SIMD-Accelerated Filtering
14
+
// Quick Start — SIMD-Accelerated Filtering
15
15
importfastimage.FastImage;
16
16
17
17
publicclassDemo {
@@ -45,11 +45,11 @@ public class Demo {
45
45
46
46
## Key Features
47
47
48
-
-**🚀 SIMD Acceleration**— Hand-optimized C++ kernels using **AVX2** and **SSE4.1** vector instructions.
49
-
-**🧠 Zero-GC Overhead**— Pixels are stored in **off-heap** memory, preventing GC pauses during heavy manipulation.
0 commit comments