MATLAB: Get pixel where the intensity is 255MATLABpixel intensity print pointHi I have an immage 2048×2448 grayscale, I want to find all the pixel where the intensity is "255".After i have find them i want to print this point on the immage Best Answerimg; % 2048x2448 matrix[r, c] = find(img==255); % r and c contain all row and columnsIf you want to mark these points on the imageplot(c, r, '+')It will draw '+' marker at those locations.
Best Answer