add todos

This commit is contained in:
Ethan Clark 2025-03-24 15:18:09 -07:00
parent 4596862692
commit 1e6722ae44
3 changed files with 10 additions and 7 deletions

View File

@ -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): ")

View File

@ -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

View File

@ -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)