Ask Your Question
0

OpenCV 2.4.5.0 Documentation gpu::subtract says "const GpuMat& b to be ADDED to const GpuMat& a"

asked 2013-05-02 08:44:30 -0600

johnalexander gravatar image

updated 2013-05-02 08:44:45 -0600

In the OpenCV 2.4.5.0 Documentation on docs.opencv.org, I was looking up the parameters to be passed to the function gpu::subtract(). Unexpectedly, it states for parameter GpuMat& b


void gpu::subtract( const GpuMat& a, const GpuMat& b, GpuMat& c, const GpuMat& mask=GpuMat(), int dtype=-1, Stream& stream=Stream::Null() )

const GpuMat& a     First source matrix.

const GpuMat& b     Second source matrix, TO BE ADDED TO 'a' . Matrix should have the same size and type as ``a`` .

Does this really mean that the second GpuMat will be ADDED to the first (even though this is supposed to be the gpu:subtract()-function). Or is this a type-error?

(the parameter-declaration written with the function gpu:add() has the exact same words as the gpu::subtract()-function, suggesting to me that this may indeed be a typo... I still would like to know for sure though, and otherwise bring this to the attention.

edit retag flag offensive close merge delete

1 answer

Sort by » oldest newest most voted
1

answered 2013-05-02 09:44:34 -0600

Vladislav Vinogradov gravatar image

It's a misprint. gpu::subtract computes a difference.

edit flag offensive delete link more

Comments

Thanks for the quick answer!

johnalexander gravatar imagejohnalexander ( 2013-05-03 01:57:17 -0600 )edit

Question Tools

Stats

Asked: 2013-05-02 08:44:30 -0600

Seen: 508 times

Last updated: May 02 '13