问题标签 [straight-line-detection]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
python-3.x - python函数从数组中查找局部最大值/峰值
我正在尝试从给定数组中检测局部最大值。该数组是计算霍夫线变换后得到的正弦曲线。这是图像
这是 numpy 文件accumulator.npy。显然,有两个局部最大值。我想知道检测这两个最大值的最佳方法是什么。另外,找到最大值后如何绘制回线?谢谢。
python - 如何使用 python、opencv 计算图像中的行数
我想数纸,所以我考虑使用线检测。我尝试过一些方法,如 Canny、HoughLines、FLD。但是我只得到处理后的照片,我不知道如何计算它。有一些小线段是我们想要的线。我用过len(lines)
或len(contours)
。然而,结果与我的预期相去甚远。结果是成百上千。那么有人有什么好主意吗?
python - 使用opencv python使用坐标对在图像上绘制线条时遇到问题
我有一组来自图像的坐标。使用这些坐标,我想在图像上绘制线条。在尝试时,我遇到了错误。请帮我解决这个问题。下面是代码。
错误:
点输出:
image-processing - Hough transformation calculation
hough transformation using the normal equation of a line.
For calculating the value of r while keeping the values of x and y same for different θ the following formula is used.
r = sin(θ)y + cos(θ)x
But the results are not the same as shown in the slides. Am I missing something? I am a newbie please be gentle.
delphi - 在直线上绘制一个点
一条直线的方程是 Y = MX + C,
我有一个点和点面对的角度,所以我可以计算出直线方程
这就是我用来获取 Y 截距和斜率或梯度的当前数学。
但是我想知道如何在我们的起点前面绘制一个点 X 距离。
目前,我正在尝试以下内容,其中 Y2 和 X2 是我们原始点的值加上 100 个单位。
这里是完整功能的粘贴箱:
谢谢。