Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ roslaunch dynamic_biped load_robot_head.launch use_obrecc:=true enable_wrist_cam

### 3. 启动 RoboDriver
```bash
python -m robodriver.scripts.run --robot.type=leju-kuavo-teleoperate-ros1
python -m robodriver.scripts.run --robot.type=leju-kuavo-teleop-ros1
```
### 4.启动VR头显
按照乐聚官网快速开始页面说明启动VR头显,进入VR控制软件按照操作控制机器人
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -316,6 +316,10 @@ def images_recv(self, msg, event_id, width, height, encoding="jpeg"):
frame = cv2.cvtColor(frame, cv2.COLOR_BGR2RGB)

if frame is not None:
# 修正 top 相机画面方向(当前倒置)
if event_id == "image_top":
frame = cv2.rotate(frame, cv2.ROTATE_180)

# 打印图像处理结果
#rospy.loginfo(f"Successfully decoded image {event_id}: shape={frame.shape}, dtype={frame.dtype}")

Expand Down