Object Detection with TensorFlow
Abstract
Section titled “Abstract”Object Detection with TensorFlow is a Python project that uses TensorFlow to detect objects in images. The application features image processing, model training, and a CLI interface, demonstrating best practices in computer vision and AI.
Prerequisites
Section titled “Prerequisites”- Python 3.8 or above
- A code editor or IDE
- Basic understanding of deep learning and computer vision
- Required libraries:
tensorflow,numpy,opencv-python
Before you Start
Section titled “Before you Start”Install Python and the required libraries:
pip install tensorflow numpy opencv-pythonGetting Started
Section titled “Getting Started”Create a Project
Section titled “Create a Project”- Create a folder named
object-detection-tensorflow. - Open the folder in your code editor or IDE.
- Create a file named
object_detection_tensorflow.py. - Copy the code below into your file.
Write the Code
Section titled “Write the Code”Object Detection with TensorFlow
pch.viewSource"""
Object Detection with TensorFlow
A full object detection pipeline using TensorFlow and pre-trained models. Includes image loading, detection, visualization, and CLI for batch processing.
"""
import tensorflow as tf
import numpy as np
import cv2
import argparse
import os
# Load pre-trained model (SSD MobileNet)
def load_model():
model = tf.saved_model.load('ssd_mobilenet_v2_fpnlite_320x320/saved_model')
return model
def detect_objects(model, image_path):
img = cv2.imread(image_path)
input_tensor = tf.convert_to_tensor(img)
input_tensor = input_tensor[tf.newaxis, ...]
detections = model(input_tensor)
boxes = detections['detection_boxes'][0].numpy()
scores = detections['detection_scores'][0].numpy()
classes = detections['detection_classes'][0].numpy().astype(np.int32)
h, w, _ = img.shape
for i in range(len(scores)):
if scores[i] > 0.5:
box = boxes[i]
y1, x1, y2, x2 = box
cv2.rectangle(img, (int(x1*w), int(y1*h)), (int(x2*w), int(y2*h)), (0,255,0), 2)
cv2.putText(img, str(classes[i]), (int(x1*w), int(y1*h)-10), cv2.FONT_HERSHEY_SIMPLEX, 0.9, (255,0,0), 2)
show_or_save('Object Detection', img)
wait_or_skip(0)
cv2.destroyAllWindows() if "--show" in __import__("sys").argv else None
def main():
parser = argparse.ArgumentParser(description="Object Detection with TensorFlow")
parser.add_argument('--image', type=str, help='Path to image file')
args = parser.parse_args()
model = load_model()
detect_objects(model, args.image)
def wait_or_skip(delay=0):
"""cv2.waitKey needs a window; without one it raises. Skip it instead."""
import sys
if "--show" in sys.argv:
return cv2.waitKey(delay)
return -1
def show_or_save(title, image, _counter=[0]):
"""Display the frame, or write it to a file when no window is available.
Headless OpenCV has no GUI at all, and even a full build cannot open a
window over SSH or inside a container. Falling back to a file keeps the
project runnable everywhere and leaves something to look at afterwards.
"""
import os
import re as _re
if "--show" in __import__("sys").argv:
cv2.imshow(title, image)
return None
_counter[0] += 1
stem = _re.sub(r"\W+", "_", title).strip("_").lower() or "frame"
name = f"{stem}.png" if _counter[0] == 1 else f"{stem}_{_counter[0]}.png"
cv2.imwrite(name, image)
print(f"saved {name} ({os.path.getsize(name):,} bytes)")
return name
if __name__ == "__main__":
main() Example Usage
Section titled “Example Usage”python object_detection_tensorflow.pyHow it fits together
Section titled “How it fits together”Read from the top: this is what runs when you execute the file, and which function calls which. It is generated from the code, so it cannot drift from it.
flowchart TD
RUN(["python object_detection_tensorflow.py"])
load_model("load_model")
detect_objects("detect_objects")
main("main")
wait_or_skip("wait_or_skip")
show_or_save("show_or_save")
RUN --> main
detect_objects --> show_or_save
detect_objects --> wait_or_skip
main --> detect_objects
main --> load_model
Explanation
Section titled “Explanation”Key Features
Section titled “Key Features”- Object Detection: Detects objects in images using TensorFlow.
- Image Processing: Prepares images for detection.
- Error Handling: Validates inputs and manages exceptions.
- CLI Interface: Interactive command-line usage.
Code Breakdown
Section titled “Code Breakdown”- What it imports (lines 6–10)
import tensorflow as tf
import numpy as np
import cv2
import argparse
import osload_model— the function (lines 13–15)
def load_model():
model = tf.saved_model.load('ssd_mobilenet_v2_fpnlite_320x320/saved_model')
return modeldetect_objects— the function (lines 17–34)
def detect_objects(model, image_path):
img = cv2.imread(image_path)
input_tensor = tf.convert_to_tensor(img)
input_tensor = input_tensor[tf.newaxis, ...]
detections = model(input_tensor)
boxes = detections['detection_boxes'][0].numpy()
scores = detections['detection_scores'][0].numpy()
classes = detections['detection_classes'][0].numpy().astype(np.int32)
h, w, _ = img.shape
for i in range(len(scores)):
if scores[i] > 0.5:
box = boxes[i]
y1, x1, y2, x2 = box
cv2.rectangle(img, (int(x1*w), int(y1*h)), (int(x2*w), int(y2*h)), (0,255,0), 2)
cv2.putText(img, str(classes[i]), (int(x1*w), int(y1*h)-10), cv2.FONT_HERSHEY_SIMPLEX, 0.9, (255,0,0), 2)
cv2.imshow('Object Detection', img)
cv2.waitKey(0)
cv2.destroyAllWindows()main— the function (lines 36–41)
def main():
parser = argparse.ArgumentParser(description="Object Detection with TensorFlow")
parser.add_argument('--image', type=str, help='Path to image file')
args = parser.parse_args()
model = load_model()
detect_objects(model, args.image)The file defines 3 top-level symbols in all; the whole thing is above under Write the Code.
Features
Section titled “Features”- Object Detection: TensorFlow and image processing
- Modular Design: Separate functions for each task
- Error Handling: Manages invalid inputs and exceptions
- Production-Ready: Scalable and maintainable code
Next Steps
Section titled “Next Steps”Enhance the project by:
- Integrating with real object datasets
- Supporting advanced detection algorithms
- Creating a GUI for detection
- Adding real-time detection
- Unit testing for reliability
Educational Value
Section titled “Educational Value”This project teaches:
- Computer Vision: Object detection and deep learning
- Software Design: Modular, maintainable code
- Error Handling: Writing robust Python code
Real-World Applications
Section titled “Real-World Applications”- Security Systems
- AI Platforms
- Robotics
Conclusion
Section titled “Conclusion”Object Detection with TensorFlow demonstrates how to build a scalable and accurate object detection tool using Python. With modular design and extensibility, this project can be adapted for real-world applications in AI, robotics, and more. For more advanced projects, visit Python Central Hub.
pch.coffeeTagline
pch.coffeeCtapch.feedbackHeading
pch.feedbackSubheading