Effacer les filtres
Effacer les filtres

Extract Matrix

1 vue (au cours des 30 derniers jours)
Prashant Somani
Prashant Somani le 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.

Réponse acceptée

Walter Roberson
Walter Roberson le 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 commentaire
Prashant Somani
Prashant Somani le 22 Oct 2011
Thank you very much for quick response...

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Operating on Diagonal Matrices dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by