PPolySim OS

Image Convolution

The operation behind every blur, sharpen, and edge detector. Slide a 3×3 kernel over an image and watch the pixels transform.

Image Convolution StudioLive

Controls

Kernel

Each kernel slides over the image and replaces every pixel with a weighted sum of its 3×3 neighborhood. Blur averages; edge kernels difference.

Presets

▶ Run in Python

Data Inspector

KernelEdge (Laplacian)
Sum of weights0
Passes1

3×3 kernel

0
-1
0
-1
4
-1
0
-1
0

Governing equation

Reading this result: The Edge (Laplacian) kernel sums to 0, so flat regions cancel to gray and only intensity CHANGES survive — this is why it highlights edges. (Shown with a +128 gray bias so negative responses are visible.)

Runs locally in your browser — free forever. Scale to the cloud when reality gets heavy.

or unlock everything with Pro →
★ Sign in to save this setup
Save your tuned setup, or drop this simulation into your own site, docs, or course page.

How it works

Convolution replaces each pixel with a weighted sum of its neighborhood, where the weights are the kernel. Blur kernels are positive weights that sum to 1, so they average away noise while preserving brightness; edge kernels (Laplacian, Sobel) sum to 0, so flat regions cancel and only intensity changes remain. It is the core primitive of image processing and the convolutional layers in modern neural networks — try each kernel on the same test image to see exactly what its weights do.

Ask the AI about this model

The math, the assumptions, real-world uses, or a code translation — explained for this exact simulation.

More Image Processing simulations

Frequently asked questions

Is this image convolution kernel filter tool really free?
Yes. Image Convolution runs entirely in your browser using your device's own compute, so local use is free forever. You only pay Compute Tokens if you scale a job to the cloud.
Do I need to install anything?
No. Everything runs client-side in a modern browser — no downloads, no license, no account required to start.
Can I save or share my simulation?
Create a free account to save projects, and use a shareable embed or minted DOI to publish a live, interactive version anywhere.
How accurate are the results?
The solver uses established numerical methods, but results are for research and educational purposes and should be validated against experiment or professional review before you rely on them.