Borrar filtros
Borrar filtros

How to find row and column of a pixel in an Image?

18 visualizaciones (últimos 30 días)
Karan Ratnaparkhi
Karan Ratnaparkhi el 21 de Mzo. de 2011
Comentada: Image Analyst el 23 de Abr. de 2016
Guys I want to find the rows and columns of pixels of image so that i can put that in if condition inside for loop. Bt i am unable to write that code. plz help me.
  3 comentarios
Radha r
Radha r el 23 de Abr. de 2016
how do find image row and coloumn pixel in matrix in train image because i would geetting the good and bad pixel find out
Image Analyst
Image Analyst el 23 de Abr. de 2016
Radha r, Start your own question and post your image and explain what "good" and "bad" means to you.

Iniciar sesión para comentar.

Respuesta aceptada

Wolfgang Schwanghart
Wolfgang Schwanghart el 21 de Mzo. de 2011
Hi, what about this:
[ROWS,COLUMNS] = ndgrid(1:size(I,1),1:size(I,2));
ROWS = ROWS(:);
COLUMNS = COLUMNS(:);
where I is your image.
Best regards, Wolfgang

Más respuestas (3)

Karan Ratnaparkhi
Karan Ratnaparkhi el 21 de Mzo. de 2011
Hi wolfgang I have an algorithm in which i am given a range of rows n columns lets say a to b (for rows) and c to d (for columns). now I hav to do operation only on those pixels which lie (whose rows n cols lie) in between a to b and c to d. Thats y i want to know how to get the row and column of given pixel (not the value of pixel.) Plz help me with this code.
  2 comentarios
Wolfgang Schwanghart
Wolfgang Schwanghart el 21 de Mzo. de 2011
This sounds to me as if you want to perform some calculations within a subset of your image. Without knowing what exactly you want to do there, I suggest to take a look at the roi-based image processing section of the documentation.
http://www.mathworks.com/help/toolbox/images/ref/roifilt2.html
HTH, Wolfgang
Karan Ratnaparkhi
Karan Ratnaparkhi el 22 de Mzo. de 2011
hey thnx wolfgang...

Iniciar sesión para comentar.


Syed Ali Hassan
Syed Ali Hassan el 22 de Feb. de 2014
Check this [row_limit,col_limit]=size(img);
  3 comentarios
Radha r
Radha r el 23 de Abr. de 2016
it is not find the t my answer and what are you telling me i ont now please tell me example
Radha r
Radha r el 23 de Abr. de 2016
plz help me sir

Iniciar sesión para comentar.


Radha r
Radha r el 23 de Abr. de 2016
it is not find the t my answer and what are you telling me i ont now please tell me example
  1 comentario
Image Analyst
Image Analyst el 23 de Abr. de 2016
Radha r, Start your own question and post your image and explain what "good" and "bad" means to you.

Iniciar sesión para comentar.

Categorías

Más información sobre Image Processing Toolbox en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by