mirror of
https://github.com/luckyrobots/open_phantom.git
synced 2025-04-04 02:52:18 +00:00
33 lines
978 B
Python
33 lines
978 B
Python
import os
|
|
|
|
from phantom.hand_processor import HandProcessor
|
|
|
|
|
|
def main():
|
|
processor = HandProcessor()
|
|
|
|
record_option = input("Record a new video? (y/n): ")
|
|
|
|
if record_option.lower() == 'y':
|
|
print("Starting video recording...")
|
|
video_path = processor.record_video()
|
|
if not video_path:
|
|
print("Video recording failed.")
|
|
return
|
|
|
|
print(f"Video recorded successfully to {video_path}")
|
|
process_option = input("Process the video now? (y/n): ")
|
|
if process_option.lower() == "n":
|
|
print("Video processing skipped.")
|
|
return
|
|
else:
|
|
video_path = input("Enter the path to a video file: ")
|
|
while not os.path.exists(video_path):
|
|
print("Error: Video file not found.")
|
|
video_path = input("Enter the path to the video file: ")
|
|
|
|
processor.process_video(video_path)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main() |