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
Walter Roberson
2013년 10월 9일
We do not have permission to view that image.
jason nguyen
2013년 10월 9일
답변 (2개)
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
2013년 10월 9일
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에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!