mirror of
https://github.com/luckyrobots/open_phantom.git
synced 2025-04-03 10:32:19 +00:00
add todos
This commit is contained in:
parent
4596862692
commit
1e6722ae44
@ -1,10 +1,13 @@
|
||||
import os
|
||||
|
||||
from hand_processor import HandProcessor
|
||||
from process_hand import ProcessHand
|
||||
from robot_manager import RobotManager
|
||||
|
||||
# TODO: Move record_video and process_video here
|
||||
|
||||
|
||||
def main():
|
||||
processor = HandProcessor()
|
||||
def main() -> None:
|
||||
processor = ProcessHand()
|
||||
|
||||
record_option = input("Record a new video? (y/n): ")
|
||||
|
||||
|
@ -1,8 +1,8 @@
|
||||
import os
|
||||
|
||||
import cv2
|
||||
import numpy as np
|
||||
import pybullet as p
|
||||
|
||||
from utils.handle_urdf import handle_urdf
|
||||
|
||||
|
||||
@ -21,7 +21,7 @@ class RobotManager:
|
||||
self.img_width = int(self.cx * 2)
|
||||
self.img_height = int(self.cy * 2)
|
||||
|
||||
# Load the robot URDF into PyBullet
|
||||
# Load robot URDF into PyBullet
|
||||
def _load_robot(self, robot_urdf: str) -> int:
|
||||
try:
|
||||
robot_id = p.loadURDF(
|
||||
@ -67,7 +67,7 @@ class RobotManager:
|
||||
pass
|
||||
|
||||
# Render the robot in some scene using some camera parameters
|
||||
def render_robot(self, bg_image=None, camera_params=None):
|
||||
def render_robot(self, bg_image=None, camera_params=None) -> np.ndarray:
|
||||
assert self.robot_id >= 0, "Robot not properly loaded"
|
||||
|
||||
# Set up camera parameters
|
||||
|
@ -81,7 +81,7 @@ def handle_urdf(urdf_path: str) -> str:
|
||||
print(f"Invalid URDF path: {urdf_path}")
|
||||
return None
|
||||
|
||||
# FIXME: Add check to see if URDF needs to be processed
|
||||
# TODO: Add check to see if URDF needs to be processed
|
||||
|
||||
try:
|
||||
urdf_dir = os.path.dirname(urdf_path)
|
||||
|
Loading…
x
Reference in New Issue
Block a user