Skip to content

Commit

Permalink
Add docs
Browse files Browse the repository at this point in the history
Signed-off-by: Rafal Banas <rbanas@nvidia.com>
  • Loading branch information
banasraf committed Jul 28, 2023
1 parent ca63b2f commit e32a0fd
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions dali/operators/image/filter/median_blur.cc
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,12 @@ namespace dali {


DALI_SCHEMA(experimental__MedianBlur)
.DocStr(R"doc(
Median blur performs smoothing of an image or sequence of images by calculating
the median color of surrounding rectangular region for each pixel.
)doc")
.NumInput(1)
"Input data. Must be images in HWC or CHW layout, or a sequence of those.")
.NumOutput(1)
.InputLayout({"HWC", "FHWC", "CHW", "FCHW"})
.AddOptionalArg("window_size",
Expand Down
2 changes: 1 addition & 1 deletion dali/pipeline/data/types.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2017-2022, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
// Copyright (c) 2017-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion include/dali/core/common.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2017-2021, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
// Copyright (c) 2017-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand Down

0 comments on commit e32a0fd

Please sign in to comment.