3lips/event/algorithm/coordreg/EllipseParametric.py

32 lines
No EOL
862 B
Python

"""
@file EllipseParametric.py
@author 30hours
"""
class EllipseParametric:
"""
@class EllipseParametric
@brief A class for intersecting ellipses using a parametric approx.
@details Uses associated detections from multiple radars.
@see blah2 at https://github.com/30hours/blah2.
"""
def __init__(self):
"""
@brief Constructor for the EllipseParametric class.
"""
def process(self, assoc_detections):
"""
@brief Perform coord registration using the ellipse parametric method.
@details Generate a (non arc-length) parametric ellipse for each node.
Find
@param radar_detections (str): JSON of blah2 radar detections.
@param adsb_detections (str): JSON of adsb2dd truth detections.
@return str: JSON of associated detections.
"""