How can I get pixels info like the function "impixel", but for multiple pixel?
Afficher commentaires plus anciens
I want to get a plot of RGB info as a function of location (x,y), by drawing a line. (In impixel I need to choose one pixel, but I want a line of pixel)
Thank you.
Réponses (1)
Iain
le 3 Juin 2013
plot(squeeze(image(:,column,1)),'r')
hold on
plot(squeeze(image(:,column,2)),'g')
plot(squeeze(image(:,column,3)),'b')
xlabel 'Column nmumber'
figure
plot(squeeze(image(row,:,1)),'r')
hold on
plot(squeeze(image(row,:,2)),'g')
plot(squeeze(image(row,:,,3)),'b')
xlabel 'Row nmumber'
1 commentaire
Matanya
le 3 Juin 2013
Catégories
En savoir plus sur Region and Image Properties dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!