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
Copy file name to clipboardExpand all lines: README.md
+61-41Lines changed: 61 additions & 41 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,20 +2,23 @@
2
2
3
3
**Ultra-fast native image processing using AVX2/SSE4.1 kernels and zero-GC memory management.**
4
4
5
-
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.
5
+
FastImage ist eine ultra‑schnelle, native‑beschleunigte Image‑Processing‑Engine für Java, gebaut für das
6
+
FastJava‑Ecosystem. Es kombiniert AVX/SSE SIMD, off‑heap Storage, zero‑copy Pipelines und eine fluent API, um typische
7
+
BufferedImage‑Operationen **10–50× schneller** auszuführen — ohne GC‑Pressure, ohne Pixel‑Loops, ohne JVM‑Overhead.
6
8
7
9
```java
8
10
// Quick Start — SIMD-Accelerated Filtering
11
+
9
12
importfastimage.FastImage;
10
13
11
14
publicclassDemo {
12
15
publicstaticvoidmain(String[] args) {
13
16
FastImage img =FastImage.load("input.jpg");
14
-
17
+
15
18
img.adjustContrast(1.2f)
16
-
.blurStack(15.0f)
17
-
.grayscale();
18
-
19
+
.blurStack(15.0f)
20
+
.grayscale();
21
+
19
22
img.save("output.png");
20
23
img.dispose(); // Free native memory
21
24
}
@@ -31,6 +34,7 @@ public class Demo {
31
34
---
32
35
33
36
## Table of Contents
37
+
34
38
-[Key Features](#key-features)
35
39
-[Performance](#performance)
36
40
-[Installation](#installation)
@@ -57,11 +61,11 @@ public class Demo {
57
61
58
62
FastImage utilizes the full power of your CPU, outperforming standard Java2D loops by orders of magnitude:
0 commit comments