how to find the pixel value for an image in matlab

1 view (last 30 days)
for a given mri scan image i want a corresponding pixel value

Answers (1)

Image Analyst
Image Analyst on 7 Jan 2014
Assuming you have read your image into a 3D array, then:
pixelValue = yourImage(row, column, sliceNumber);

Community Treasure Hunt

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

Start Hunting!