| 52 | } |
| 53 | |
| 54 | Tensor AdaptiveThreshold(Tensor &input, double max_value, NVCVAdaptiveThresholdType adaptive_method, |
| 55 | NVCVThresholdType threshold_type, int32_t block_size, double c, std::optional<Stream> pstream) |
| 56 | { |
| 57 | Tensor output = Tensor::Create(input.shape(), input.dtype()); |
| 58 | |
| 59 | return AdaptiveThresholdInto(output, input, max_value, adaptive_method, threshold_type, block_size, c, pstream); |
| 60 | } |
| 61 | |
| 62 | ImageBatchVarShape AdaptiveThresholdVarShapeInto(ImageBatchVarShape &output, ImageBatchVarShape &input, |
| 63 | Tensor &max_value, NVCVAdaptiveThresholdType adaptive_method, |
nothing calls this directly
no test coverage detected