- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个均匀分布的数值网格,每个数值都位于一个单元格的中心。为简化起见,我们假设每个单元格的大小都是 1.0
乘以 1.0
。我正在寻找一种方法来计算给定任意点的相邻单元格和中心单元格的平均值。我试图想出一个使用权重和距离的算法,它大部分都有效,但我在单元格的边缘得到了不正确的值(单元格之间的过渡不平滑,因为我正在移动 p0
周围;当它移动到相邻的单元格时,值会突然发生急剧变化)。这可能是因为这些值不是在圆上而是在正方形上间隔开,因此它们在对角线上与中心点的距离不同于水平或垂直距离。
在上图中,有 9 个值指定为 v0-v8
。 v0
是中心值。 p0
是中心单元格内的任意点。如果 p0
移动到另一个单元格的范围内,则该单元格将成为中心单元格(视角明显改变)。
要求:
p0
与 v0
位于同一位置,则 p0 == v0
。所有这一切背后的原因是我想创建一种更快的方法来访问计算速度非常慢的值,但是如果它们以特定的粒度预先计算到类似网格的缓存中,我可以取平均值最近的。
到目前为止,这是我想出的:
double value = 0;
// If we're closer to the northern edge
if (z < CellRadius)
{
double centeredness = z / CellRadius;
double centerWeight = Utils.Lerp(centeredness, 1.0 / 2.0, 1.0);
double edgeWeight = Utils.Lerp(centeredness, 1.0 / 2.0, 0.0);
value += (
centerWeight * Cells[i, j]
+ edgeWeight * Cells[i, j - 1]
) / 4.0;
}
// If we're closer to the southern edge
else if (z >= CellRadius)
{
double centeredness = (
CellRadius - (z - CellRadius)
) / CellRadius;
double centerWeight = Utils.Lerp(centeredness, 1.0 / 2.0, 1.0);
double edgeWeight = Utils.Lerp(centeredness, 1.0 / 2.0, 0.0);
value += (
centerWeight * Cells[i, j]
+ edgeWeight * Cells[i, j + 1]
) / 4.0;
}
// If we're closer to the western edge
if (x < CellRadius)
{
double centeredness = x / CellRadius;
double centerWeight = Utils.Lerp(centeredness, 1.0 / 2.0, 1.0);
double edgeWeight = Utils.Lerp(centeredness, 1.0 / 2.0, 0.0);
value += (
centerWeight * Cells[i, j]
+ edgeWeight * Cells[i - 1, j]
) / 4.0;
}
// If we're closer to the eastern edge
else if (x >= CellRadius)
{
double centeredness = (
CellRadius - (x - CellRadius)
) / CellRadius;
double centerWeight = Utils.Lerp(centeredness, 1.0 / 2.0, 1.0);
double edgeWeight = Utils.Lerp(centeredness, 1.0 / 2.0, 0.0);
value += (
centerWeight * Cells[i, j]
+ edgeWeight * Cells[i + 1, j]
) / 4.0;
}
// If we're closer to the north-western edge
if (x < CellRadius && z < CellRadius)
{
double centeredness = (x / CellRadius) * (z / CellRadius);
double centerWeight = Utils.Lerp(centeredness, 1.0 / 2.0, 1.0);
double edgeWeight = Utils.Lerp(centeredness, 1.0 / 2.0, 0.0);
value += (centerWeight * Cells[i, j] + edgeWeight * (
Cells[i - 1, j - 1]
)) / 2.0;
}
// If we're closer to the south-eastern edge
else if (x >= CellRadius && z >= CellRadius)
{
double centeredness = (
CellRadius - (x - CellRadius)
) / CellRadius * (
CellRadius - (z - CellRadius)
) / CellRadius;
double centerWeight = Utils.Lerp(centeredness, 1.0 / 2.0, 1.0);
double edgeWeight = Utils.Lerp(centeredness, 1.0 / 2.0, 0.0);
value += (centerWeight * Cells[i, j] + edgeWeight * (
Cells[i + 1, j + 1]
)) / 2.0;
}
// If we're closer to the north-eastern edge
else if (x >= CellRadius && z < CellRadius)
{
double centeredness = (
CellRadius - (x - CellRadius)
) / CellRadius * (z / CellRadius);
double centerWeight = Utils.Lerp(centeredness, 1.0 / 2.0, 1.0);
double edgeWeight = Utils.Lerp(centeredness, 1.0 / 2.0, 0.0);
value += (centerWeight * Cells[i, j] + edgeWeight * (
Cells[i + 1, j - 1]
)) / 2.0;
}
// If we're closer to the south-western edge
else if (x < CellRadius && z >= CellRadius)
{
double centeredness = (x / CellRadius) * (
CellRadius - (z - CellRadius)
) / CellRadius;
double centerWeight = Utils.Lerp(centeredness, 1.0 / 2.0, 1.0);
double edgeWeight = Utils.Lerp(centeredness, 1.0 / 2.0, 0.0);
value += (centerWeight * Cells[i, j] + edgeWeight * (
Cells[i - 1, j + 1]
)) / 2.0;
}
return value;
如前所述,它无法正常工作。
最佳答案
我发现很难理解你想要完成的事情:
如果你想要这些点的平均值,你可以从中心点 v0 取偏移量 p0 的 1/10。由于 v0-v8 总共是 9 分,而 p0 是 1 分,所以得到 10 分,因此是 1/10。
假设我们暂时忽略 p0 并尝试计算 v0-v8 的平均值,在您描述的情况下它将是 (0, 0)。考虑到这种情况的“权重”,我们可以说这是 9,因为它们是 9 分。
即使我们将 v2&v8、v4&v6、v3&v7 或 v1&v5 中的任意对的两个点都移动到距 v0 相同的距离,平均值仍将为 (0, 0)。考虑到这一点意味着,只要(例如 v2 和 v8)两个点的距离相同,上述对的点与 v0 之间的距离有多远并不重要。
例如,在您的代码中,我看到您对待“西北”的方式不同于“北”或“西”,因为上述解释,我认为这没有必要。除此之外,我认为算法非常复杂,而我在上面描述过你可以只取 p0 的 1/10。
希望这对您有所帮助,如果我误解了您的问题,请详细说明! :)
编辑:在您的问题中,您假设因为这些值不是在圆上而是在正方形上间隔开,所以它们与中心点的对角线距离与水平或垂直距离不同。理论上,这是真的。
关于这个假设,我想指出,即使在代码中考虑这个距离,您也需要一个平方根(毕达哥拉斯定理)。这个距离的可用数据,我假设是 x 和 y 的差异。
根据您的假设,查看示例图像,v3 与 p0/v2 和 p0 之间的 y 差异相同,v2 与 p0/v1 和 p0 之间的 x 差异也相同。
无论哪种方式,我所说的计算只需要 v0 和 p0 之间的 x 和 y 差值。
关于c# - 如何计算围绕正方形放置的 9 个值的平均值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51707696/
这是一种复杂的情况。我正在重构(从头开始)c++,它必须用作 CGI 脚本和独立应用程序的核心。 遗憾的是,我从大学开始就没有写过C++,对c#/Java比较熟悉。所以我打算将 WPF 用于 GUI。
您好,我正在尝试找出与此线程中提出的问题相同的问题 How to use CSS to surround a number with a circle? 但是 - 每次我这样做时,形状都会变成椭圆形,
如果您在单个语句中执行某些操作,例如“abc”+ stringval +“abc”,那么是一个不可变的字符串副本,还是两个(注意 abc 和 123 在编译时是常量) 奖励回合:使用像下面这样的 St
我正在尝试创建一个查询,该查询只会在满足某些条件的情况下添加 AND 子句。 这就是我所追求的: SELECT DISTINCT id name active FROM team WHER
在使用 Google 的出色绘图工具进行了一些试验后,我正在使用 Gnuplot 绘制几个 3D 图形。我喜欢 Google 工具的一件事是它在表面周围绘制的“边界框”,这让我更容易看到大小。 有没有
我们最近从solr迁移到 Elasticsearch 。 因此决定以自定义查询格式编写一个包装器,该包装器将转换为 Elasticsearch 查询。将来,如果我们更改为另一个数据存储,则只需要修改此
我有以下内容将音频剪辑的频率绘制为条形音箱: const drawSinewave = function() { requestAnimationFrame(drawSinewave);
我试图围绕其父矩形的中心旋转一个矩形。 child 到 parent 边界的距离必须始终保持不变。我几乎成功了,但我的方法似乎有一个小错误。我似乎找不到问题所在。 示例: http://jsfiddl
我有一个帮助类来将用户对象保存到共享首选项。我用过 serialize(): String函数和 create(serializedString: String)我的 User 中的函数数据模型。他们
是否可以围绕 UIBezierPath 的可见部分绘制路径? 这是我的问题的一个例子 这是我想要完成的 这是我到目前为止得到的: - (void)drawRect:(CGRect)rect { C
这里,AsciiChecker启用文本形式的矩阵规范。 abstract class AsciiChecker extends AlgoritmicChecker { String[] asc
目前,我有十个不同的查询,它们通过 JDBC 处理,并包装在返回 ResultSet 的函数中。这些 ResultSet 对象中的每一个都由外部程序进行迭代,并将通过其索引而不是根据要求的列名进行访问
围绕 finder 方法启动事务是否明智: @Transactional public E getParticularEvent(final String id) { return (E)em
我需要一个围绕 Canvas 边缘移动的圆圈。向右然后向下移动可以正常工作,但是当它需要向左移动时,它会跳到右下角并开始一次又一次地向右移动。我不知道如何解决这个问题。 var can = doc
我正在尝试我的第一个 jQuery 插件。 (耶……时间到了!) 我很难思考如何让一个可公开访问的函数正常启动。 代码 (function($, doc, win){ "use strict"
在阅读了很多关于绕相机旋转的指南并询问了一些关于 SO 的其他问题后,我想到了 SSCCE我到目前为止所拥有的。也许这样其他人会更容易理解我需要什么,对我来说答案是什么。 到目前为止它看起来像这样:
这里是 Java 菜鸟!我正在努力为我正在编写的 Android 应用程序画龙点睛。本质上,它是一个 RSS 阅读器。异步任务获取 RSS 提要。然后对其进行解析,我想做的最后一点是使用已解析的 RS
我有以下代码,从数据库的“类(class)”表中选择标题和图像。 setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
我正在尝试实现一个表盘,其中一只手的位图图像围绕 Canvas 上的表盘中心旋转。 基本上在 onDraw() 方法中,我希望能够将图像资源放到 Canvas 上,然后每秒旋转一次。 我有每秒触发一次
我从 SwingX 找到了一个名为 JXLoginPane 的组件在 WindowBuilder 中可用,这似乎是我尝试做的事情的一个很好的起点,但我需要有关如何使用它的更多信息。到目前为止,我发现唯
我是一名优秀的程序员,十分优秀!