Design
Apply motion blur kernel to simulate camera movement or object motion in specified direction
image-motion-blur-kernelDesign
Apply Prewitt operator for edge detection to identify boundaries and gradients in images
image-prewittDesign
Apply Roberts Cross operator for simple and fast edge detection, particularly effective for diagonal edges
image-robertsDesign
Apply Sobel operator for edge detection to highlight boundaries and contours in images
image-sobelDesign
Apply morphological closing operation (dilation followed by erosion) to fill small holes and connect nearby objects
image-closeDesign
Apply standard convolution kernels (blur, sharpen, edge detection, emboss) for image processing and effects
image-convolveDesign
Apply custom convolution kernel by defining your own matrix values for personalized image effects and processing
image-custom-kernelDesign
Apply gradient operations (Sobel, Prewitt, Roberts) for edge detection and image enhancement
image-gradientDesign
Apply Laplacian operator for edge detection, sharpening, and image enhancement with different kernel variants
image-laplacianDesign
Apply morphological opening operation (erosion followed by dilation) to remove small noise and separate connected objects
image-openDesign
Apply adaptive threshold operation that calculates threshold for small regions, suitable for varying lighting conditions
image-adaptive-thresholdDesign
Convert images to binary (black and white) with customizable threshold and options
image-binary