Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用cvInRange需要两个Scalar参数的 OpenCV 函数,问题是我需要使用YcbCr标量最小值和最大值的值,有人知道如何制作吗?
cvInRange
Scalar
YcbCr
cvInRangeS(imgYCbcr, cvScalar( Ymax, Cbmax, Crmax ), cvScalar( Ymin, Crmin, Crmin ), imgThresh);
提前致谢
将图像从转换BGR为YCrCb(请参阅cvtColor)并使用inRange(不是cvInRangeS- 这是一个c函数,您需要c++)函数来获取所需的掩码。
BGR
YCrCb
cvtColor
inRange
cvInRangeS
c
c++