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.
是否有任何功能可以直接将 3 通道(黑白图像 - 3 通道的斑点图像)转换为 1 通道图像?目前,我需要使用
cvCvtColor 然后是 cvThreshold
获得 1 个通道图像。
根据应用程序,只需将其中一个通道馈送到threshold(). 您可以使用 分割 3 通道图像split(),这样可以节省一些时间,cvtColor()因为它不必对每个像素进行 3 次乘法运算。
threshold()
split()
cvtColor()
不,阈值算法采用单通道图像(即来自 cvtColor 的灰度)。您可以编写自己的函数来直接检查像素值,但很可能 cvtColor 后跟一些阈值函数同样快