Нахождение точки пересечения неполного круга с питоном - PullRequest
1 голос
/ 10 июля 2019

Я пытаюсь найти точку пересечения неполного круга, как показано ниже:

enter image description here

Ссылаясь на решение этой ссылки: Определитьполукруг в opencv

Я пытаюсь преобразовать код C ++ в код Python, я преобразовал большую его часть, но я не понимаю 2 строки кода C ++, которые приведены ниже:

1) Почему радиус нужно делить на 25?

// Максимальное расстояние внутри может зависеть от размера круга

float maxInlierDist = radius / 25.0f;

2) Я совершенно не знаю, как преобразовать эту строку C ++ в python:

if (dt.at (cY, cX)

Я надеюсь, что кто-нибудьмог бы помочь мне в этом, спасибо!

Я пытался прогуляться по поводу некоторой математической формулы, но не могу найти, почему радиус нужно делить на 25. Я также не очень хорош в c ++.

Мой преобразованный код:

# import the necessary packages
import numpy as np
import argparse
import cv2
import math

# construct the argument parser and parse the arguments
ap = argparse.ArgumentParser()
ap.add_argument("-t", "--thres", required = True, help = "Path to the image")
ap.add_argument("-i", "--image", required = True, help = "Path to the image")
args = vars(ap.parse_args())

# load the image, clone it for output, and then convert it to grayscale
image = cv2.imread(args["image"])

gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)

gray = cv2.Canny(gray, 200,20)

# detect circles in the image
circles = cv2.HoughCircles(gray, cv2.HOUGH_GRADIENT, 1,minDist=300,  
                               param1=200, param2=20,
                               minRadius=0, maxRadius=0)

#gray = (255*mask).astype(np.uint8)

dt = cv2.distanceTransform(255-gray, cv2.DIST_L2, 3)

cv2.imshow('Distance Transform', dt/255.0)
# ensure at least some circles were found

if circles is not None:
    # convert the (x, y) coordinates and radius of the circles to integers
    circles = np.round(circles[0, :]).astype("int")

    # loop over the (x, y) coordinates and radius of the circles
    for (x, y, r) in circles:
        # draw the circle in the output image, then draw a rectangle
        # corresponding to the center of the circle
        cv2.circle(image, (x, y), r, (0, 255, 0), 2)
        cv2.rectangle(image, (x - 5, y - 5), (x + 5, y + 5), 
                             (0, 128,255),-1)

        minInlierDist = 2.0
        counter =0
        inlier =0
        radius=r
        num_circle = 50

        maxInlierDist=radius/25.0
        if maxInlierDist<minInlierDist:
            maxInlierDist=minInlierDist

        for index in range(num_circle):
            counter +=1
            #angle = t * math.pi / 180
            angle = 2 * math.pi * index / num_circle

            cX = x + math.sin(angle)*radius
            cY = y + math.cos(angle)*radius
            centerxy = cX,cY
            cv2.circle(image,tuple(np.array(centerxy,int)),3,(0,0,255),-1)

#if(dt.at<float>(cY,cX) < maxInlierDist) #c++ !!!I'm stucked here!!!

    cv2.imshow("output", image)#np.hstack([image, gray]))
    cv2.waitKey(0)
else:
    print("no circles found!")
    cv2.waitKey(0)

Самый важный вопрос здесь: Как узнать / определить Зеленый образецd точки на круге - это выбросы, а синие точки - выбросы.

1 Ответ

2 голосов
/ 10 июля 2019

1) 1/25 выбрана в качестве произвольной доли радиуса для максимально допустимой ошибки.

2) В opencv python матрицы хранятся в виде многомерных массивов numpy. Чтобы получить доступ к точке в (cY, cX), используйте dt [cY, cX]

...