I really need help with image matrix in matlab.

I was given image https://elearning.uh.edu/bbcswebdav/pid-570151-dt-content-rid-4178856_1/courses/H_20133_ECE_1331_11115/image1%281%29.jpg. How can i create new matrix that contains indices for green values that are larger than a random chosen intensity threshold in mxn size and mxnx3 size. Thanks you very much

2 Comments

We do not have permission to view that image.
i'm sorry about that.

Sign in to comment.

Answers (2)

ES
ES on 9 Oct 2013
Edited: ES on 9 Oct 2013
do an
imread
image and then from the result matrix,
Resultant Matrix
Output=[InputMatrix>Threshold].*InputMatrix;
of course, care about data types. [InputMatrix>Threshold] will be of boolean type and InputMatrix will be uint8. convert them all to uint8.
greenChannel = rgbImage(:,:,2);
binaryImage = greenChannel > someThresholdValue;
Most likely that's all you'd need. THat can do everything. If for some reason you need actual row and column indices, then you can get them with find():
[rows, columns] = find(binaryImage);
but like I said, it's highly unlikely you'd need that. If you think you do, then let me know why you think you need that and what you're going to do with that information.

Categories

Find more on Images in Help Center and File Exchange

Products

Asked:

on 9 Oct 2013

Answered:

on 9 Oct 2013

Community Treasure Hunt

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

Start Hunting!