Unverified Commit c0b5ad94 authored by Rafael Padilla's avatar Rafael Padilla Committed by GitHub
Browse files

small typos found (#26988)

just very small typos found
parent f9f27b0f
...@@ -189,7 +189,7 @@ def to_pil_image( ...@@ -189,7 +189,7 @@ def to_pil_image(
elif not isinstance(image, np.ndarray): elif not isinstance(image, np.ndarray):
raise ValueError("Input image type not supported: {}".format(type(image))) raise ValueError("Input image type not supported: {}".format(type(image)))
# If the channel as been moved to first dim, we put it back at the end. # If the channel has been moved to first dim, we put it back at the end.
image = to_channel_dimension_format(image, ChannelDimension.LAST, input_data_format) image = to_channel_dimension_format(image, ChannelDimension.LAST, input_data_format)
# If there is a single channel, we squeeze it, as otherwise PIL can't handle it. # If there is a single channel, we squeeze it, as otherwise PIL can't handle it.
...@@ -593,7 +593,7 @@ def corners_to_center_format(bboxes_corners: TensorType) -> TensorType: ...@@ -593,7 +593,7 @@ def corners_to_center_format(bboxes_corners: TensorType) -> TensorType:
""" """
Converts bounding boxes from corners format to center format. Converts bounding boxes from corners format to center format.
corners format: contains the coodinates for the top-left and bottom-right corners of the box corners format: contains the coordinates for the top-left and bottom-right corners of the box
(top_left_x, top_left_y, bottom_right_x, bottom_right_y) (top_left_x, top_left_y, bottom_right_x, bottom_right_y)
center format: contains the coordinate for the center of the box and its the width, height dimensions center format: contains the coordinate for the center of the box and its the width, height dimensions
(center_x, center_y, width, height) (center_x, center_y, width, height)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment