mirror of
https://github.com/AtsushiSakai/PythonRobotics.git
synced 2026-01-13 15:48:13 -05:00
271 lines
7.5 KiB
Python
271 lines
7.5 KiB
Python
"""
|
|
|
|
Object shape recognition with L-shape fitting
|
|
|
|
author: Atsushi Sakai (@Atsushi_twi)
|
|
|
|
Ref:
|
|
- [Efficient L\-Shape Fitting for Vehicle Detection Using Laser Scanners \- The Robotics Institute Carnegie Mellon University](https://www.ri.cmu.edu/publications/efficient-l-shape-fitting-for-vehicle-detection-using-laser-scanners/)
|
|
|
|
"""
|
|
|
|
import matplotlib.pyplot as plt
|
|
import numpy as np
|
|
import itertools
|
|
from enum import Enum
|
|
|
|
from simulator import VehicleSimulator, LidarSimulator
|
|
|
|
show_animation = True
|
|
|
|
|
|
class LShapeFitting():
|
|
|
|
class Criteria(Enum):
|
|
AREA = 1
|
|
CLOSENESS = 2
|
|
VARIANCE = 3
|
|
|
|
def __init__(self):
|
|
# Parameters
|
|
self.criteria = self.Criteria.VARIANCE
|
|
self.min_dist_of_closeness_crit = 0.01 # [m]
|
|
self.dtheta_deg_for_serarch = 1.0 # [deg]
|
|
self.R0 = 3.0 # [m] range segmentation param
|
|
self.Rd = 0.001 # [m] range segmentation param
|
|
|
|
def fitting(self, ox, oy):
|
|
|
|
# step1: Adaptive Range Segmentation
|
|
idsets = self._adoptive_range_segmentation(ox, oy)
|
|
|
|
# step2 Rectangle search
|
|
rects = []
|
|
for ids in idsets: # for each cluster
|
|
cx = [ox[i] for i in range(len(ox)) if i in ids]
|
|
cy = [oy[i] for i in range(len(oy)) if i in ids]
|
|
rects.append(self._rectangle_search(cx, cy))
|
|
|
|
return rects, idsets
|
|
|
|
def _calc_area_criterion(self, c1, c2):
|
|
c1_max = max(c1)
|
|
c2_max = max(c2)
|
|
c1_min = min(c1)
|
|
c2_min = min(c2)
|
|
|
|
alpha = -(c1_max - c1_min) * (c2_max - c2_min)
|
|
|
|
return alpha
|
|
|
|
def _calc_closeness_criterion(self, c1, c2):
|
|
c1_max = max(c1)
|
|
c2_max = max(c2)
|
|
c1_min = min(c1)
|
|
c2_min = min(c2)
|
|
|
|
D1 = [min([np.linalg.norm(c1_max - ic1),
|
|
np.linalg.norm(ic1 - c1_min)]) for ic1 in c1]
|
|
D2 = [min([np.linalg.norm(c2_max - ic2),
|
|
np.linalg.norm(ic2 - c2_min)]) for ic2 in c2]
|
|
|
|
beta = 0
|
|
for i, _ in enumerate(D1):
|
|
d = max(min([D1[i], D2[i]]), self.min_dist_of_closeness_crit)
|
|
beta += (1.0 / d)
|
|
|
|
return beta
|
|
|
|
def _calc_variance_criterion(self, c1, c2):
|
|
c1_max = max(c1)
|
|
c2_max = max(c2)
|
|
c1_min = min(c1)
|
|
c2_min = min(c2)
|
|
|
|
D1 = [min([np.linalg.norm(c1_max - ic1),
|
|
np.linalg.norm(ic1 - c1_min)]) for ic1 in c1]
|
|
D2 = [min([np.linalg.norm(c2_max - ic2),
|
|
np.linalg.norm(ic2 - c2_min)]) for ic2 in c2]
|
|
|
|
E1, E2 = [], []
|
|
for (d1, d2) in zip(D1, D2):
|
|
if d1 < d2:
|
|
E1.append(d1)
|
|
else:
|
|
E2.append(d2)
|
|
|
|
V1 = 0.0
|
|
if E1:
|
|
V1 = - np.var(E1)
|
|
|
|
V2 = 0.0
|
|
if E2:
|
|
V2 = - np.var(E2)
|
|
|
|
gamma = V1 + V2
|
|
|
|
return gamma
|
|
|
|
def _rectangle_search(self, x, y):
|
|
|
|
X = np.array([x, y]).T
|
|
|
|
dtheta = np.deg2rad(self.dtheta_deg_for_serarch)
|
|
minp = (-float('inf'), None)
|
|
for theta in np.arange(0.0, np.pi / 2.0 - dtheta, dtheta):
|
|
|
|
e1 = np.array([np.cos(theta), np.sin(theta)])
|
|
e2 = np.array([-np.sin(theta), np.cos(theta)])
|
|
|
|
c1 = X @ e1.T
|
|
c2 = X @ e2.T
|
|
|
|
# Select criteria
|
|
if self.criteria == self.Criteria.AREA:
|
|
cost = self._calc_area_criterion(c1, c2)
|
|
elif self.criteria == self.Criteria.CLOSENESS:
|
|
cost = self._calc_closeness_criterion(c1, c2)
|
|
elif self.criteria == self.Criteria.VARIANCE:
|
|
cost = self._calc_variance_criterion(c1, c2)
|
|
|
|
if minp[0] < cost:
|
|
minp = (cost, theta)
|
|
|
|
# calc best rectangle
|
|
sin_s = np.sin(minp[1])
|
|
cos_s = np.cos(minp[1])
|
|
|
|
c1_s = X @ np.array([cos_s, sin_s]).T
|
|
c2_s = X @ np.array([-sin_s, cos_s]).T
|
|
|
|
rect = RectangleData()
|
|
rect.a[0] = cos_s
|
|
rect.b[0] = sin_s
|
|
rect.c[0] = min(c1_s)
|
|
rect.a[1] = -sin_s
|
|
rect.b[1] = cos_s
|
|
rect.c[1] = min(c2_s)
|
|
rect.a[2] = cos_s
|
|
rect.b[2] = sin_s
|
|
rect.c[2] = max(c1_s)
|
|
rect.a[3] = -sin_s
|
|
rect.b[3] = cos_s
|
|
rect.c[3] = max(c2_s)
|
|
|
|
return rect
|
|
|
|
def _adoptive_range_segmentation(self, ox, oy):
|
|
|
|
# Setup initial cluster
|
|
S = []
|
|
for i, _ in enumerate(ox):
|
|
C = set()
|
|
R = self.R0 + self.Rd * np.linalg.norm([ox[i], oy[i]])
|
|
for j, _ in enumerate(ox):
|
|
d = np.sqrt((ox[i] - ox[j])**2 + (oy[i] - oy[j])**2)
|
|
if d <= R:
|
|
C.add(j)
|
|
S.append(C)
|
|
|
|
# Merge cluster
|
|
while 1:
|
|
no_change = True
|
|
for (c1, c2) in list(itertools.permutations(range(len(S)), 2)):
|
|
if S[c1] & S[c2]:
|
|
S[c1] = (S[c1] | S.pop(c2))
|
|
no_change = False
|
|
break
|
|
if no_change:
|
|
break
|
|
|
|
return S
|
|
|
|
|
|
class RectangleData():
|
|
|
|
def __init__(self):
|
|
self.a = [None] * 4
|
|
self.b = [None] * 4
|
|
self.c = [None] * 4
|
|
|
|
self.rect_c_x = [None] * 5
|
|
self.rect_c_y = [None] * 5
|
|
|
|
def plot(self):
|
|
self.calc_rect_contour()
|
|
plt.plot(self.rect_c_x, self.rect_c_y, "-r")
|
|
|
|
def calc_rect_contour(self):
|
|
|
|
self.rect_c_x[0], self.rect_c_y[0] = self.calc_cross_point(
|
|
self.a[0:2], self.b[0:2], self.c[0:2])
|
|
self.rect_c_x[1], self.rect_c_y[1] = self.calc_cross_point(
|
|
self.a[1:3], self.b[1:3], self.c[1:3])
|
|
self.rect_c_x[2], self.rect_c_y[2] = self.calc_cross_point(
|
|
self.a[2:4], self.b[2:4], self.c[2:4])
|
|
self.rect_c_x[3], self.rect_c_y[3] = self.calc_cross_point(
|
|
[self.a[3], self.a[0]], [self.b[3], self.b[0]], [self.c[3], self.c[0]])
|
|
self.rect_c_x[4], self.rect_c_y[4] = self.rect_c_x[0], self.rect_c_y[0]
|
|
|
|
def calc_cross_point(self, a, b, c):
|
|
x = (b[0] * -c[1] - b[1] * -c[0]) / (a[0] * b[1] - a[1] * b[0])
|
|
y = (a[1] * -c[0] - a[0] * -c[1]) / (a[0] * b[1] - a[1] * b[0])
|
|
return x, y
|
|
|
|
|
|
def main():
|
|
|
|
# simulation parameters
|
|
simtime = 30.0 # simulation time
|
|
dt = 0.2 # time tick
|
|
|
|
angle_reso = np.deg2rad(3.0) # sensor angle resolution
|
|
|
|
v1 = VehicleSimulator(-10.0, 0.0, np.deg2rad(90.0),
|
|
0.0, 50.0 / 3.6, 3.0, 5.0)
|
|
v2 = VehicleSimulator(20.0, 10.0, np.deg2rad(180.0),
|
|
0.0, 50.0 / 3.6, 4.0, 10.0)
|
|
|
|
lshapefitting = LShapeFitting()
|
|
lidar_sim = LidarSimulator()
|
|
|
|
time = 0.0
|
|
while time <= simtime:
|
|
time += dt
|
|
|
|
v1.update(dt, 0.1, 0.0)
|
|
v2.update(dt, 0.1, -0.05)
|
|
|
|
ox, oy = lidar_sim.get_observation_points([v1, v2], angle_reso)
|
|
|
|
rects, idsets = lshapefitting.fitting(ox, oy)
|
|
|
|
if show_animation: # pragma: no cover
|
|
plt.cla()
|
|
plt.axis("equal")
|
|
plt.plot(0.0, 0.0, "*r")
|
|
v1.plot()
|
|
v2.plot()
|
|
|
|
# Plot range observation
|
|
for ids in idsets:
|
|
x = [ox[i] for i in range(len(ox)) if i in ids]
|
|
y = [oy[i] for i in range(len(ox)) if i in ids]
|
|
|
|
for (ix, iy) in zip(x, y):
|
|
plt.plot([0.0, ix], [0.0, iy], "-og")
|
|
|
|
plt.plot([ox[i] for i in range(len(ox)) if i in ids],
|
|
[oy[i] for i in range(len(ox)) if i in ids],
|
|
"o")
|
|
for rect in rects:
|
|
rect.plot()
|
|
|
|
plt.pause(0.1)
|
|
|
|
print("Done")
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|