Tools for scanning tire treads.
Project description
treadscan
This package provides utilities for extracting tire tread (pattern) from images, or even from video of passing cars.
Three main classes are
treadscan.Detector
- picks out stopped cars from continoous footage (like at an intersection, under a traffic light).
treadscan.Segmentor
- finds ellipse defining car wheel in image (using image segmentation techniques).
treadscan.Extractor
- creates a tire model from the ellipse, then "unwraps" the tire tread (or rather part of the tire tread, as only about a quarter of the tread is visible).
There are 3 different ways to detect car wheels in image. Only treadscan.Segmentor
is included in the treadscan
package and works out of the box. This class has a major downfall and that is that it only has a chance to work correctly if the car in the image has very bright rims, which contrast enough with the tire. There is also treadscan.RCNNSegmentor
which uses a region based convolutional neural network to find the car wheel in image but the treadscan
package doesn't include a pre-trained model. You can however use the model included in this repository or even train your own.
Before training a model, you need annotated training data. To annotate images, you can use the model_annotation.py
, which conveniently saves the keypoints and bounding boxes as a JSON in the same format as used in the training notebook. This script is included in this folder.
This GUI utilises the OpenCV window, using mouse position and keyboard input to place the points. So to place a point, user can hover over a location and press a specific key, or hold the key while dragging with the mouse. The points which have to be placed manually are:
T
- top of vehicle's rimB
- bottom of vehicle's rimR
- third point on the rim (best to always use the same location)S
- sidewall height (recommended location is above theT
point)W
- inner side of tire
Other controls are:
SPACEBAR
- show a preview of tire treadBACKSPACE
- hide tread previewN
- submit keypoints, keep annotating (you might wish to annotate ALL tires in image if there are multiple)ENTER
- to export keypoints to JSON fileESCAPE
- quit annotation without exporting
The 5 keypoints are used to construct tire bounding ellipses, between which lies the tire tread. Once the Keypoint-RCNN has learned them, it can be used to make automated predictions, thus finding the tire location in images automatically.
Another option is to find the location of the tire manually using a GUI script, manual_annotation.py
.
The controls are:
T
- top of vehicle's rimB
- bottom of the vehicle's rimR
- right (or left) side
These 3 points form an ellipse, which defines the location of vehicle's rim in image (red ellipse in the above image). Then the tire model is extrapolated from that, or can be further modified using the optional points:
O
- move outer tire ellipse (left yellow ellipse)S
- tire sidewall height (height of yellow ellipses)W
- tire width (move inner tire ellipse, right yellow ellipse)U
- top of tread extraction (starting angle, top of green rectangle)I
- bottom of tread extraction (ending angle, bottom of green rectangle)
Pressing SPACEBAR
shows preview of extracted tread, BACKSPACE
hides this preview. Pressing ENTER
saves full size extracted tread as new image. Closing the window or pressing ESCAPE
closes the window.
Additionally the treadscan_script.py
in the extras
folder can process footage (folder of images/video/stream) and extract the tread of each car from the footage. It has 3 modes: manual (user annotates each manually), semiauto (user annotates only those where Segmentor fails) and auto (images where Segmentor fails are discarded). Extracted treads are saved to a folder.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file treadscan-1.0.3.tar.gz
.
File metadata
- Download URL: treadscan-1.0.3.tar.gz
- Upload date:
- Size: 135.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f320c771cb58207e3d7d6131e6ef55cbbe1f2b63583e484e7c79b3a25d6bc660 |
|
MD5 | c48fd3c071a5279f8ac95a1a0c18193c |
|
BLAKE2b-256 | cf91494040ad157b76666a3044fb6dd1e17e140082a343665d2d943082526e62 |