Recent posts / Archive

Categories

Posts matching category: image processing

Discrete Orthonormal Moments

Originally posted by on 15:59 Sun 27 April 2008, last modified 08:05 Mon 17 November 2008.

File under: image processing math moments objective-c phd programming shape description

Shape description by image moments is a popular topic in image processing. Standard geometric moments are based on a non-orthogonal basis, which has introduced some problems for image reconstruction. Orthogonal moments such as Zernike and Legendre Moments which use orthogonal polynomials have been introduced to overcome this problem. These however are based on continuous polynomials, and are not really suited to digital images processing which is inherently rooted in a discrete domain. Hence, a new type of discrete orthogonal moments, based on Tchebichef polynomials has emerged.

read more...

edit or comment

Sobel Edge Detection

Originally posted by on 06:00 Wed 9 March 2005, last modified 20:04 Tue 5 June 2007.

File under: 3rd year project image processing programming python

Sobel edge detection is a popular technique as it can deliver good results, without excessive computational requirements. The technique utilises the theory of optimal smoothing (Gaussian), and optimal differencing.

read more...

edit or comment

Implementing the Hough Transform

Originally posted by on 06:00 Thu 24 February 2005, last modified 19:43 Tue 5 June 2007.

File under: 3rd year project image processing programming python

The Hough Transform (HT) is an image processing operation which enables the extraction of shapes, essentially lines from images. The principle is that there are an infinite number of line that pass though any point, each at a different orientation. The HT aims to determine which of those theoretical lines pass though most features in an image.

read more...

edit or comment