mirror of
https://github.com/luckyrobots/open_phantom.git
synced 2025-04-04 02:52:18 +00:00
add todos
This commit is contained in:
parent
4596862692
commit
1e6722ae44
@ -1,10 +1,13 @@
|
|||||||
import os
|
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():
|
def main() -> None:
|
||||||
processor = HandProcessor()
|
processor = ProcessHand()
|
||||||
|
|
||||||
record_option = input("Record a new video? (y/n): ")
|
record_option = input("Record a new video? (y/n): ")
|
||||||
|
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
import os
|
import os
|
||||||
|
|
||||||
import cv2
|
import cv2
|
||||||
import numpy as np
|
import numpy as np
|
||||||
import pybullet as p
|
import pybullet as p
|
||||||
|
|
||||||
from utils.handle_urdf import handle_urdf
|
from utils.handle_urdf import handle_urdf
|
||||||
|
|
||||||
|
|
||||||
@ -21,7 +21,7 @@ class RobotManager:
|
|||||||
self.img_width = int(self.cx * 2)
|
self.img_width = int(self.cx * 2)
|
||||||
self.img_height = int(self.cy * 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:
|
def _load_robot(self, robot_urdf: str) -> int:
|
||||||
try:
|
try:
|
||||||
robot_id = p.loadURDF(
|
robot_id = p.loadURDF(
|
||||||
@ -67,7 +67,7 @@ class RobotManager:
|
|||||||
pass
|
pass
|
||||||
|
|
||||||
# Render the robot in some scene using some camera parameters
|
# 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"
|
assert self.robot_id >= 0, "Robot not properly loaded"
|
||||||
|
|
||||||
# Set up camera parameters
|
# Set up camera parameters
|
||||||
|
@ -81,7 +81,7 @@ def handle_urdf(urdf_path: str) -> str:
|
|||||||
print(f"Invalid URDF path: {urdf_path}")
|
print(f"Invalid URDF path: {urdf_path}")
|
||||||
return None
|
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:
|
try:
|
||||||
urdf_dir = os.path.dirname(urdf_path)
|
urdf_dir = os.path.dirname(urdf_path)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user