CADC Ground Investigation Visual Solution
Catalog
Introduce
Motivation
We want to apply computer vision to the plane to fullfill ground investigation task automatically.
Objective
The input image looks like this:
And we hope the output prediction to be 56.
Implementation
Environment Preparation
- python3
- numpy
- torch
- torchvision
- opencv-python
- other basic or dependency package
(requirment.txt will be added afterwards)
Foundation
Basic OpenCV methods is required.
Recommended learning site:
- For OpenCV
- Bilibili video tutorial (Only 1-27 is required for this project)
- For CNN(implemented by pytorch)
Code Review
Source code
in detect.py
, there are two large function
1 | def detect_target(image): |
Function detect_target
Overview
detect_target
receive image data(three channels, BGR), detect the colored targets and returns the index of them.
index:
- rect_list
- the list whose elements are Box2D type
rect
, indicating the information of the minimum bounding rectangle
- the list whose elements are Box2D type
- ROI
- the list whose elements are index([x,y,w,h]) of orthogonal bounding rectangle In this picture, the blue frames are the minimum bounding Rectangle and the green ones are ordinary bounding box.
Note: What is Box2D type rect
?
index | description |
---|---|
rect[0] | the location of the box’s center (x,y) |
rect[1][0] | width of the box(the length of the side which will be first reached by the horizontal line when rotating counter-clockwise) |
rect[1][1] | height |
rect[2] | rotation angle |
Get the estimated area of the target by color filtering
First we need to convert the color layout from BGR to HSV, which is easier to judge color.
1 | image_hsv=cv2.cvtColor(image_cut,cv2.COLOR_BGR2HSV) |
Then define a mask that filter the color(hue) range from 160-179 or 0-10 (red),
1 | red1=np.array([0,100,100]) |
And apply the mask to the picture
1 | after_mask=cv2.add(image_cut, np.zeros(np.shape(image_cut), dtype=np.uint8), mask=mask) |
Turn the after mask image into binary image and adapt close and open processing to fill holes and cancel noise.
1 | kernel=np.ones([3,3],np.uint8) |
Then, find the contours of the processed image.
For each contour, adapt filters such as area, the ratio of the height and width of bounding rectangle.
If these restrictions are fullfilled, append the index of bounding rectangle and min area rectangle to two lists respectively, and return the lists.
1 | contours, hier=cv2.findContours(Open,cv2.RETR_EXTERNAL,cv2.CHAIN_APPROX_NONE) |
CADC Ground Investigation Visual Solution
http://chen-yulin.github.io/2022/04/23/CADC-Ground-Investigation-Visual-Solution/