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

fix typo, 'bounding box' #721

Merged
merged 1 commit into from
Oct 31, 2018
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
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def __call__(
bbox (array): The coordinates of ground truth bounding boxes.
Its shape is :math:`(R', 4)`.
loc_normalize_mean (tuple of four floats): Mean values to normalize
coordinates of bouding boxes.
coordinates of bounding boxes.
loc_normalize_std (tuple of four floats): Standard deviation of
the coordinates of bounding boxes.
mask_size (tuple of int or int): Generated mask size, which is
Expand Down
2 changes: 1 addition & 1 deletion chainercv/links/model/faster_rcnn/faster_rcnn.py
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ def predict(self, imgs):

* **bboxes**: A list of float arrays of shape :math:`(R, 4)`, \
where :math:`R` is the number of bounding boxes in a image. \
Each bouding box is organized by \
Each bounding box is organized by \
:math:`(y_{min}, x_{min}, y_{max}, x_{max})` \
in the second axis.
* **labels** : A list of integer arrays of shape :math:`(R,)`. \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def __call__(self, roi, bbox, label,
is :math:`(R',)`. Its range is :math:`[0, L - 1]`, where
:math:`L` is the number of foreground classes.
loc_normalize_mean (tuple of four floats): Mean values to normalize
coordinates of bouding boxes.
coordinates of bounding boxes.
loc_normalize_std (tuple of four floats): Standard deviation of
the coordinates of bounding boxes.

Expand Down
6 changes: 3 additions & 3 deletions chainercv/links/model/ssd/multibox_coder.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class MultiboxCoder(object):
Each integer indicates the size of a feature map.
aspect_ratios (iterable of tuples of ints):
An iterable of tuples of integers
used to compute the default bouding boxes.
used to compute the default bounding boxes.
Each tuple indicates the aspect ratios of
the default bounding boxes at each feature maps.
The length of this iterable should be :obj:`len(grids)`.
Expand Down Expand Up @@ -117,7 +117,7 @@ def encode(self, bbox, label, iou_thresh=0.5):
Args:
bbox (array): A float array of shape :math:`(R, 4)`,
where :math:`R` is the number of bounding boxes in an image.
Each bouding box is organized by
Each bounding box is organized by
:math:`(y_{min}, x_{min}, y_{max}, x_{max})`
in the second axis.
label (array) : An integer array of shape :math:`(R,)`.
Expand Down Expand Up @@ -211,7 +211,7 @@ def decode(self, mb_loc, mb_conf, nms_thresh=0.45, score_thresh=0.6):

* **bbox**: A float array of shape :math:`(R, 4)`, \
where :math:`R` is the number of bounding boxes in a image. \
Each bouding box is organized by \
Each bounding box is organized by \
:math:`(y_{min}, x_{min}, y_{max}, x_{max})` \
in the second axis.
* **label** : An integer array of shape :math:`(R,)`. \
Expand Down
4 changes: 2 additions & 2 deletions chainercv/links/model/ssd/ssd.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class SSD(chainer.Chain):
for each feature map. This value is used by
:class:`~chainercv.links.model.ssd.MultiboxCoder`.
variance (tuple of floats): Two coefficients for decoding
the locations of bounding boxe.
the locations of bounding boxes.
This value is used by
:class:`~chainercv.links.model.ssd.MultiboxCoder`.
The default value is :obj:`(0.1, 0.2)`.
Expand Down Expand Up @@ -179,7 +179,7 @@ def predict(self, imgs):

* **bboxes**: A list of float arrays of shape :math:`(R, 4)`, \
where :math:`R` is the number of bounding boxes in a image. \
Each bouding box is organized by \
Each bounding box is organized by \
:math:`(y_{min}, x_{min}, y_{max}, x_{max})` \
in the second axis.
* **labels** : A list of integer arrays of shape :math:`(R,)`. \
Expand Down
2 changes: 1 addition & 1 deletion chainercv/links/model/yolo/yolo_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def predict(self, imgs):

* **bboxes**: A list of float arrays of shape :math:`(R, 4)`, \
where :math:`R` is the number of bounding boxes in a image. \
Each bouding box is organized by \
Each bounding box is organized by \
:math:`(y_{min}, x_{min}, y_{max}, x_{max})` \
in the second axis.
* **labels** : A list of integer arrays of shape :math:`(R,)`. \
Expand Down