Skip to content

Commit

Permalink
Change opencv link
Browse files Browse the repository at this point in the history
  • Loading branch information
dwchoo committed Jan 11, 2024
1 parent c2607fa commit e0c7b11
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cuda/arithm.go
Original file line number Diff line number Diff line change
Expand Up @@ -221,15 +221,15 @@ func MinWithStream(src1, src2 GpuMat, dst *GpuMat, s Stream) {
// Multiply computes a matrix-matrix or matrix-scalar multiplication.
//
// For further details, please see:
// https://docs.opencv.org/master/d8/d34/group__cudaarithm__elem.html#ga124315aa226260841e25cc0b9ea99dc3
// https://docs.opencv.org/4.x/d8/d34/group__cudaarithm__elem.html#ga497cc0615bf717e1e615143b56f00591
func Multiply(src1, src2 GpuMat, dst *GpuMat) {
C.GpuMultiply(src1.p, src2.p, dst.p, nil)
}

// MultiplyWithStream computes a matrix-matrix or matrix-scalar multiplication.
//
// For further details, please see:
// https://docs.opencv.org/master/d8/d34/group__cudaarithm__elem.html#ga124315aa226260841e25cc0b9ea99dc3
// https://docs.opencv.org/4.x/d8/d34/group__cudaarithm__elem.html#ga497cc0615bf717e1e615143b56f00591
func MultiplyWithStream(src1, src2 GpuMat, dst *GpuMat, s Stream) {
C.GpuMultiply(src1.p, src2.p, dst.p, s.p)
}
Expand Down

0 comments on commit e0c7b11

Please sign in to comment.