Needing to get the coordinates of the illuminated pixels
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Hi, I'm trying to get the coordinates of the pixels in the lit area of greyImg. Is this possible?
RGB=imread('image_0.png');
greyImg = rgb2gray(RGB);
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/162634/image.jpeg)
0 Kommentare
Antworten (2)
Thorsten
am 5 Apr. 2017
You can define a threshold by visual inspection to separate the lit from the unlit pixels to get a binary image.
mythreshold = 0.55;
BW = im2bw(I, mythreshold);
idx = BW == 1; % logical index
idx = find(BW); % numerical index
0 Kommentare
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!