| 64 | } |
| 65 | |
| 66 | Tensor ColorTwistMatrixInto(Tensor &dst, Tensor &src, Tensor &twist, std::optional<Stream> pstream) |
| 67 | { |
| 68 | auto op = CreateOperator<cvcuda::ColorTwist>(); |
| 69 | runGuard(op, src, dst, twist, pstream, [&](Stream &stream) { op->submit(stream.cudaHandle(), src, dst, twist); }); |
| 70 | return dst; |
| 71 | } |
| 72 | |
| 73 | Tensor ColorTwistMatrix(Tensor &src, Tensor &twist, std::optional<Stream> pstream) |
| 74 | { |
no test coverage detected