pytorch uses the detectron2 model library model to train its own data

I. application scenario In x86 (Ubuntu 18.04) cpu, in pytorch1.0 10 framework, using the detectron2 model base model to train their own data sets, and carry out target detection reasoning. II. Environment configuration My environment is: pytorch==1.10+cpu torchvision==0.11.2+cpu detectron2==0.6 opencv==4.5.5 1. Basic environment ...

Added by Huntress on Fri, 04 Mar 2022 10:55:06 +0200

Analysis of PointRCNN point cloud detection model

1. Foreword At present, the common methods of point cloud detection are 1. The point cloud is divided into voxels for detection. Typical models include VoxelNet, SECOND, etc; However, Dr. Shi, the author of this paper, proposed that this method will cause quantitative information loss. 2. Project the point cloud to the front view or aerial v ...

Added by Danno13 on Thu, 03 Mar 2022 06:36:16 +0200

Construction of swin transformer target detection environment under Windows 10 system

preface I just got it in the pit. I just got it again. Step 1 of CV: start from environment construction! 1. Environmental preparation (1) Install Visual Studio You need to use C + + to install the compilation library, so you need to install Microsoft Visual Studio. The most common version is 2019. The latest 2022 version should also b ...

Added by zoooj on Wed, 02 Mar 2022 10:52:58 +0200

Target detection algorithm -- Interpretation of YOLOv1

I believe that students who study algorithms will learn yoov1 algorithm when they are just getting started with target detection. After all, it is the beginning of YOLO algorithm. Of course, in order to take notes, they will do it directly on this blog for your reference and study. Next, I will share the knowledge required for the implementatio ...

Added by mikeym on Wed, 23 Feb 2022 03:51:43 +0200

[YOLOv3] teach you how to build a car detector

This article will take you to build a car detector, using the algorithm of PyTorch version of YOLOV3. We will not explain the details of the algorithm, but focus on how to implement our own car detector, mainly including data download, data cleaning, data set production, training and detection (image detection, video detection). Even if you don ...

Added by stageguys on Fri, 18 Feb 2022 03:33:12 +0200

VOC data sets and COCO data sets are directly converted to each other

Conversion between VOC dataset (xml format) and COCO dataset (json format) Let's first look at the directory structure of voc and coco datasets: Take the VOC2012 dataset as an example, there are five folders below: The Annotations folder is the XML file corresponding to the image. For example, "2007_000027.xml" stores the informatio ...

Added by gorgo666 on Thu, 17 Feb 2022 16:10:03 +0200

Pytorch: Target Detection Network-FPN

Pytorch: Target Detection-Feature Pyramid-FPN Copyright: Jingmin Wei, Pattern Recognition and Intelligent System, School of Artificial and Intelligence, Huazhong University of Science and Technology Pytorch Tutorial Column Link This tutorial is not commercial and is only for learning and reference exchange. If you need to reproduce it, ...

Added by magicmoose on Wed, 16 Feb 2022 19:24:48 +0200

Tennis target detection -- Based on Python opencv

1. Problem description This paper realizes the real-time detection of the tennis ball in the image by reading the image taken by the camera, calculating its distance and determining its orientation. The core problem is how to detect tennis from the picture taken by the camera and eliminate interference items. In addition, in order to apply thi ...

Added by funkdrm on Tue, 08 Feb 2022 19:27:01 +0200

Introduction to detectron2 learning 2: realize the conversion between Mask and coco format of FruitsNut fruit and nut segmentation task data set

Learning objectives: Convert the data set into Mask, coco annotation and other different formats 1, The coco annotation and Mask of a single instance are converted to each other: There are many ways of mask conversion. One mask is generated for each instance or one mask is generated for each picture. For beginners, it is better to use the ...

Added by secret007 on Sat, 05 Feb 2022 04:02:13 +0200

Introduction to machine learning for programmers - object recognition YOLO - recognition of face position and whether to wear a mask

Introduction to machine learning for programmers (XI) - object recognition YOLO - recognition of face position and whether to wear a mask This article will introduce the most popular object recognition model YOLO. YOLO is characterized by fast recognition speed 🤗, However, the accuracy is only a little worse than that of fast RCNN (after YOL ...

Added by terfle on Wed, 02 Feb 2022 20:37:24 +0200