Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
computer_science:computer_vision:opencv:object_identification_tensorflow_opencv_imageai_yolo [2020/08/07 15:40] – carlossousa | computer_science:computer_vision:opencv:object_identification_tensorflow_opencv_imageai_yolo [2024/08/16 12:53] (current) – removed carlossousa | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Object Detection with Tensorflow, OpenCV, ImageAI and YOLO ====== | ||
- | |||
- | ===== Requirements: | ||
- | |||
- | Be sure to have the [[: | ||
- | |||
- | ===== The Code: ===== | ||
- | |||
- | ==== Initialize the libraries ==== | ||
- | |||
- | <code python> | ||
- | import cv2 as cv #Loads ComputerVision / OpenCV | ||
- | from imageai.Detection import ObjectDetection as od # Loads ImageAI | ||
- | |||
- | import numpy as np # Imports NumPY | ||
- | import requests as req # Imports Requests | ||
- | import os as os # Imports OS Module | ||
- | |||
- | </ | ||
- | |||
- | ===== ===== | ||
- | |||
- | ===== External References: ===== | ||
- | |||
- | [[https:// | ||
- | |||