This repository collects examples and resources in which Object Detection and Semantic Segmentation are applied to images with Pytorch and Tensorflow — yes, Tensorflow too, even though the repository name contains only pytorch
.
- This is an on-going project; I will extend the content as far as I have time for it.
- In some cases, I will use the code from other public tutorials/posts rightfully citing the source.
- In addition to the examples, the links in the section Interesting Links are very useful resources for those interested in the topic.
Probably the most known application of Convolutional Neural Networks is Image Classification: an image is convoluted with several trained filters to output a vector of N
values; each value is a float between 0
and 1
and it denotes the probability of the image containing one of the pre-defined N
classes of objects.
However, there are also CNN architectures and methods that target other applications:
- Object Detection: given an image and a predefined set of
N
classes, we obtain the bounding boxes (typically[x,y,w,h]
vectors) that enclose known object classes, and for each bounding box, a vector of lengthN
which determines the probabilities of each class, as in image classification. - Semantic Segmentation: given an image and a predefined set of
N
classes, we obtain theN
class probabilities for each pixel; i.e., we can segment regions in the images.
The following figure illustrates the difference between the three techniques:
As mentioned, this repository collects practical examples that target the last two applications.
- Beyond Image Classification: Object Detection and Semantic Segmentation with Pytorch and Tensorflow
- Go to the desired example folder from the section List of Examples + Description Points. You should have brief instructions in each folder.
- If there is an
Open in Colab
button anywhere, you can use it 😄. - If you'd like to run the code locally on your device install the dependencies and run the main file in it; often, the main file will be a notebook that takes care of all.
You should create a python environment (e.g., with conda) and install the dependencies listed in the requirements.txt file of each example. If there is no such file in a folder example, the one in the root level should work.
A short summary of commands required to have all in place is the following; however, as mentioned, each example might have its own specific dependency versions:
conda create -n det-seg python=3.6
conda activate det-seg
conda install pytorch torchvision -c pytorch
conda install pip
pip install -r requirements.txt
In this section, I provide some high level notes on the theory behind the object detection networks; for more details, check the articles listed in the literature folder.
Object detection networks can use classification backbones to extract features, but at the end of the feature extractor, instead of mapping the activations to classes, they perform a more sophisticated tasks, with which they basically:
- regress Regions of Interest (ROI), i.e., bounding boxes, that likely contain an object
- and yield class probabilities for those bounding boxes.
A naive implementation could add two branches to the feature maps: one for regressing the [x,y,w,h]
floats of the bounding box and another one for mapping the features to the class probabilities. However, that allows a unique object to be detected in the image; thus, more sophisticated architectures are needed, which nonetheless, are based on that double mapping principle.
Nevertheless, note that bounding box regression could be applied in a clever way so that we handle the regression for several objects.
Another easy way to convert any pre-trained CNN (or any classifier, really) into an object detection model consists in using image pyramids and sliding windows. The first allow for a multi-scale representation on which ROIs of different sizes are slided; for each captured image patch, a classifier is run (a CNN, linear SVM, etc.). In practice, it is as if we slided many boxes of differenyt sizes on the image and as if we run the CNN/classifier on each of the windows.
As the window gets closer to a learned object, the probabilities increase; up from a threshold, we take the proposal as valid. This approach is similar to what is done by HOG, Histogram Oriented Gradients or Haar Cascades.
When we use sliding windows, end up with many overlapping regions. We can collapse all these ROIs with non-maximal supression applied class-wise (see explanation in the YOLO section).
This approach is a first approximation with which we can convert any classification network to be an object detection network; however, the resulting model has important limitations:
- It is very slow: we need to generate many image patches and run the classifierin all of them.
- It is constrained to the chosen window size/shape; that could be extended, but we'd require much more time.
- Bouding box locations are not accurate.
- The network is not end-to-end trainable: we train the classifier, but the bounding box detection algorithm is not trained!
For more information, check this PyImageSearch blog post.
One type of architecture for object detection is Region-CNN, or R-CNN; there are several versions of it, but the one typically used (due to its performance) is the Faster R-CNN.
The Faster R-CNN network has the following steps:
- The image is convoluted until a given layer, which produces a set of feature maps.
- We feed the feature maps to a separate network which predicts possible ROIs: these are called Region Proposal Networks; if edges or other relevant features have been detected, ROIs that enclose them will emerge.
- The ROI proposals are passed to the original network, which performs a quick binary check: does the ROI contain an object or not? If so, the ROI is taken.
- For each ROI, ROI pooling is performed: non-uniform cells of pooling are applied to warp the ROIs to standard sizes
- The last part of the network predicts the class of the ROI.
The main difference between the R-CNN architectures lies on the ROI detection: less efficient networks project ROIs computed after applying classical algorithms (e.g., selective search), while the Faster R-CNN uses a Region Proposal Network. Also, note that the main difference between the sliding window approach mentioned before and R-CNNs is that we effectively reduce the number of regions sent to the classifier: with sliding windows we carry out a brute force approach, whereas with R-CNNs we select the most probable regions.
Region proposal networks from Faster R-CNNs work as follows:
- A small (usually 3x3) window is slided on the feature maps.
k
anchor boxes are applied on each window. These anchor boxes are pre-defined boxes with different aspect ratios.- For each
k
boxes in each window, the probability of it containing an object is measured. If it's higher than a threshold, the anchor box is suggested as a ROI.
During training, the ground truth is given by the real bounding box: if the suggested ROI overlaps considerably with a true bounding box, the suggestion is correct.
The following image gives an overview of the major steps in Faster R-CNN:
The metric used in object detection to evaluate the quality of the bounding boxes is the intersection over union or IOU ratio, computed with the intersection and union areas of the predicted and ground truth bounding boxes. Ideally, the value should be 1.
More information: PyImageSeearch: Intersection over Union.
Two important alternatives to Faster R-CNN are:
- YOLO: You Only Look Once
- SSD: Single Shot Detection
YOLO works in realtime; it prioritizes fast object detection and it can be used in applications such like self-driving cars.
YOLO achieves that speed with the the following properties:
- We don't have a sliding window, but the image is tesselated in a grid and each cell is analyzed.
- The regression and classification problems are united into a simultaneous regression.
In other words, we predict for each cell (i,j)
in the grid the following vector:
g_ij = [p_c, c_1, c_2, c_3, x, y, w, h]
, where
p_c = [0,1]
: probability of the box of containing an object (objectness).c_1, c_2, c_3
: probabilities of the object being of class 1, 2, 3; the number of classes varies depending on the problem definition.x, y, w, h
: location and size of the bounding box.
Only bounding box and class values of cells that have high p_c
values are considered; additionally, during training p_c = 1
if and only if the cell contains the center of the ground truth object.
This approach yields many bounding box candidates for the same object, which come from adjacent grid cells. In order to filter them, Non-Maximal Supression is used; that works with the following steps:
- Go through all cells and take the ones which have
p_c > nms_thres = 0.6
(or a value of choice). - Take the cell with the largest
p_c
. - Compute the IoUs of the other bounding boxes with respect to the one with the largest
p_c
. - Remove all bounding boxes which have a high IoU value, e.g.,
IoU >= iou_thres = 0.4
. - Repeat from step 2 using the cells that are remaining.
More information: PyImageSearch: Non-Maximal Supression.
Note that in case two different objects overlap, this algorithm would not work, since the overlapping object would default to one. For those cases, anchor boxes are used.
Anchor boxes consider that objects of different aspect ratios can overlap in the image (e.g., person and car); to deal with that, the length of the cell vector is multiplied by the number of allowed anchor boxes; if we have two anchor boxes:
g_ij = [p_c, c_1, c_2, c_3, x, y, w, h, p_c, c_1, c_2, c_3, x, y, w, h]
The first part belongs to the first anchor box or object and the last to the second. Basically, we add channels to the original classification map.
The final YOLO v3 architecture has the following properties:
- The input size is 416 x 416 x 3
- The output size is 52 x 52 x 255
- Grid: 52 x 52
- Channels: 255; these contain the bounding box and class vectors
- There are 100+ layers!
- Most of the layers are convolutions: 3x3, 1x1; number of filters vary: 32 - 1024 and pooling is applied every 2-3 convolutions.
- There are shortcut and routing layers, too.
The examples contain also some other improved YOLO versions.
Object Detection uses as metric the mean average precision, mAP: The AP is the area under the curve of the precision-recall diagram (varying the detection threshold) for one class; the mAP is the mean across all classes:
- Precision: ratio of true positive detections to the total number of detection.
- Recall is the ratio of true positive detections to the total number of ground-truth objects.
The Intersection over Union, IOU metric is taken into account implicitly in the mAP, because we use a threshold IOU to denote whether a bounding box is a true/false positive:
- A predicted bounding box is considered a true positive if its IoU with a ground-truth bounding box is above a certain threshold (usually 0.5 or 0.75).
- If the IoU is below the threshold, the predicted bounding box is considered a false positive.
- If there are multiple predicted bounding boxes for a single ground-truth object, only the one with the highest IoU is counted as a true positive.
Object detection is often deployed in realtime applications, for which we need to be able to perform the inference fast enough. In that sense, the introduced two model families have opposing properties:
- Faster R-CNN tend to be more accurate and slower.
- YOLO models tend to be faster and less accurate, thus better suited for realtime applications. However, it seems that the recent versions beat all possible models in terms of accuracy and speed.
There is a third family of models, which is a trade-off between YOLO and Faster R-CNN: there are the Single Shot Detectors (SSD), see the literature
. These is a comparison of the 3 models done by ChatGPT:
Architecture Design:
- YOLO: YOLO uses a single neural network to perform both object localization and classification. It divides the input image into a grid and predicts bounding boxes and class probabilities for each grid cell.
- SSD: SSD also uses a single network but employs a set of predefined anchor boxes at multiple scales and aspect ratios. It predicts offsets and confidence scores for these anchor boxes at different feature maps.
- Faster R-CNN: Faster R-CNN consists of two main components: a region proposal network (RPN) that generates potential object proposals, and a separate network that performs classification and bounding box regression on these proposals.
Speed vs. Accuracy Trade-off:
- YOLO: YOLO is known for its real-time object detection capabilities due to its single-pass architecture. It sacrifices some accuracy for faster inference times.
- SSD: SSD strikes a balance between accuracy and speed by using multiple scales and aspect ratios of anchor boxes. It achieves better accuracy than YOLO but at the cost of slightly slower inference times.
- Faster R-CNN: Faster R-CNN is considered to be more accurate but slower compared to YOLO and SSD. Its two-stage approach of proposal generation and classification contributes to its higher accuracy.
Accuracy on Small Objects:
- YOLO: YOLO struggles with detecting small objects due to the fixed grid structure and loss of spatial information at the later stages of the network.
- SSD: SSD performs relatively better than YOLO in detecting small objects because of its multiple anchor boxes at different scales.
- Faster R-CNN: Faster R-CNN performs well on small objects as it utilizes the region proposal network to generate accurate object proposals.
Training Approach:
- YOLO: YOLO trains the network by optimizing both localization and classification losses directly. It considers objectiveness and class probabilities within each grid cell.
- SSD: SSD also optimizes localization and classification losses but uses default anchor boxes and matching strategies to assign ground truth objects to these anchors.
- Faster R-CNN: Faster R-CNN uses a two-stage training process. First, it trains the RPN to generate region proposals. Then, it fine-tunes the network using these proposals to perform classification and bounding box regression.
We need to consider also that we use a backbone or feature extractor in Faster R-CNN and SSD; in that sense, it is possible to choose lighter networks than the typical ResNets for the task. An option are MobileNets (see literature
), which add a 1x1
convolution after the typical 3x3
convolution, which reduces the number of parameters in the network. As a result, the models are smaller and faster — but less accurate; they are suited for deployment on edge devices.
In this section, I provide some high level notes on the theory behind the semantic segmentation networks; for more details, check the articles listed in the literature folder.
A very common architecture used for image segmentation is U-Net; the architecture was originally developed for medical applications, but quickly was adopted in other domains, such as autonomous driving. A nice introduction of the architecture is given by this blog post: UNet - Line by Line Explanation.
When we perform semantic segmentation:
- The input and output image sizes are the same.
- We determine a class for each output pixel.
In particular, the U-Net architecture is summarized as follows:
- It has an encoder-decoder pipeline, aka. contracting-expanding:
- The encoder compresses the size of the feature maps with convolution and pooling layers.
- The decoder takes the final features and upscales them to the output image (i.e., the segmentation map) using transpose convolutions.
- The different encoder/decoder stages are linked with skip connections: we pass features from the encoder levels to the equivalent decoder levels.
🚧 TBD.
Project | Method | Architecture | Framework | Inference | Training | Custom Class(es) | Multiple Instances | Annotations Done | Realtime |
---|---|---|---|---|---|---|---|---|---|
01_mask_r_cnn_fine_tuning |
Detection + Segmentation | R-CNN | Pytorch | ✔️ | ✔️ | ✔️ | ✔️ | ❌ | ❌ |
02_yolo_v3_darknet |
Detection | YOLO v3 | Darknet, Pytorch | ✔️ | ❌ | ❌ | ✔️ | ❌ | ❌ |
03_yolo_v7_tutorial |
Detection | YOLO v7 | Pytorch | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ |
05_unet_segmentation_pyimagesearch |
Segmentation | U-Net | Pytorch | ✔️ | ✔️ | ✔️ | - | ❌ | ❌ |
04/01_pretrained |
Detection | Faster R-CNN (+ ResNet / MobileNet), RetinaNet | Pytorch | ✔️ | ❌ | ❌ | ✔️ | ❌ | ❌ / ✔️ |
04/02_trained |
Detection | ResNet + Single Object Detector | Pytorch | ✔️ | ✔️ | ✔️ | ❌ | ❌ | ❌ / ✔️ |
04/03_pretrained_opencv_caffe |
Detection | SSD + MobileNet | Caffe, OpenCV | ✔️ | ❌ | ❌ | ✔️ | ❌ | ❌ / ✔️ |
04/04_pretrained_opencv_caffe_realtime |
Detection | SSD + MobileNet | Caffe, OpenCV | ✔️ | ❌ | ❌ | ✔️ | ❌ | ✔️ |
06/classifier_to_detector.ipynb |
Detection | ResNet + Sliding Window + Pyramids | Tensorflow | ✔️ | ❌ / ✔️ | ❌ / ✔️ | ❌ / ✔️ | ❌ | ❌ |
06/training_rcnn_keras.ipynb |
Detection | R-CNN: MobileNet + Selective Search | Tensorflow | ✔️ | ✔️ | ✔️ | ✔️ | ❌ | ❌ |
07/bounding_box_regression.ipynb |
Detection | VGG16 + Single Object Detector | Tensorflow | ✔️ | ✔️ | ✔️ | ❌ | ❌ | ❌ |
07/multi_class_bbox_regression.ipynb |
Detection | VGG16 + Single Object Detector | Tensorflow | ✔️ | ✔️ | ✔️ | ❌ | ❌ | ❌ |
-
- (Object) detection and segmentation of humans.
- A custom data loader is defined for segmentation and detection.
- An hybrid model is created which predicts the bounding box (Faster-RCNN) and segments the object in it (Mask-RCNN).
- We have also examples about how to:
- Use only Faster-RCNN for our custom classes
- Use another backbone for faster inferences, e.g., MobileNet insteead of the default ResNet50.
- Helper scripts are downloaded, which facilitate the training.
- Training is performed and the model evaluated.
-
- Object detection.
- A custom wrapper for YOLO-v3 is provided: a Pytorch model is created, darknet weights read and loaded into the model.
- Only inference is possible, not training.
- The COCO classes can be used only.
-
- Object detection.
- YOLOv7 trial using the code from the original paper repository.
- Main sources:
- A custom dataset is generated with the webcam and uploaded to Roboflow.
- The dataset is labelled using Roboflow web UI; three objects: ball, cup, lotion.
- The dataset is downloaded to local Windows.
- YOLO v7 model is trained (fine-tuned) on Windows + eGPU NVIDIA RTX 3060 + Pytorch.
- Weights and Biases is used to track the training.
- The trained model is exported to ONNX.
- The model (both Pytorch and ONNX) is run for online inference with webcam.
-
04_basic_object_detection_pyimagesearch
01_pretrained
- Blog post
- We can pass any image to it of any size and if there are COCO objects in it, they will be detected and a rectangle will be drawn for each of them.
- We can have several objects per image.
- Apart from the notebook, we have two implementations in scripts:
- Static images can be passed:
detect_image.py
; this is equivalent to the notebook code. - A video stream can be passed and the objects are detected in real time:
detect_realtime.py
; this is a modification of the previous file to work with video streams. The speed is not great (approximately 2.42 FPS on CPU), but is works!
- Static images can be passed:
02_trained
- Blog post
- The pre-trained ResNet50 network is used as backbone, with weights frozen.
- To the backbone, we attach two networks in parallel: one for regressing the bounding boxes, one for the classification labels.
- We assume we have only one object in an image; that's an important limitation, but the motivation of the network is educational; the model is defined and trained from-scratch using pre-trained weights of the backbone.
- A custom dataset loader is defined; it could be improved: it load all images together, but each could be opened every time we access it.
- Overall I thinks it's a nice example to see how to implement things end-to-end, but we need to be aware of the limitations:
- We have 3 custom objects, but:
- The annotations are provided already.
- The objects are quite similar to some COCO/ImageNet classes, nothing really weird: airplane, face, motorcycle.
- A custom data loader is implemented to deal with the images and the annotations; the loader could be improved by openening images only when needed.
- Only one object is detected in an image.
- We have 3 custom objects, but:
03_pretrained_opencv_caffe/
- This mini-project is similar to the project
01_pretrained
. - A pre-trained MobileNet SSD network saved as a Caffe binary is loaded with
cv2.dnn
and used for inference, without training. - The model is trained with COCO and fine-tuned with Pascal VOC (72.7% mAP); we can therefore detect 20 objects in images (+1 for the background class): airplanes, bicycles, birds, boats, bottles, buses, cars, cats, chairs, cows, dining tables, dogs, horses, motorbikes, people, potted plants, sheep, sofas, trains, tv monitors.
- We can pass any image to the loaded network and if any of the listed objects are in it, they should be detected.
- Multiple objects can be detected.
- This mini-project is similar to the project
04_pretrained_opencv_caffe_realtime
- This mini-project is the same as
03_pretrained_opencv_caffe
, but in this case the frames of a video are processed, showing the network can operate in realtime. - A pre-trained MobileNet SSD network saved as a Caffe binary is loaded with
cv2.dnn
and used for inference, without training. - 21+1 objects.
- Multiple objects can be detected.
- Realtime with video processing.
- This mini-project is the same as
-
05_unet_segmentation_pyimagesearch
- Semantic Segmentation with 1 class, i.e., binary.
- Application: Below-surface salt deposit detection vs. sediments: tgs-salt-identification-challenge.
- A custom dataset loader is defined, which optimally loads images & masks when
__getitem__()
is invoked. - A UNet architeture is defined with all its layers; very interesting implementation.
- A custom data pipeline is defined: dat aloader, tranformers, train/test split, etc.
- Training is performed with validation in each epoch.
- Predictions are done with test images and the results plotted.
- Limitations:
- We have only one class / label.
- The images are quite simple and small (128x128x1).
-
-
- Object Detection: any pre-trained classifier (e.g., a ResNet CNN) is converted into an object detector using image pyramids and sliding windows.
- This is part of a series of blog posts that show intuitively how we can go from classifiers to object detectors, ending up in a commonly used Region Proposal CNN, or R-CNN.
- This is an interesting but rather theoretical notebook; a first approach, but not a usable one.
- Limitations:
- Very slow.
- Fixed bounding box shapes/sizes.
- Not accurate bounding boxes.
- Bounding box generation cannot be trained.
-
- Example of selective search.
-
region_proposal_object_detection.ipynb
- First version of R-CNN but without proper training.
- The window sliding + pyramids part is replaced by selective search region proposals.
-
- R-CNN implementation (training + inference) on a racoon dataset:
- Build object detection dataset with Selective Search
- Take 200 images + XML
- Parse XML with BeautifulSoup
- Run selective search on each of the images
- Take the regions of the selective search and see if they overlap considerably with ground truth from XML; if so, crop image patch and save to
racoon
folder, otherwise crop image and save tono_racoon
folder
- Fine-tune classification model on created dataset
- Use the
racoon
andno_racoon
images to fine-tune a pre-trained CNN. - A final classifier with 2 outputs is added to the MobileNet.
- The backbone (MobilNet) is frozen, only the weights of the classifier are trained with the generated dataset.
- Data augmentation is used.
- Use the
- During inferene, run selective search on input image
- ROIs of the selective search are passed to the fine-tuned model.
- Predict with fine-tuned model on proposed region
- Only predictions with a high confidence (
0.99
) are taken.
- Only predictions with a high confidence (
- Apply Non-maximal Supression
- Return final object detection results
- Note: we still don't train the model to predict bounding boxes (i.e., bounding box regression, end-to-end trainable), but we take the ROIs from selective search.
- R-CNN implementation (training + inference) on a racoon dataset:
-
bounding_box_regression.ipynb
:- Very simple blog post in which a 4D regression is added to a pre-trained network (VGG) to predict the bounding box of planes on images.
- The dataset is the CALTECH-101, consisting of 800 airplane images with their bounding boxes (in a CSV).
- Limitations:
- Only one object class.
- Only one bounding box instance in the image.
multi_class_bbox_regression.ipynb
:- Equivalent to
04_basic_object_detection_pyimagesearch/02_trained
but with Tensorflow/Keras. - The pre-trained VGG16 network is used as backbone, with weights frozen.
- To the backbone, we attach two networks (heads) in parallel: one for regressing the bounding boxes, one for the classification labels.
- We assume we have only one object in an image; that's an important limitation, but the motivation of the network is educational; the model is defined and trained from-scratch using pre-trained weights of the backbone.
- Overall I thinks it's a nice example to see how to implement things end-to-end, but we need to be aware of the limitations:
- We have 3 custom objects, but:
- The annotations are provided already.
- The objects are quite similar to some COCO/ImageNet classes, nothing really weird: airplane, face, motorcycle.
- The data is passed as a huge array; that could be improved by openening images only when needed.
- Only one object is detected in an image.
- We have 3 custom objects, but:
- Equivalent to
-
Project | Operation | Size | Google Colab Pro T4 | HP ProBook 650 G2, Intel i5-6300U @ 2.40GHz, 2 Cores | Lenovo ThinkPad P14s Gen 2, Intel i7-1165G7 @ 2.80GHz, 4 Cores - 16+32 GB | Lenovo TP P14s + NVIDIA T500 (built-in) - 4 GB | Lenovo TP P14s + NVIDIA GeForce RTX 3060 eGPU - 12 GB | Lenovo ThinkPad T15 Gen 2i, Intel i5-1145G7 @ 2.60GHz, 4 Cores - 16 GB | MacBookPro17,1 - Apple M1, 8 Cores, 16 GB |
---|---|---|---|---|---|---|---|---|---|
04_basic_object_detection_pyimagesearch/02_trained |
Training | 1,586,023 params | 139 sec | 16,530 sec | 3,821 sec | 561 sec | 131 sec | 5,037 sec |
01_mask_r_cnn_fine_tuning
- Isolate the detection model and use
FastRCNNPredictor
to fine-tune my own classes. This point is suggested in the notebook.
- Isolate the detection model and use
02_yolo_v3_darknet
- Get a YOLO model in Pytorch that can be trained.
- Get a YOLO model which can be modified and trained for custom object classes.
03_yolo_v7_tutorial
- Complement tutorial with notes from these articles:
- Other networks
- SSD
- RetinaNet
- SAM
Some sources I have used:
- TorchVision Object Detection Finetuning - Pytorch Tutorial
- Segmentation Models: Python Library
- PyImageSearch: U-Net: Training Image Segmentation Models in PyTorch
- Image Segmentation DeepLabV3 on iOS - Pytorch Tutorial
- Paper Walkthrough: U-Net
My related notes:
- My notes and code on the Udacity Computer Vision Nanodegree.
- My notes and code on the Udacity Deep Learning Nanodegree.
Other resources and tutorials:
- Deep Learning for Object Detection: A Comprehensive Review
- A Github repo with a peer reviewed implementation of the Faster R-CNN: A Faster Pytorch Implementation of Faster R-CNN
- Train your own object detector with Faster-RCNN & PyTorch
- Creating and training a U-Net model with PyTorch for 2D & 3D semantic segmentation: Dataset building
- A PyTorch Tutorial to Object Detection
- How to implement a YOLO (v3) object detector from scratch in PyTorch
- Faster-rcnn for multiclass object detection
- A Faster Pytorch Implementation of Faster R-CNN
- (Part 1) Generating Anchor boxes for Yolo-like network for vehicle detection using KITTI dataset
- How to implement a YOLO (v3) object detector from scratch in PyTorch: Part 1
- YOLOv7 Custom Object Detection Course
- YOLOv7 Object Detection Paper Explanation & Inference
- Fine Tuning YOLOv7 on Custom Dataset
- YOLOv5 – Custom Object Detection Training
- YOLOv8 Object Tracking in Real-time with Webcam and OpenCV
Interesting datasets:
Papers: look in the folder literature.
Mikel Sagardia, 2022.
No guarantees.
You are free to use this project, but please link it back to the original source.