Effacer les filtres
Effacer les filtres

Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

Why isnt this giving the desired output.

1 vue (au cours des 30 derniers jours)
Hussain Hayat
Hussain Hayat le 8 Août 2015
Clôturé : MATLAB Answer Bot le 20 Août 2021
The code is supposed to generate cars at different places. However its just generating one which is one the top left corner. Where is the error?
OUTPUT
This is what the command line shows.
COMMAND LINE IMAGE

Réponses (1)

Star Strider
Star Strider le 8 Août 2015
I don’t have your ‘car’ and ‘road’ images, so I made a little green ‘plus’ sign appear in the centre of a yellow pepper. You assign the inserted image just as you would address any other matrix, remembering that in an image, the y-axis is the reverse of a plot y-axis. (I’m attaching the green plus sign image.) Perhaps this will help get you started:
I = imread('peppers.png');
p = imread('dndCopy.png');
I(200+[0:15],260+[0:15],:) = p; % Define ‘I’ Where You Want The ‘car’ (Or ‘+’) To Appear
figure(1)
image(I)

Cette question est clôturée.

Community Treasure Hunt

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

Start Hunting!

Translated by