Finding pixel location

In my binary image line segments are displayed in white. I want to find all the locations (pixel coordinates )which contain pixel value 1 (white)? how can i get those pixel coordinates as an array. Please help me

 Accepted Answer

eg
k = rand(10) > .4
STATS = regionprops(k, 'PixelList','PixelIdxList')

3 Comments

bes
bes on 3 Oct 2012
Thanks. It works fine
may i interupt??
what is k?
k is a binary image. Probably a poor name though. He made a 10x10 image using rand() and then thresholded it at 0.4 to create a binary image. Try this instead:
binaryImage = rand(10) > .4
STATS = regionprops(binaryImage, 'PixelList');
However you don't need regionprops to just find all the locations of white. You can just do
[rows, columns] = find(binaryImage)

Sign in to comment.

More Answers (0)

Products

Release

R2011b

Asked:

bes
on 24 Feb 2012

Commented:

on 12 Nov 2020

Community Treasure Hunt

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

Start Hunting!