Clear Filters
Clear Filters

Extract Matrix

1 view (last 30 days)
Prashant Somani
Prashant Somani on 22 Oct 2011
I am using impixel as below, after selecting pixels, it returns column and row values respectively in "c" and "r".
[c,r,P] = impixel(im)
Now than after I am converting it in hsv format
imh=rgb2hsv(im)
Now trying to fetch hue, saturation and value from imh of desired pixels as below, it is not give exact answers.
h=imh(r,c,1)
s=imh(r,c,2)
v=imh(r,c,3)
Can any one help in this.

Accepted Answer

Walter Roberson
Walter Roberson on 22 Oct 2011
h = imh(sub2ind(size(imh),r,c,1*ones(size(r))));
s = imh(sub2ind(size(imh),r,c,2*ones(size(r))));
v = imh(sub2ind(size(imh),r,c,3*ones(size(r))));
  1 Comment
Prashant Somani
Prashant Somani on 22 Oct 2011
Thank you very much for quick response...

Sign in to comment.

More Answers (0)

Categories

Find more on Operating on Diagonal Matrices in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!