- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个大的 3D numpy 数组(1024 x 1024 x 1024),我需要找到局部最大值周围的区域,以便所有具有大于(例如)局部最大值的 50% 的值的相邻点递归地聚集在同一地区。迭代算法将是:
continue
循环下一个局部最大值。 0.0 1.6 0.0 0.0 0.0
0.0 2.0 1.0 0.0 5.0
1.6 3.0 1.0 0.0 4.6
0.0 0.0 0.0 9.0 4.6
5.0
4.6
9.0 4.6
1.6
2.0
1.6 3.0
scipy.ndimage
,这对于首先找到局部最大值非常有用。但我不知道如何获得它们周围的区域。我还研究了标准聚类算法和图像处理技术,例如 Blob 检测或局部阈值处理,但似乎都没有重现这个问题。
import math
import numpy as np
def soln(data, maxind):
test = np.pad(data,(1,1),'constant',constant_values = [-math.inf,-math.inf])
regionlist = {} # Dictionary with the results
for region, ind in enumerate(maxind): # Loop over all maxima
M = test[ind[0]+1, ind[1]+1, ind[2]+1] # Value of the maximum
if M == -np.inf:
continue
regionlist[region] = set()
regionlist[region].add(ind)
test[ind[0]+1, ind[1]+1, ind[2]+1] = -math.inf # All points that are added to the results are set to -infinity
neighbors = set()
neighbors.add((ind[0]+1, ind[1]+1, ind[2]+1))
while len(neighbors)>0: #create region iteratively
newneighbors = set() # This will contain the new elements in the region
for i in neighbors:
values = test[i[0]-1:i[0]+2, i[1]-1:i[1]+2, i[2]-1:i[2]+2] # Values of neighbours
valuesmask = values > .5*M # Neighbours that fall in region
list1 = range(i[0]-2, i[0]+1)
list2 = range(i[1]-2, i[1]+1)
list3 = range(i[2]-2, i[2]+1)
indlist = list(itertools.product(list1, list2, list3)) # 3-D list with coordinates of neighbours
for count,j in enumerate(valuesmask):
if j:
newneighbors.add(indlist[count])
#update iteration
newneighbors = newneighbors.difference(neighbors) # Remove all elements that were already iterated over and added to regionlist
regionlist[region].update(newneighbors) # Add the new elements in the region to regionlist
neighbors = set((x[0]-1, x[1]-1, x[2]-1) for x in newneighbors) # In the next iteration, iterate only over new elements in the region
for i in newneighbors:
test[i[0]+1, i[1]+1, i[2]+1] = -math.inf #set values to -inf after added to region
return regionlist
最佳答案
我不确定“局部最大值”是如何定义的,或者您使用 scipy.ndimage 中的哪些函数来获取它们。这是一个函数,它将给出属于每个区域的索引集(返回索引,而不是值)。成本看起来像 O(将分配给区域的点数)。常量取决于数组的维度。我认为没有比这更好的了(就复杂性而言)。
此解决方案也适用于二维数组。
import math
import numpy as np
test = np.array([[0, 1.6, 0, 0, 0,], [0, 2, 1,0,5],[1.6,3,1,0,4.6],[0,0,0,9,4.6]])
maxind = [(3,3),(2,1)] #indices of maxima
def soln(data, maxind):
test = np.pad(data,(1,1),'constant',constant_values = [-math.inf,-math.inf])
regionlist = {}
for region,ind in enumerate(maxind): #all maxima
regionlist[region] = set()
regionlist[region].add(ind)
M = test[ind[0]+1,ind[1]+1]
test[ind[0]+1,ind[1]+1] = -math.inf
neighbors = set()
neighbors.add((ind[0]+1,ind[1]+1))
while len(neighbors)>0: #create region iteratively
newneighbors = set()
for i in neighbors:
values = test[i[0]-1:i[0]+2,i[1]-1:i[1]+2]
valuesmask = values.flatten() > .5*M
list1 = np.repeat(list(range(i[0]-2,i[0]+1)),3)
list2 = np.tile(list(range(i[1]-2,i[1]+1)), 3)
indlist = list(zip(list1,list2))
for count,j in enumerate(valuesmask):
if j:
newneighbors.add(indlist[count])
#update iteration
newneighbors = newneighbors.difference(neighbors)
regionlist[region].update(newneighbors)
neighbors = newneighbors
for i in newneighbors:
test[i[0]+1,i[1]+1] = -math.inf #set values to -inf after added to region
return regionlist
regionlist = soln(test, maxind)
关于python - 如何获得 3-D 阵列中局部最大值周围的区域?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59252357/
我正在为我的雇主编写脚本,以从他们自己的站点获取某些数据。出于一长串原因,我需要从网站上获取数据,如图所示。我发现,其中一些数据是通过 js 调用检索的... 回想起来,我应该选择 Mechanize
我正在使用 python 和 cryptography.io 来签署和验证消息。我可以通过以下方式获得签名的 DER 编码字节表示: cryptography_priv_key.sign(messag
关闭。这个问题不满足Stack Overflow guidelines .它目前不接受答案。 想改善这个问题吗?更新问题,使其成为 on-topic对于堆栈溢出。 6年前关闭。 Improve thi
是否可以区分 ECDF?以下面得到的为例。 set.seed(1) a <- sort(rnorm(100)) b <- ecdf(a) plot(b) 我想对 b 求导以获得它的概率密度函数 (PD
我找到了如何从 navigator.mimeTypes 获取 mimetypes: function GetMimeTypes() { var message = ""; var mi
我在表单中使用单选按钮来隐藏/显示联系人表单中的成员 ID 字段。问题是,当 javascript 更改 html 中包含的隐藏 id 字段(该字段设置为“无”值)时,该字段将不再通过 post 可用
我正在做单元测试。我必须测试所有可能的if..else情况。但是在此if语句中: int32_t i32Res = snprintf(buffer, len, "The%d_String_%d", 0
我有一个 Facebook 应用程序,我想从中获取“喜欢”的总数。我想知道这是否可能。 其中 ID 是应用程序的 ID,ACCESS_TOKEN 是我尝试过的应用程序的当前访问 token : gra
如果我有多个计算实例尝试同时获取同一个 blob 的租约,则似乎经常会成功。我的印象是,一旦租约发出(并因此被客户获得),就不可能同时发出另一个租约? 我希望情况确实如此,我一直在 Azure 中使用
这是我的索引 POST /blogs/1 { "name" : "learn java", "popularity" : 100 } POST /blogs/2 { "name" : "l
我正在将 Symfony2 与 FOSUserBundle 一起使用。我需要为用户获得最高角色。 role_hierarchy: ROLE_CONTRIBUTOR: ROLE_USER
我正在向服务器发送基于 REST 的请求。我希望尽快得到答复,并希望了解可以进行的各种优化。 一种方法当然是在线程中并行发送这些请求。还有哪些其他选项可用于优化此功能? 在服务器上,可以添加哪些配置?
这可能是某种重复的问题,但我似乎找不到合适的解决方案。我正在使用 git4idea.history.GitHistoryUtils.history() 获取提交列表。如果 checkout 其中一个较
我正在做一个程序,可以输入每周的工资和那一周的总工作时间。它应该以小时工资率显示答案。但是我无法显示正确的“centavos/2 decimal places”公式并且它不想使用 float % fl
已结束。此问题正在寻求书籍、工具、软件库等的推荐。它不满足Stack Overflow guidelines 。目前不接受答案。 我们不允许提出寻求书籍、工具、软件库等推荐的问题。您可以编辑问题,以便
我已经尝试了 mContext.getMainLooper() 和 Looper.getMainLooper()。两者都返回相同的结果,但我想知道哪种方法正确? 我还从 Android 开发人员链接中
我有一个“affiliates”表,其中包含“user”和“referredBy”列。 给定一个用户,我希望获得该用户推荐的所有“n 级”玩家。对于 n=1,我们只关心您直接推荐的玩家数量: SELE
我在 PostgreSQL 9.5 数据库中有两个表: project - id - name task - id - project_id - name - updated_
请帮助我怎样才能得到我预期的结果,在此先感谢并抱歉我的英语不好。 PHP: $dog = implode(',', $data['dogbreed']); $query .= "AND `do
我有 let impulse = CGVectorMake(CGFloat(Constants.impulse), 0) 如何在不创建另一个 CGVector 的情况下得到它的负值? 我正在考虑在 C
我是一名优秀的程序员,十分优秀!