Dive into a world of knowledge and creativity with our blog, where we explore the fascinating realms of image processing and programming. Here, you’ll find a diverse collection of articles, tutorials, and insights designed to enhance your understanding and skills in these dynamic fields.
Happy reading!
Image Processing WebGL JavaScript Source Code Edge Detection Filter Blur SVG Color Space C/C++
Gradient non-maximum suppression is an edge thinning algorithm that extracts thin contours of objects in an image. The output of this image processing algorithm is contour curves that are one pixel wide. Non-maximal suppression is…
The Sobel filter (also called Sobel-Feldman operator) is an edge detection algorithm, that results in image emphasizing edges. Computer vision apps often use this image processing technique to extract the objects contours.
The Median filter is a nonlinear noise reduction technique that is widely used in image processing. It is very effective in cases of salt and paper noise (impulsive noise) and speckle noise. However, in cases…
The Mean filter is a linear low-pass blur photo filter where each pixel in the output image has average value of its neighboring pixels. The algorithm is also famous as Box blur and performs as…
The Hough Transform is a method to find shapes in an image. The classical transformation is initially designed to identify lines in the image. Later the transform extends to identify different kind of shapes such…
Gaussian blur is an essential part of many image processing algorithms. It serves to clear the noise in the images, as well as a general visual effect in various graphics software.