find 8 neighbours in image
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
hi dears..... plz help me
how i find the 8 neighbours around the white pixels...
3 comentarios
Image Analyst
el 4 de Jul. de 2020
Use imdilate() then and it with the original
neighbors = imdilate(bw, true(3)) & ~bw;
Respuestas (2)
KSSV
el 21 de Sept. de 2017
Read about knnsearch
I = imread('2.png') ;
I = rgb2gray(I) ;
[y,x] = find(I) ;
% 8 nearest neighbors
[ny,nx] = size(I) ;
[X,Y] = meshgrid(1:nx,1:ny) ;
% global indices
idx = knnsearch([X(:) Y(:)],[x,y],'k',8) ;
% sub indices
[i,j] = ind2sub(size(I),idx) ;
2 comentarios
Sajid Rahim
el 16 de Oct. de 2017
Editada: Walter Roberson
el 17 de Oct. de 2017
Walter Roberson
el 17 de Oct. de 2017
This code does not answer the questions "Find them in what sense? What output are you looking for?"
Mehadi Hasan
el 22 de Oct. de 2021
I = imread('2.png') ;
I = rgb2gray(I) ;
[y,x] = find(I) ;
% 8 nearest neighbors
[ny,nx] = size(I) ;
[X,Y] = meshgrid(1:1x,1:1y) ;
% global indices
idx = knnsearch([X(:1) Y(:1)],[x,y],'k',8) ;
% sub indices
[i,j] = ind2sub(size(I),idx) ;
0 comentarios
Ver también
Categorías
Más información sobre Point Cloud Processing 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!