Skip to content

Commit 68fd8aa

Browse files
authored
lab_11 hotfix
1 parent 6e8f973 commit 68fd8aa

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

src/2_labs/text/11_lab.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ The robot’s goal is to **detect the markers, interpret their meaning, and use
5353
In the first part of the lab, you will implement a ROS 2 node (`CameraNode`) that subscribes to a camera image stream, converts the received image into OpenCV format, and detects ArUco markers.
5454

5555
You are provided with a partial implementation of the `ArucoDetector` class. Your task is to complete this class and integrate it into your ROS node.
56+
5657
----------------------------------------------------------------------------------------------
5758
**TASK 1 – Camera Subscription and Marker Detection**
5859

@@ -128,12 +129,12 @@ In the second part of the lab, you will design logic that interprets the detecte
128129

129130
As illustrated in Figure 1, each instruction obtained from an ArUco marker is **always intended for the next upcoming intersection**. The robot must remember the marker’s content and apply it at the first junction it encounters after reading the marker.
130131

131-
<p id="state_machine">
132+
<p id="state_machine" align="center">
132133
<img src="../images/lab11_maze_example.png" alt="Maze with ArUco hints and decision points" width="450" height="600">
133-
</p>
134-
<p>
134+
</p align="center">
135+
<p align="center">
135136
<em> Figure 1: Example of decision-making using ArUco markers in a maze.</em>
136-
</p>
137+
</p align="center">
137138

138139
----------------------------------------------------------------------------------------------
139140
**TASK 2 - Maze Logic and Decision Making**

0 commit comments

Comments
 (0)