out = cv2.VideoWriter("output_video.mp4", cv2.VideoWriter_fourcc(*"mp4v"), 30, (frame.shape[1], frame.shape[0])) while video.isOpened(): ret, frame = video.read() if not ret: break results = model(frame) for box in results.boxes: x1, y1, x2, y2, conf, cls = box.xyxy[0], box.conf, box.cls label = f"{results.names[int(cls)]} {conf:.2f}" cv2.rectangle(frame, (int(x1), int(y1)), (int(x2), int(y2)), (0, 255, 0), 2) cv2.putText(frame, label, (int(x1), int(y1) - 10), cv2.FONT_HERSHEY_SIMPLEX, 0.5, (255, 255, 255), 2) out.write(frame) video.release() out.release() out = cv2.VideoWriter("output_video.mp4", cv2.VideoWriter_fourcc(*"mp4v"), 30, (frame.shape[1], frame.shape[0])) while video.isOpened(): ret, frame = video.read() if not ret: break results = model(frame) for box in results.boxes: x1, y1, x2, y2, conf, cls = box.xyxy[0], box.conf, box.cls label = f"{results.names[int(cls)]} {conf:.2f}" cv2.rectangle(frame, (int(x1), int(y1)), (int(x2), int(y2)), (0, 255, 0), 2) cv2.putText(frame, label, (int(x1), int(y1) - 10), cv2.FONT_HERSHEY_SIMPLEX, 0.5, (255, 255, 255), 2) out.write(frame) video.release() out.release()
top of page
Good_Food_Display_-_NCI_Visuals_Online.jpg

ΚΑΤΗΓΟΡΙΕΣ ΤΡΟΦΙΜΩΝ

FoodMeat.jpg

ΚΡΕΑΣ

Don Francis

This is your Team Member description. Use this space to write a brief description of this person’s role and responsibilities, or add a short bio.

  • Facebook
  • Twitter
  • LinkedIn
Good_Food_Display_-_NCI_Visuals_Online.jpg

ΠΡΟΪΟΝΤΑ ΚΡΕΑΤΟΣ

Ashley Jones

This is your Team Member description. Use this space to write a brief description of this person’s role and responsibilities, or add a short bio.

  • Facebook
  • Twitter
  • LinkedIn
FoodMeat.jpg

Office Manager

Tess Brown

This is your Team Member description. Use this space to write a brief description of this person’s role and responsibilities, or add a short bio.

  • Facebook
  • Twitter
  • LinkedIn
FoodMeat.jpg

Product Manager

Lisa Rose

This is your Team Member description. Use this space to write a brief description of this person’s role and responsibilities, or add a short bio.

  • Facebook
  • Twitter
  • LinkedIn
FoodMeat.jpg

HR Lead

Kevin Nye

This is your Team Member description. Use this space to write a brief description of this person’s role and responsibilities, or add a short bio.

  • Facebook
  • Twitter
  • LinkedIn
FoodMeat.jpg

Customer Support Lead

Alex Young

This is your Team Member description. Use this space to write a brief description of this person’s role and responsibilities, or add a short bio.

  • Facebook
  • Twitter
  • LinkedIn
FoodMeat.jpg

QA Specialist

Andrew Cole

This is your Team Member description. Use this space to write a brief description of this person’s role and responsibilities, or add a short bio.

  • Facebook
  • Twitter
  • LinkedIn
FoodMeat.jpg

Content Strategist

Debbie Green

This is your Team Member description. Use this space to write a brief description of this person’s role and responsibilities, or add a short bio.

  • Facebook
  • Twitter
  • LinkedIn
FoodMeat.jpg

Product Manager

Alissa Rose

This is your Team Member description. Use this space to write a brief description of this person’s role and responsibilities, or add a short bio.

  • Facebook
  • Twitter
  • LinkedIn

Apply Today

This is a Paragraph. Click on "Edit Text" or double click on the text box to start editing the content.

123-456-7890

Βεβαιώστε  αποδοχή  της πολιτικής απορρήτου και των όρων χρήσης 

ΑΠΟΔΟΧΗ
ΑΠΟΡΡΙΨΗ

Ο Ιστότοπος δεν έχει επαγγελματικό / εμπορικό χαρακτήρα -

Δεν φιλοξενεί  διαφημίσεις 

bottom of page
out = cv2.VideoWriter("output_video.mp4", cv2.VideoWriter_fourcc(*"mp4v"), 30, (frame.shape[1], frame.shape[0])) while video.isOpened(): ret, frame = video.read() if not ret: break results = model(frame) for box in results.boxes: x1, y1, x2, y2, conf, cls = box.xyxy[0], box.conf, box.cls label = f"{results.names[int(cls)]} {conf:.2f}" cv2.rectangle(frame, (int(x1), int(y1)), (int(x2), int(y2)), (0, 255, 0), 2) cv2.putText(frame, label, (int(x1), int(y1) - 10), cv2.FONT_HERSHEY_SIMPLEX, 0.5, (255, 255, 255), 2) out.write(frame) video.release() out.release()