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

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

댓글을 달려면 로그인하십시오.

답변 (2개)

ES
ES 2013년 10월 9일
편집: ES 2013년 10월 9일

1 개 추천

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.
Image Analyst
Image Analyst 2013년 10월 9일

0 개 추천

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.

카테고리

도움말 센터File Exchange에서 Images에 대해 자세히 알아보기

제품

질문:

2013년 10월 9일

답변:

2013년 10월 9일

Community Treasure Hunt

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

Start Hunting!

Translated by