mirror of
https://github.com/30hours/3lips.git
synced 2025-03-29 00:25:18 +00:00
32 lines
No EOL
862 B
Python
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.
|
|
"""
|
|
|
|
|