garyscale difference by row and column

1 visualización (últimos 30 días)
shri sant  gadge baba
shri sant gadge baba el 28 de En. de 2012
dear sir i want to find grayscale difference by row as well as column for image recognition plz help in this code

Respuestas (1)

Image Analyst
Image Analyst el 28 de En. de 2012
You can use imfilter, conv2, or graycomatrix. Maybe something like
kernel = [-1 -1 -1; -1 8 -1; -1 -1 -1];
differenceImage = conv2(inputImage, kernel);
Look them up, then refine your vague question and come back if you still can't figure out what to do.

Categorías

Más información sobre Pattern Recognition and Classification en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by