Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: add readme to perception related utils #4265

Merged
merged 2 commits into from
Jul 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions common/cuda_utils/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# cuda_utils

## Purpose

This package contains a library of common functions related to CUDA.
6 changes: 6 additions & 0 deletions common/object_recognition_utils/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# object_recognition_utils

## Purpose

This package contains a library of common functions that are useful across the object recognition module.
This package may include functions for converting between different data types, msg types, and performing common operations on them.
5 changes: 5 additions & 0 deletions common/perception_utils/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# perception_utils

## Purpose

This package contains a library of common functions that are useful across the perception module.
2 changes: 1 addition & 1 deletion common/perception_utils/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<name>perception_utils</name>
<version>0.1.0</version>
<description>The perception_utils package</description>
<maintainer email="takayuki.murooka@tier4.jp">Takayuki Murooka</maintainer>
<maintainer email="mingyu.li@tier4.jp">Mingyu Li</maintainer>
<maintainer email="satoshi.tanaka@tier4.jp">Satoshi Tanaka</maintainer>
<maintainer email="yusuke.muramatsu@tier4.jp">Yusuke Muramatsu</maintainer>
<maintainer email="shunsuke.miura@tier4.jp">Shunsuke Miura</maintainer>
Expand Down
6 changes: 6 additions & 0 deletions common/tensorrt_common/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# tensorrt_common

## Purpose

This package contains a library of common functions related to TensorRT.
This package may include functions for handling TensorRT engine and calibration algorithm used for quantization
6 changes: 6 additions & 0 deletions common/traffic_light_utils/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# traffic_light_utils

## Purpose

This package contains a library of common functions that are useful across the traffic light recognition module.
This package may include functions for handling ROI types, converting between different data types and message types, as well as common functions related to them.
12 changes: 12 additions & 0 deletions common/trtexec_vendor/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# trtexec_vendor

## Purpose

This is a vendor package for trtexec.
It can build tensorrt engine from onnx file with trtexec.

e.g.

```bash
trtexec --onnx=(ros2 pkg prefix tensorrt_yolox --share)/data/yolox-tiny.onnx
```