我正在尝试在Swift中创建CICrossPolynomial过滤器类型。

我不确定如何创建语法来做到这一点。

该文档指定了一个具有浮点数组的CIVector?

A CIVector object whose display name is RedCoefficients.

Default value: [1 0 0 0 0 0 0 0 0 0] Identity: [1 0 0 0 0 0 0 0 0 0]

但是,实际上如何声明这样的CIVector?有一个具有此签名的构造函数
CIVector(values: <UnsafePointer<CGFloat>>, count: <UInt>)

但是当我尝试
var floatArr:Array<CGFloat> = [1,0,0,0,0,0,0,0,0]
var vector = CIVector(values: floatArr, count: floatArr.count)

我得到错误:
Cannot invoke 'init' with an argument list type (values: @lvaue Array<CGFloat>, count:Int)

您知道我如何用CGFloats数组正确创建CIVector吗?

最佳答案

floatArr.count的类型为Int,但是count:参数的类型为UInt
因此,您需要对其进行显式转换:

let floatArr: [CGFloat] = [1,0,0,0,0,0,0,0,0]
var vector = CIVector(values: floatArr, count: UInt(floatArr.count))

10-08 05:46