forked from leo-drive/rosbag2_anonymizer
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Barış Zeren <[email protected]>
- Loading branch information
1 parent
84679fd
commit 7ebdb4f
Showing
2 changed files
with
33 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
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,29 @@ | ||
## Time and Requirement Analysis | ||
|
||
This document explains the time and requirement analysis of the unified model. | ||
|
||
📝 An RTX 3090 GPU was used for the time calculations | ||
|
||
### Time Analysis | ||
|
||
Since we are using couple of foundation model to anonymize images, the tool might take significant amount of time. | ||
|
||
You can see which model takes how much time per image in the following table: | ||
|
||
| Model Name | Time per Image (ms) | | ||
| ------------------ | ---------------------------- | | ||
| Grounding DINO | `~300 ms` | | ||
| Segment Anything 2 | `~130 ms` | | ||
| Open CLIP | `~30 ms` x `number of boxes` | | ||
| YOLO v11 X | `~20 ms ` | | ||
|
||
### Requirement Analysis | ||
|
||
You can see how much VRAM is required for each model in the following table: | ||
|
||
| Model Name | VRAM Requirement (MiB) | | ||
| ------------------ | ---------------------- | | ||
| Grounding DINO | `~1200 MiB` | | ||
| Segment Anything 2 | `~448 MiB` | | ||
| Open CLIP | `~930 MiB` | | ||
| YOLO v11 X | `~864 MiB` | |