Skip to content
This repository has been archived by the owner on Jul 2, 2021. It is now read-only.

Commit

Permalink
fix ambiguity in the explanation of bounding box coordinates convention
Browse files Browse the repository at this point in the history
  • Loading branch information
yuyu2172 committed Jun 9, 2017
1 parent c80ca7f commit a41cb1a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ ChainerCV follows the following conventions.
+ Channels of a color image are ordered as RGB. The shape of an image-array is CHW (channel, height, width).
+ Axis-dependent values follow row-column order.
+ Shape of an image is always represented as `(height, width)`.
+ Coordinates of bounding boxes and keypoints are ordered as `(y, x)`.
+ Coordinates of bounding boxes are ordered as `(y_min, x_min, y_max, x_max)`. `(y_min, x_min)` and `(y_max, x_max)` are coordinates of the top left and the bottom right vertices of a bounding box respectively.
+ Coordinates of keypoints are ordered as `(y, x)`.

## Models
Currently, ChainerCV supports networks for object detection and semantic segmentation.
Expand Down

0 comments on commit a41cb1a

Please sign in to comment.