Skip to content

Commit

Permalink
Fix CMake
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 e32a0fd commit 449348b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion dali/operators/image/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ add_subdirectory(color)
add_subdirectory(crop)
add_subdirectory(convolution)
add_subdirectory(distortion)
if ($BUILD_CVCUDA)
if (${BUILD_CVCUDA})
add_subdirectory(filter)
endif()
add_subdirectory(mask)
Expand Down
1 change: 1 addition & 0 deletions dali/operators/image/filter/median_blur.cc
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ 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)
.InputDox(0, "input", "TensorList",
"Input data. Must be images in HWC or CHW layout, or a sequence of those.")
.NumOutput(1)
.InputLayout({"HWC", "FHWC", "CHW", "FCHW"})
Expand Down

0 comments on commit 449348b

Please sign in to comment.