| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190 |
- from typing import Optional, Union
- import torch
- from transformers.models.detr.image_processing_detr_fast import DetrImageProcessorFast
- from ...image_transforms import center_to_corners_format
- from ...utils import (
- TensorType,
- logging,
- )
- logger = logging.get_logger(__name__)
- def get_size_with_aspect_ratio(
- image_size: tuple[int, int], size: int, max_size: Optional[int] = None, mod_size: int = 16
- ) -> tuple[int, int]:
- """
- Computes the output image size given the input image size and the desired output size with multiple of divisible_size.
- Args:
- image_size (`tuple[int, int]`):
- The input image size.
- size (`int`):
- The desired output size.
- max_size (`int`, *optional*):
- The maximum allowed output size.
- mod_size (`int`, *optional*):
- The size to make multiple of mod_size.
- """
- height, width = image_size
- raw_size = None
- if max_size is not None:
- min_original_size = float(min((height, width)))
- max_original_size = float(max((height, width)))
- if max_original_size / min_original_size * size > max_size:
- raw_size = max_size * min_original_size / max_original_size
- size = int(round(raw_size))
- if width < height:
- ow = size
- if max_size is not None and raw_size is not None:
- oh = int(raw_size * height / width)
- else:
- oh = int(size * height / width)
- elif (height <= width and height == size) or (width <= height and width == size):
- oh, ow = height, width
- else:
- oh = size
- if max_size is not None and raw_size is not None:
- ow = int(raw_size * width / height)
- else:
- ow = int(size * width / height)
- if mod_size is not None:
- ow_mod = torch.remainder(torch.tensor(ow), mod_size).item()
- oh_mod = torch.remainder(torch.tensor(oh), mod_size).item()
- ow = ow - ow_mod
- oh = oh - oh_mod
- return (oh, ow)
- class YolosImageProcessorFast(DetrImageProcessorFast):
- def post_process(self, outputs, target_sizes):
- """
- Converts the raw output of [`YolosForObjectDetection`] into final bounding boxes in (top_left_x,
- top_left_y, bottom_right_x, bottom_right_y) format. Only supports PyTorch.
- Args:
- outputs ([`YolosObjectDetectionOutput`]):
- Raw outputs of the model.
- target_sizes (`torch.Tensor` of shape `(batch_size, 2)`):
- Tensor containing the size (height, width) of each image of the batch. For evaluation, this must be the
- original image size (before any data augmentation). For visualization, this should be the image size
- after data augment, but before padding.
- Returns:
- `list[Dict]`: A list of dictionaries, each dictionary containing the scores, labels and boxes for an image
- in the batch as predicted by the model.
- """
- logger.warning_once(
- "`post_process` is deprecated and will be removed in v5 of Transformers, please use"
- " `post_process_object_detection` instead, with `threshold=0.` for equivalent results.",
- )
- out_logits, out_bbox = outputs.logits, outputs.pred_boxes
- if len(out_logits) != len(target_sizes):
- raise ValueError("Make sure that you pass in as many target sizes as the batch dimension of the logits")
- if target_sizes.shape[1] != 2:
- raise ValueError("Each element of target_sizes must contain the size (h, w) of each image of the batch")
- prob = out_logits.sigmoid()
- topk_values, topk_indexes = torch.topk(prob.view(out_logits.shape[0], -1), 100, dim=1)
- scores = topk_values
- topk_boxes = torch.div(topk_indexes, out_logits.shape[2], rounding_mode="floor")
- labels = topk_indexes % out_logits.shape[2]
- boxes = center_to_corners_format(out_bbox)
- boxes = torch.gather(boxes, 1, topk_boxes.unsqueeze(-1).repeat(1, 1, 4))
- # and from relative [0, 1] to absolute [0, height] coordinates
- img_h, img_w = target_sizes.unbind(1)
- scale_fct = torch.stack([img_w, img_h, img_w, img_h], dim=1)
- boxes = boxes * scale_fct[:, None, :]
- results = [{"scores": s, "labels": l, "boxes": b} for s, l, b in zip(scores, labels, boxes)]
- return results
- def post_process_object_detection(
- self, outputs, threshold: float = 0.5, target_sizes: Union[TensorType, list[tuple]] = None, top_k: int = 100
- ):
- """
- Converts the raw output of [`YolosForObjectDetection`] into final bounding boxes in (top_left_x,
- top_left_y, bottom_right_x, bottom_right_y) format. Only supports PyTorch.
- Args:
- outputs ([`YolosObjectDetectionOutput`]):
- Raw outputs of the model.
- threshold (`float`, *optional*):
- Score threshold to keep object detection predictions.
- target_sizes (`torch.Tensor` or `list[tuple[int, int]]`, *optional*):
- Tensor of shape `(batch_size, 2)` or list of tuples (`tuple[int, int]`) containing the target size
- (height, width) of each image in the batch. If left to None, predictions will not be resized.
- top_k (`int`, *optional*, defaults to 100):
- Keep only top k bounding boxes before filtering by thresholding.
- Returns:
- `list[Dict]`: A list of dictionaries, each dictionary containing the scores, labels and boxes for an image
- in the batch as predicted by the model.
- """
- out_logits, out_bbox = outputs.logits, outputs.pred_boxes
- if target_sizes is not None:
- if len(out_logits) != len(target_sizes):
- raise ValueError(
- "Make sure that you pass in as many target sizes as the batch dimension of the logits"
- )
- prob = out_logits.sigmoid()
- prob = prob.view(out_logits.shape[0], -1)
- k_value = min(top_k, prob.size(1))
- topk_values, topk_indexes = torch.topk(prob, k_value, dim=1)
- scores = topk_values
- topk_boxes = torch.div(topk_indexes, out_logits.shape[2], rounding_mode="floor")
- labels = topk_indexes % out_logits.shape[2]
- boxes = center_to_corners_format(out_bbox)
- boxes = torch.gather(boxes, 1, topk_boxes.unsqueeze(-1).repeat(1, 1, 4))
- # and from relative [0, 1] to absolute [0, height] coordinates
- if target_sizes is not None:
- if isinstance(target_sizes, list):
- img_h = torch.Tensor([i[0] for i in target_sizes])
- img_w = torch.Tensor([i[1] for i in target_sizes])
- else:
- img_h, img_w = target_sizes.unbind(1)
- scale_fct = torch.stack([img_w, img_h, img_w, img_h], dim=1).to(boxes.device)
- boxes = boxes * scale_fct[:, None, :]
- results = []
- for s, l, b in zip(scores, labels, boxes):
- score = s[s > threshold]
- label = l[s > threshold]
- box = b[s > threshold]
- results.append({"scores": score, "labels": label, "boxes": box})
- return results
- def post_process_segmentation(self):
- raise NotImplementedError("Segmentation post-processing is not implemented for Deformable DETR yet.")
- def post_process_instance(self):
- raise NotImplementedError("Instance post-processing is not implemented for Deformable DETR yet.")
- def post_process_panoptic(self):
- raise NotImplementedError("Panoptic post-processing is not implemented for Deformable DETR yet.")
- def post_process_instance_segmentation(self):
- raise NotImplementedError("Segmentation post-processing is not implemented for Deformable DETR yet.")
- def post_process_semantic_segmentation(self):
- raise NotImplementedError("Semantic segmentation post-processing is not implemented for Deformable DETR yet.")
- def post_process_panoptic_segmentation(self):
- raise NotImplementedError("Panoptic segmentation post-processing is not implemented for Deformable DETR yet.")
- __all__ = ["YolosImageProcessorFast"]
|