R-CNN Series of Object Detection Networks

R-CNN Series of Object Detection Networks

R-CNN series object detection networks are the first series of networks in the field of object detection using deep learning, serving as a typical Two-Stage object detection network. This series includes R-CNN, Fast R-CNN, and Faster R-CNN, and as their names suggest, each generation is faster than the previous one, primarily because the characteristic of … Read more

Faster R-CNN Model and Deep Learning Environment Setup

Faster R-CNN Model and Deep Learning Environment Setup

1. Faster R-CNN Model The R-CNN series networks are the most classic networks in the field of object detection, and their model update ideas are easy to understand. The object detection process is divided into three stages: candidate box generation, feature extraction, classification, and regression. R-CNN is a detection network assembled from many modules, where … Read more

Introduction to Mask R-CNN Network

Introduction to Mask R-CNN Network

Paper Title: Mask R-CNNPaper Download Link: https://arxiv.org/abs/1703.06870 Before reading this blog post, you need to understand Faster R-CNN, FPN, and FCN. Faster R-CNN Video Explanation: https://www.bilibili.com/video/BV1af4y1m7iL?p=3 FPN Video Explanation: https://www.bilibili.com/video/BV1dh411U7D9 FCN Video Explanation: https://www.bilibili.com/video/BV1J3411C7zd Table of Contents 0 Introduction 1 Mask R-CNN 2 RoI Align 2.1 RoIPool Experiment 2.2 RoIAlign Experiment 3 Mask Branch (FCN) … Read more

Fire Detection System Based on Faster R-CNN

Fire Detection System Based on Faster R-CNN

Table of Contents 1. System Overview 2. System Simulation Effect Preview 3. Core Code 4. Complete Project Acquisition 1. System Overview Faster R-CNN is a deep learning object detection algorithm based on Region Proposal Network (RPN) and Fast R-CNN. This algorithm consists mainly of two parts: the RPN network and the Fast R-CNN network. The … Read more