-
Notifications
You must be signed in to change notification settings - Fork 480
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Docs] Add oriented bounding boxes object detection example (#91)
- Loading branch information
Showing
2 changed files
with
24 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,24 @@ | ||
# Oriented Bounding Boxes Object Detection Example | ||
|
||
## Introduction | ||
|
||
Oriented object detection surpasses standard object detection by adding angular precision to pinpoint objects in images. | ||
|
||
<img src=".data/annotated_obb_task.png" width="100%" /> | ||
|
||
## Usage | ||
|
||
The calibration process for the rotated object detection task is as follows: | ||
|
||
- Import the image file. | ||
- Click the `rotations` button on the left menu bar or press the shortcut key `O` to quickly draw a rotated box. | ||
- Select the corresponding rotated box object and adjust the rotation angle using the following shortcut keys: | ||
|
||
| Shortcut Key | Description | | ||
| ------------ | -------------------------- | | ||
| z | Rotate counterclockwise by a large angle | | ||
| x | Rotate counterclockwise by a small angle | | ||
| c | Rotate clockwise by a small angle | | ||
| v | Rotate clockwise by a large angle | | ||
|
||
To display the rotation degrees, you can click 'View' in the top menu bar, and check 'Show Degrees' to display the estimated rotation angle in real-time. |