Assigning random values to image pixels
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I am trying to assign random values to the elements of a rectangular region within an image matrix, so that the result looks something like this:

This is my approach:
I = zeros(128,128);
for i=32:96
for j=32:96
I(i,j) = rand();
end
end
imshow(I);
Is there a more efficient way of doing this, perhaps without a double for-loop?
Any suggestions would be greatly appreciated.
0 commentaires
Réponse acceptée
Guillaume
le 30 Avr 2017
I = zeros(128, 128)
I(32:96, 32:96) = rand(96-32+1, 96-32+1);
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Creating and Concatenating Matrices dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!