Digital Image Processing

What is an Image??? Image is the combination of pixels and Pixel is nothing but a part of Picture. An image is nothing more than a two dimensional signal. It is defined by the mathematical function f(x, y) where x and y are the two co-ordinates horizontally and vertically. The value of f(x, y) at…

Read More

MATLAB BASICS

Variables No need for types. i.e., All variables are created with double precision unless specified and they are matrices. After these statements, the variables are 1×1 matrices with double precision Array, Matrix a vector x = [1 2 5 1] a matrix x = [1 2 3; 5 1 4; 3 2 -1] transpose y…

Read More