| 77 | } |
| 78 | |
| 79 | ImageBatchVarShape VarShapeColorTwistMatrixInto(ImageBatchVarShape &dst, ImageBatchVarShape &src, Tensor &twist, |
| 80 | std::optional<Stream> pstream) |
| 81 | { |
| 82 | auto op = CreateOperator<cvcuda::ColorTwist>(); |
| 83 | runGuard(op, src, dst, twist, pstream, [&](Stream &stream) { op->submit(stream.cudaHandle(), src, dst, twist); }); |
| 84 | return dst; |
| 85 | } |
| 86 | |
| 87 | ImageBatchVarShape VarShapeColorTwistMatrix(ImageBatchVarShape &src, Tensor &twist, std::optional<Stream> pstream) |
| 88 | { |
no test coverage detected