正如您在圖片中看到的,一個人在使用地圖時會生成一個圓錐。我想知道是否有可能檢測到錐體like this的兩條外線,但最終目標是使用這些信息來查找線條所處的角度。 我跟着this tutorial on hough-transform,但最後this。如果可能,尋找一種更簡單的方法來找到角度。 import numpy as np
from skimage.transform import ho
我正在使用Python和OpenCV。我試圖找到電池的中心和角度: Image of batteries with random angles: 比我的代碼是這樣的: import cv2
import numpy as np
img = cv2.imread('image/baterias2.png')
gray = cv2.cvtColor(img,cv2.COLOR_BGR2GRA