-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #42 from una-auxme/9-paf_21_1_perception
9 paf 21 1 perception
- Loading branch information
Showing
1 changed file
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# Paf_21_1 - Perception | ||
|
||
## 1. Architecture | ||
|
||
![image](https://github.com/una-auxme/paf23/assets/102369315/07328c78-83d7-425c-802e-8cc49430e6c1) | ||
|
||
### **Key Features** | ||
|
||
- Object-Detection | ||
- TrafficLight-Detection | ||
|
||
## 2. Sensors | ||
|
||
- Position | ||
- Velocity | ||
- RGB-Image | ||
- Depth-Image | ||
- Semantic-Image | ||
|
||
## 3. Object-Detection | ||
|
||
- Objects are detected using semantic and depth images | ||
- First they use masks and filters on the semantic image to identify pedestrians and vehicles | ||
- Then they use the depth image and the position and velocity data to calculate the relative positions of each object | ||
|
||
## 4. TrafficLight-Detection | ||
|
||
- They use the semantic image and apply masks and filters to find traffic lights | ||
- Then they use this information anlognside with the depth image to cut out a specific patch of the image | ||
- After that they cut the same patch from the RGB Image (32x32x3) which is than classified by a simple Convolutional Neural Network (CNN) | ||
- They use the classes Backside, Green, Yellow and Red | ||
|
||
## 5. Conclusion | ||
|
||
- Some parts of their systems, like the CNN, are probably usefull to us | ||
- Since their entire perception is based on semantic and depth images it will be vewry hard for us to adopt their concepts | ||
- We would have to build our own semantic and depth cameras which is a very complex task | ||
- All in all the concepts of paf_21_1 regarding the perception aren´t to usefull for our project |