DSatishchandra commited on
Commit
8beba45
Β·
verified Β·
1 Parent(s): 70fc7f9

Update services/video_service.py

Browse files
Files changed (1) hide show
  1. services/video_service.py +3 -3
services/video_service.py CHANGED
@@ -16,14 +16,14 @@ class VideoService:
16
  cap.release()
17
  return frames
18
 
19
- def frame_to_pil(self, frame):
20
  try:
21
- frame_rgb = cv2.cvtColor(frame, cv2.COLOR_BGR2RGB)
22
  pil_image = Image.fromarray(frame_rgb)
23
- return pil_image
24
  except Exception as e:
25
  print(f"[Error] frame_to_pil conversion failed: {e}")
26
  return None
 
27
 
28
 
29
  def draw_detections(self, frame, detections):
 
16
  cap.release()
17
  return frames
18
 
19
+ def frame_to_pil(self,frame)
20
  try:
21
+ frame_rgb= cv2.cvtColor(frame, cv2.COLOR_BGR2RGB)
22
  pil_image = Image.fromarray(frame_rgb)
 
23
  except Exception as e:
24
  print(f"[Error] frame_to_pil conversion failed: {e}")
25
  return None
26
+
27
 
28
 
29
  def draw_detections(self, frame, detections):