近似值的高效数组归一化
我正在寻找用近似值(ushort[100])替换其目标值的有效方法。
有两个目标值 (ushort x, 2x),ushort[] 中的每个值都近似于这两个值之一。
I'm looking for the efficient way of replacing approximate values (ushort[100]) for their target values.
There are two target values (ushort x, 2x), each value in the ushort[] approximates one of these two.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您始终可以定义一个距离度量,该距离度量允许您将每个近似值分配给预期值,将这些值视为“箱”,如直方图中所示。处理这些值意味着用与该值距离最小的已知值替换近似值。
You could always just define a distance metric that allows you to assigns each of the approximate values to the expected values, considering those to be "bins", as in a histogram. Processing the values then means replacing the approximate value with the known value that has the smallest distance to that value.