Traffic Control in GUI

5 views (last 30 days)
Miroslav Jiránek
Miroslav Jiránek on 15 Mar 2020
Edited: Miroslav Jiránek on 19 Mar 2020
Helo everyone,
I would like to help with Traffic Control in GUI. I'd like to program a basic crossroad, where cars are generated atuomatically at the beginning of the road. When a car comes to the traffic light, the object(car) decides whether it's green or red light. Object can move only straight, they doesn't have to turn. for a better understanding I attach a video of how it can work
  6 Comments
Rik
Rik on 17 Mar 2020
Do things step by step. How are you going to draw this in Matlab? You can make it from scratch, but you could also simply load the image. I would suggest having a separate image for a car, which you could rotate to have a car for the other road. If you then add the image of the car to an axes with the image function you can change the Position property to simulate the movement.
Miroslav Jiránek
Miroslav Jiránek on 18 Mar 2020
Edited: Miroslav Jiránek on 19 Mar 2020
I continued a little further. Now I face some complications which I don't know how to continue. I've already loaded the background image of the crossaroad. I also load the image of the car(only one so far) which I have successfully managed to move.
And the next question is: My vision for this project is to randomly generate cars on all 4 roads. so together there can be a maximum of 16 cars (4 for each road). can you suggest any idea how to program this?
clc
clear
I=imread('C:\Users\Miroslav\Desktop\Crossroad\cross_matl.png');
hi = imagesc(I)
hold on
car=imread('C:\Users\Miroslav\Desktop\Crossroad\blue_car3.png');
Nt=10; % Number of time steps
xval=450;
ymin=900;
ymax=-75;
Nt=500; % Number of time steps
xval=450;
ymin=900;
ymax=-75;
y=linspace(ymin,ymax,Nt);
hCar = imagesc('CData',car,'XData',[450],'YData',[y(1)])
for it=1:Nt
set(hCar,'YData',[y(it)]);
pause(0.01);
end

Sign in to comment.

Answers (0)

Categories

Find more on Migrate GUIDE Apps in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!