| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- # LICENSE HEADER MANAGED BY add-license-header
- #
- # Copyright 2018 Kornia Team
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- #
- from __future__ import annotations
- from typing import Any, Optional, Union
- import torch
- from kornia.color.gray import grayscale_to_rgb
- from kornia.core import Tensor
- from kornia.core.external import PILImage as Image
- from kornia.core.external import onnx
- from kornia.models.base import ModelBase
- __all__ = ["EdgeDetector"]
- class EdgeDetector(ModelBase):
- """EdgeDetector is a module that wraps an edge detection model."""
- name: str = "edge_detection"
- @torch.inference_mode()
- def forward(self, images: Union[Tensor, list[Tensor]]) -> Union[Tensor, list[Tensor]]:
- """Forward pass of the edge detection model.
- Args:
- images: If list of RGB images. Each image is a Tensor with shape :math:`(3, H, W)`.
- If Tensor, a Tensor with shape :math:`(B, 3, H, W)`.
- Returns:
- output tensor.
- """
- images, image_sizes = self.pre_processor(images)
- out_images = self.model(images)
- return self.post_processor(out_images, image_sizes)
- def visualize(
- self,
- images: Union[Tensor, list[Tensor]],
- edge_maps: Optional[Union[Tensor, list[Tensor]]] = None,
- output_type: str = "torch",
- ) -> Union[Tensor, list[Tensor], list[Image.Image]]: # type: ignore
- """Draw the edge detection results.
- Args:
- images: input tensor.
- edge_maps: detected edges.
- output_type: type of the output.
- Returns:
- output tensor.
- """
- if edge_maps is None:
- edge_maps = self.forward(images)
- output = []
- for edge_map in edge_maps:
- output.append(grayscale_to_rgb(edge_map)[0])
- return self._tensor_to_type(output, output_type, is_batch=isinstance(images, Tensor))
- def save(
- self,
- images: Union[Tensor, list[Tensor]],
- edge_maps: Optional[Union[Tensor, list[Tensor]]] = None,
- directory: Optional[str] = None,
- output_type: str = "torch",
- ) -> None:
- """Save the edge detection results.
- Args:
- images: input tensor.
- edge_maps: detected edges.
- output_type: type of the output.
- directory: where to save outputs.
- Returns:
- output tensor.
- """
- outputs = self.visualize(images, edge_maps, output_type)
- self._save_outputs(images, directory, suffix="_src")
- self._save_outputs(outputs, directory, suffix="_edge")
- def to_onnx( # type: ignore[override]
- self,
- onnx_name: Optional[str] = None,
- image_size: Optional[int] = 352,
- include_pre_and_post_processor: bool = True,
- save: bool = True,
- additional_metadata: Optional[list[tuple[str, str]]] = None,
- **kwargs: Any,
- ) -> onnx.ModelProto: # type: ignore
- """Export the current edge detection model to an ONNX model file.
- Args:
- onnx_name:
- The name of the output ONNX file. If not provided, a default name in the
- format "Kornia-<ClassName>.onnx" will be used.
- image_size:
- The size to which input images will be resized during preprocessing.
- If None, image_size will be dynamic. For DexiNed, recommended scale is 352.
- include_pre_and_post_processor:
- Whether to include the pre-processor and post-processor in the exported model.
- save:
- If to save the model or load it.
- additional_metadata:
- Additional metadata to add to the ONNX model.
- kwargs: Additional arguments to convert to onnx.
- """
- if onnx_name is None:
- onnx_name = f"kornia_{self.name}_{image_size}.onnx"
- return super().to_onnx(
- onnx_name,
- input_shape=[-1, 3, image_size or -1, image_size or -1],
- output_shape=[-1, 1, image_size or -1, image_size or -1],
- pseudo_shape=[1, 3, image_size or 352, image_size or 352],
- model=self if include_pre_and_post_processor else self.model,
- save=save,
- additional_metadata=additional_metadata,
- **kwargs,
- )
|