Binary and positional trees in data structure

We define binary trees recursively. A binary tree T is a structure defined on a finite set of nodes that either contains no nodes, or is composed of three disjoint sets of nodes: a root node, a binary tree called its left subtree, and a binary tree called its right subtree. The binary tree that … Read more

Fourier transforms in image processing

The Fourier transform produces another representation of a signal, specifically a representation as a weighted sum of complex exponentials. Because of Euler’s formula ejq =cos(q) + jsin(q) where j2 = −1, we can say that the Fourier transform produces a representation of a (2D) signal as a weighted sum of sines and cosines. The defining … Read more

Digital Image

A digital image a[m,n] described in a 2D discrete space is derived from an analog image a(x,y) in a 2D continuous space through a sampling process that is frequently referred to as digitization The 2D continuous image a(x,y) is divided into N rows and M columns. The intersection of a row and a column is … Read more

FUNDAMENTAL STEPS IN DIGITAL IMAGE PROCESSING

There are two categories of the steps involved in the image processing Methods whose outputs are input are images Methods whose outputs are attributes extracted from those images Image Acquisition: It could be as simple as being given an image that is already in digital form. Generally, the image acquisition stage involves processing such scaling. … Read more

IMAGE PROCESSING TOOLBOX (IPT)

It is a collection of functions that extend the capability of the MATLAB numeric computing environment. These functions, and the expressiveness of the MATLAB language, make many image-processing operations easy to write in a compact, clear manner, thus providing an ideal software prototyping environment for the solution of image processing problem Image Sensors: With reference … Read more

APPLICATIONS OF DIGITAL IMAGE PROCESSING

There are following applications are image processing Since digital image processing has very wide applications and almost all of the technical fields are impacted by DIP, we will just discuss some of the major applications of DIP Digital image processing has a broad spectrum of applications, such as Remote sensing via satellites and other spacecrafts … Read more

DIGITAL IMAGE FUNDAMENTALS

The field of digital image processing refers to processing digital images by means of digital computer. Digital image is composed of a finite number of elements, each of which has a particular location and value. These elements are called picture elements, image elements, pels and pixels. Pixel is the term used most widely to denote … Read more