Eran Feit Blog posts

YOLOv8 Custom Object Detection: Full Code Walkthrough

yolov8 custom object detection

Object detection becomes truly powerful when the model understands your world instead of just COCO-style benchmarks. That’s where yolov8 custom object detection comes in. Instead of detecting generic categories like dogs or cars, you fine-tune YOLOv8 on your own dataset, with your own labels, and tailor the model to a specific domain such as ships […]

YOLOv8 Custom Object Detection: Full Code Walkthrough Read More »

How to Train YOLOv8 Object Detection on a Custom Dataset : Cards detection

Cards detection

When you train YOLOv8 on custom dataset, you turn a general-purpose object detector into a specialist that understands exactly the objects you care about.Instead of relying on COCO’s people, cars, and dogs, you can teach YOLOv8 to recognise things like playing cards, medical instruments, or products on a shelf with high speed and accuracy. The

How to Train YOLOv8 Object Detection on a Custom Dataset : Cards detection Read More »

YouTube Stream Frame Extraction and Real-Time YOLOv8 Detection

object detection from youtube video

Master the art of YouTube stream frame extraction for real-time computer vision projects. In this tutorial, we will dive deep into how to efficiently pull live video data from YouTube and process it through a YOLOv8 model. Whether you are building a live sports analytics tool or a traffic monitoring system, high-speed YouTube stream frame

YouTube Stream Frame Extraction and Real-Time YOLOv8 Detection Read More »

How to build yolov8 dental object detection model

yolov8 dental x-ray object detection

Getting started with YOLOv8 dental object detection In modern dentistry, X-rays are no longer just static images on a screen. With yolov8 dental object detection, those images can be transformed into structured data that highlights teeth, restorations, lesions, and other findings automatically. Instead of manually scanning every millimeter of a radiograph, a trained YOLOv8 model

How to build yolov8 dental object detection model Read More »

EigenCAM YOLOv5 Explained: Understanding What YOLOv5 Sees

EigenCAM

This tutorial focuses on EigenCAM YOLOv5 integration to reveal which image regions influence YOLOv5 object detection decisions. EigenCAM allows us to understand what parts of an image YOLOv5 relies on when detecting objects.Instead of treating the model as a black box, we can generate heatmaps that highlight the regions influencing each prediction. In this tutorial

EigenCAM YOLOv5 Explained: Understanding What YOLOv5 Sees Read More »

Getting Started with YOLOX for Object Detection

YoloX Object Detection

Getting to know YOLOX for modern object detection YOLOX is a high-performance object detection model that builds on the YOLO family while rethinking some of its core design choices. Instead of relying on predefined anchor boxes, YOLOX uses an anchor-free approach, which simplifies the detection head and makes training and deployment easier in real-world projects.

Getting Started with YOLOX for Object Detection Read More »

How to Use Detr for Smart Bone Fracture Detection

Detr for Smart Bone Fracture Detection

Getting to know Detr for smarter object detection Detr (DEtection TRansformer) is a modern approach to object detection that replaces many of the hand-crafted tricks in classic detectors with a clean, transformer-based design. Instead of relying on anchors, custom assignment rules, and complex post-processing, Detr treats detection as a direct set prediction problem: given an

How to Use Detr for Smart Bone Fracture Detection Read More »

How to Train Detectron2 on Custom Object Detection Data

Detectron2

Getting started with Detectron2 custom dataset training Training a model to recognize specific objects is the core of modern computer vision, and Detectron2 custom dataset training is the industry-standard way to achieve it. Whether you are building a system to detect defects in manufacturing or identifying fruit types in an orchard, moving from generic pre-trained

How to Train Detectron2 on Custom Object Detection Data Read More »

Eran Feit