- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
在下面的代码中,我有一个 8 位整数的 numpy 数组。我想对它们应用一个阈值,所以我调用 cv2.threshold(img,128,1,cv2.THRSH_TOZERO)[1]
.文档表明该函数应返回一个值为0
的数组在小于 128
的每个单元格中,以及大于或等于 128
的每个单元格中的原始值.
更奇怪的是,cv2.threshold
似乎是对于不同单元格中的相同值表现不同。
In [48]:img
Out[48]:
array([[128, 128, 128, ..., 133, 133, 133],
[128, 128, 128, ..., 134, 134, 134],
[128, 128, 128, ..., 136, 136, 136],
...,
[132, 132, 132, ..., 128, 128, 128],
[132, 132, 132, ..., 128, 128, 128],
[132, 132, 132, ..., 128, 128, 128]], dtype=uint8)
In [49]:imgThresh=cv2.threshold(img,128,1,cv2.THRESH_TOZERO)[1]
In[50]:imgThresh
Out[50]:
array([[ 0, 0, 0, ..., 0, 151, 133],
[ 0, 0, 0, ..., 0, 151, 133],
[ 0, 0, 0, ..., 0, 151, 133],
...,
[ 0, 0, 0, ..., 0, 151, 133],
[ 0, 0, 0, ..., 0, 151, 133],
[ 0, 0, 0, ..., 0, 151, 133]], dtype=uint8)
对可能导致这种行为的原因有什么想法吗?
编辑:我在 Ubuntu 12.04 上运行并按照 docs 中的安装说明进行操作此外,根据请求,我添加了一个更简化的修改......这似乎是有效的。不知道该怎么做 在 1 : 导入 numpy, cv2
In[2]:img=numpy.random.randint(0,255,(100,100)).astype(numpy.uint8)
In[3]:img
Out[3]:
array([[122, 192, 125, ..., 224, 138, 157],
[ 46, 90, 33, ..., 95, 251, 24],
[238, 87, 113, ..., 60, 190, 175],
...,
[ 30, 33, 100, ..., 182, 123, 79],
[ 84, 180, 34, ..., 37, 52, 194],
[ 94, 51, 96, ..., 243, 69, 241]], dtype=uint8)
In[4]:img1=cv2.threshold(img,244,1,cv2.THRESH_TOZERO)
In[5]:
Out[5]:
(244.0,
array([[ 0, 0, 0, ..., 0, 0, 0],
[ 0, 0, 0, ..., 0, 251, 0],
[ 0, 0, 0, ..., 0, 0, 0],
...,
[ 0, 0, 0, ..., 0, 0, 0],
[ 0, 0, 0, ..., 0, 0, 0],
[ 0, 0, 0, ..., 0, 0, 0]], dtype=uint8))
最佳答案
在当前版本中,据我所知,在最近的一些版本中它会返回
因此,如果您执行 cv2.threshold(img,128,1,cv2.THRSH_TOZERO)
,所有 128 的值都将设置为 0。如果您希望它们保持在 128,请使用 cv2.threshold(img,129,1,cv2.THRSH_TOZERO)
.
如果您对相同的输入获得不同的值,则可能意味着您的安装已损坏。你是如何安装 OpenCV 和什么操作系统的?你用什么版本?您是否尝试过 c 版本的代码?
我尝试使用以下代码重现您的错误。对我来说一切都很好。您能否尝试以下代码并发布您的输出。
import numpy,cv2
img=numpy.random.randint(0,255,(100,100)).astype(numpy.uint8)
img1=cv2.threshold(img,128,1,cv2.THRESH_TOZERO)
关于python - cv2.threshold 转换它不应该的细胞,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17376212/
任何人都可以帮助我理解 Jmeter 仪表板报告中的术语“容忍阈值”和“挫折阈值” enter image description here 最佳答案 APDEX 说明 here 要计算它,JMete
当display-buffer必须在现有 Pane 中创建一个新窗口,Emacs manual声明 split-height-threshold首先查看新窗口是否可以低于当前窗口,然后 split-w
我收到以下错误消息: Error in "if (reached.threshold < min.reached.threshold) {" : missing value wher
我收到以下错误消息: Error in "if (reached.threshold < min.reached.threshold) {" : missing value wher
我试图解释 yolov3.cfg 文件中不同参数的用途,但是,我找不到关于 ignore_thresh 和 truth_thresh 的任何解释。 我目前(有限的)理解是,它们要么与作为组合边界框的阈
我怎样才能有一个类似于 SQL“...WHERE _id > threshold”的 mongo 查询 我尝试了以下方法,但没有任何结果。 db.things.find(_id: {$gt: som
建立分类模型后,我通过准确率、精确率和召回率对其进行评估。为了检查过度拟合,我使用了 K Fold Cross Validation。我知道,如果我的模型分数与交叉验证分数相差很大,那么我的模型就过度
在下面的代码中,我有一个 8 位整数的 numpy 数组。我想对它们应用一个阈值,所以我调用 cv2.threshold(img,128,1,cv2.THRSH_TOZERO)[1] .文档表明该函数
所以基本上我今天需要优化这段代码。它试图找到某个函数为前百万个起始数字生成的最长序列: public static void main(String[] args) { int mostLen
谁能告诉我这些自适应阈值函数中的参数是什么以及它们如何控制黑白像素。 cv2.adaptiveThreshold(img,255,cv2.ADAPTIVE_THRESH_MEAN_C,\
我正在尝试了解 GC 的工作原理并且一直在阅读 https://www.oracle.com/webfolder/technetwork/tutorials/obe/java/gc01/index.h
我有一个深度 CNN,可以很好地进行多类分类。我想“升级”挑战并针对多标签分类问题对其进行训练。 为此,我用 sigmoid 替换了 softmax,并尝试训练我的网络以最小化: tf.reduce_
我有一个 DataFrame,如下所示: 我想使用 GroupBy 方法来返回行,例如: "'gain_by_mae' > 1 的所有行", "'entry_time' > 8:00 和 'entry
我运行这段代码: import cv2 import numpy as np from matplotlib import pyplot as plt im=cv2.imread('1.jpg') #
我正在测试 cv2.threshold()使用不同的值运行,但我每次都会得到意想不到的结果。所以这意味着我根本不明白 parameter 的效果: 最大 有人可以解决这个问题吗? 比如我想按照白色绘制
我是 Python 新手。 我想借助傅立叶变换定义文本旋转。 import cv2 import numpy as np import matplotlib.pyplot as plot img =
我有一个 DataFrame,我希望在其上使用 groupby,但我正在寻找一些不寻常的函数来进行聚合。我想让每个组中的观察百分比超过某个阈值。例如,阈值为 0 时,DataFrame df = pd
我是 Grafana World 的新手。我需要和你们澄清两件事: 1)无论如何要在时间范围内动态更改阈值? 2)Grafana 如何计算平均值?有没有办法通过使用 lucene 将总计数除以常量变量
在设置 ELB 健康检查的对话框中指出: If an instance fails the health check, it is automatically removed from the loa
Closed. This question is off-topic。它当前不接受答案。
我是一名优秀的程序员,十分优秀!