How to create Nearest Neighbors for a matrix of 1's and 0's?

3 views (last 30 days)
I have a matrix of 1's and 0's.
mat =
10100
11101
11011
I would like to create neighbors to this matrix where the 1's remain consecutive (i.e. they follow each other continuously) and in the same respective column . I've tried an offset mask but it does not work for the end row of the matrix since it breaks apart the group of 1's. I believe padding to fix this will add irrelevant data to the matrix?

Answers (1)

Image Analyst
Image Analyst on 15 Feb 2015
I don't know what that means. Do you mean a morphological dilation where you just grow out all 1's by a layer to the left and right? If so, use imdilate. Like:
outputImage = imdilate(mat, [1,1,1]);
If not, then pick a smaller example and say what you want the output to be, like you want it to be a matrix of the same size, or you want a cell array where each cell holds the row and column indexes of the neighbors of that pixel or whatever. Perhaps if would help if you said what you want to achieve. Let's say you had whatever you're thinking of. Then what?
  3 Comments
Image Analyst
Image Analyst on 15 Feb 2015
Edited: Image Analyst on 15 Feb 2015
You forgot to give the "answer" for this small example, and to give us the big picture about why you need this (what you would do with the answer).
laurie
laurie on 15 Feb 2015
My problem is to create a tabu algorithm with the above matrix as the initial solution. I'm at the point where i need to generate neighbor solutions to this initial solution. The answer will be a set of matrices with the above constrictions. For eg. one of the neighbor solutions could be
1101
1111
1010

Sign in to comment.

Community Treasure Hunt

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

Start Hunting!