RamziBm's picture
init
bdb955e
raw
history blame
72.1 kB
from abc import ABCMeta
from typing import List
import kornia
import torch
import numpy as np
import random
from .linalg import LineCollection
from torch.utils.data import Dataset, DataLoader
from pytorch_lightning import LightningDataModule
class SoccerPitchSN:
"""Static class variables that are specified by the rules of the game"""
GOAL_LINE_TO_PENALTY_MARK = 11.0
PENALTY_AREA_WIDTH = 40.32
PENALTY_AREA_LENGTH = 16.5
GOAL_AREA_WIDTH = 18.32
GOAL_AREA_LENGTH = 5.5
CENTER_CIRCLE_RADIUS = 9.15
GOAL_HEIGHT = 2.44
GOAL_LENGTH = 7.32
lines_classes = [
"Big rect. left bottom",
"Big rect. left main",
"Big rect. left top",
"Big rect. right bottom",
"Big rect. right main",
"Big rect. right top",
"Circle central",
"Circle left",
"Circle right",
"Goal left crossbar",
"Goal left post left ",
"Goal left post right",
"Goal right crossbar",
"Goal right post left",
"Goal right post right",
"Goal unknown",
"Line unknown",
"Middle line",
"Side line bottom",
"Side line left",
"Side line right",
"Side line top",
"Small rect. left bottom",
"Small rect. left main",
"Small rect. left top",
"Small rect. right bottom",
"Small rect. right main",
"Small rect. right top",
]
symetric_classes = {
"Side line top": "Side line bottom",
"Side line bottom": "Side line top",
"Side line left": "Side line right",
"Middle line": "Middle line",
"Side line right": "Side line left",
"Big rect. left top": "Big rect. right bottom",
"Big rect. left bottom": "Big rect. right top",
"Big rect. left main": "Big rect. right main",
"Big rect. right top": "Big rect. left bottom",
"Big rect. right bottom": "Big rect. left top",
"Big rect. right main": "Big rect. left main",
"Small rect. left top": "Small rect. right bottom",
"Small rect. left bottom": "Small rect. right top",
"Small rect. left main": "Small rect. right main",
"Small rect. right top": "Small rect. left bottom",
"Small rect. right bottom": "Small rect. left top",
"Small rect. right main": "Small rect. left main",
"Circle left": "Circle right",
"Circle central": "Circle central",
"Circle right": "Circle left",
"Goal left crossbar": "Goal right crossbar",
"Goal left post left ": "Goal right post right",
"Goal left post right": "Goal right post left",
"Goal right crossbar": "Goal left crossbar",
"Goal right post left": "Goal left post right",
"Goal right post right": "Goal left post left ",
"Goal unknown": "Goal unknown",
"Line unknown": "Line unknown",
}
# RGB values
palette = {
"Big rect. left bottom": (127, 0, 0),
"Big rect. left main": (102, 102, 102),
"Big rect. left top": (0, 0, 127),
"Big rect. right bottom": (86, 32, 39),
"Big rect. right main": (48, 77, 0),
"Big rect. right top": (14, 97, 100),
"Circle central": (0, 0, 255),
"Circle left": (255, 127, 0),
"Circle right": (0, 255, 255),
"Goal left crossbar": (255, 255, 200),
"Goal left post left ": (165, 255, 0),
"Goal left post right": (155, 119, 45),
"Goal right crossbar": (86, 32, 139),
"Goal right post left": (196, 120, 153),
"Goal right post right": (166, 36, 52),
"Goal unknown": (0, 0, 0),
"Line unknown": (0, 0, 0),
"Middle line": (255, 255, 0),
"Side line bottom": (255, 0, 255),
"Side line left": (0, 255, 150),
"Side line right": (0, 230, 0),
"Side line top": (230, 0, 0),
"Small rect. left bottom": (0, 150, 255),
"Small rect. left main": (254, 173, 225),
"Small rect. left top": (87, 72, 39),
"Small rect. right bottom": (122, 0, 255),
"Small rect. right main": (128, 128, 128), # (255, 255, 255)
"Small rect. right top": (153, 23, 153),
}
def __init__(self, pitch_length=105.0, pitch_width=68.0):
"""
Initialize 3D coordinates of all elements of the soccer pitch.
:param pitch_length: According to FIFA rules, length belong to [90,120] meters
:param pitch_width: According to FIFA rules, length belong to [45,90] meters
"""
self.PITCH_LENGTH = pitch_length
self.PITCH_WIDTH = pitch_width
self.center_mark = np.array([0, 0, 0], dtype="float")
self.halfway_and_bottom_touch_line_mark = np.array([0, pitch_width / 2.0, 0], dtype="float")
self.halfway_and_top_touch_line_mark = np.array([0, -pitch_width / 2.0, 0], dtype="float")
self.halfway_line_and_center_circle_top_mark = np.array(
[0, -SoccerPitchSN.CENTER_CIRCLE_RADIUS, 0], dtype="float"
)
self.halfway_line_and_center_circle_bottom_mark = np.array(
[0, SoccerPitchSN.CENTER_CIRCLE_RADIUS, 0], dtype="float"
)
self.bottom_right_corner = np.array(
[pitch_length / 2.0, pitch_width / 2.0, 0], dtype="float"
)
self.bottom_left_corner = np.array(
[-pitch_length / 2.0, pitch_width / 2.0, 0], dtype="float"
)
self.top_right_corner = np.array([pitch_length / 2.0, -pitch_width / 2.0, 0], dtype="float")
self.top_left_corner = np.array([-pitch_length / 2.0, -34, 0], dtype="float")
self.left_goal_bottom_left_post = np.array(
[-pitch_length / 2.0, SoccerPitchSN.GOAL_LENGTH / 2.0, 0.0], dtype="float"
)
self.left_goal_top_left_post = np.array(
[-pitch_length / 2.0, SoccerPitchSN.GOAL_LENGTH / 2.0, -SoccerPitchSN.GOAL_HEIGHT],
dtype="float",
)
self.left_goal_bottom_right_post = np.array(
[-pitch_length / 2.0, -SoccerPitchSN.GOAL_LENGTH / 2.0, 0.0], dtype="float"
)
self.left_goal_top_right_post = np.array(
[-pitch_length / 2.0, -SoccerPitchSN.GOAL_LENGTH / 2.0, -SoccerPitchSN.GOAL_HEIGHT],
dtype="float",
)
self.right_goal_bottom_left_post = np.array(
[pitch_length / 2.0, -SoccerPitchSN.GOAL_LENGTH / 2.0, 0.0], dtype="float"
)
self.right_goal_top_left_post = np.array(
[pitch_length / 2.0, -SoccerPitchSN.GOAL_LENGTH / 2.0, -SoccerPitchSN.GOAL_HEIGHT],
dtype="float",
)
self.right_goal_bottom_right_post = np.array(
[pitch_length / 2.0, SoccerPitchSN.GOAL_LENGTH / 2.0, 0.0], dtype="float"
)
self.right_goal_top_right_post = np.array(
[pitch_length / 2.0, SoccerPitchSN.GOAL_LENGTH / 2.0, -SoccerPitchSN.GOAL_HEIGHT],
dtype="float",
)
self.left_penalty_mark = np.array(
[-pitch_length / 2.0 + SoccerPitchSN.GOAL_LINE_TO_PENALTY_MARK, 0, 0], dtype="float"
)
self.right_penalty_mark = np.array(
[pitch_length / 2.0 - SoccerPitchSN.GOAL_LINE_TO_PENALTY_MARK, 0, 0], dtype="float"
)
self.left_penalty_area_top_right_corner = np.array(
[
-pitch_length / 2.0 + SoccerPitchSN.PENALTY_AREA_LENGTH,
-SoccerPitchSN.PENALTY_AREA_WIDTH / 2.0,
0,
],
dtype="float",
)
self.left_penalty_area_top_left_corner = np.array(
[-pitch_length / 2.0, -SoccerPitchSN.PENALTY_AREA_WIDTH / 2.0, 0], dtype="float"
)
self.left_penalty_area_bottom_right_corner = np.array(
[
-pitch_length / 2.0 + SoccerPitchSN.PENALTY_AREA_LENGTH,
SoccerPitchSN.PENALTY_AREA_WIDTH / 2.0,
0,
],
dtype="float",
)
self.left_penalty_area_bottom_left_corner = np.array(
[-pitch_length / 2.0, SoccerPitchSN.PENALTY_AREA_WIDTH / 2.0, 0], dtype="float"
)
self.right_penalty_area_top_right_corner = np.array(
[pitch_length / 2.0, -SoccerPitchSN.PENALTY_AREA_WIDTH / 2.0, 0], dtype="float"
)
self.right_penalty_area_top_left_corner = np.array(
[
pitch_length / 2.0 - SoccerPitchSN.PENALTY_AREA_LENGTH,
-SoccerPitchSN.PENALTY_AREA_WIDTH / 2.0,
0,
],
dtype="float",
)
self.right_penalty_area_bottom_right_corner = np.array(
[pitch_length / 2.0, SoccerPitchSN.PENALTY_AREA_WIDTH / 2.0, 0], dtype="float"
)
self.right_penalty_area_bottom_left_corner = np.array(
[
pitch_length / 2.0 - SoccerPitchSN.PENALTY_AREA_LENGTH,
SoccerPitchSN.PENALTY_AREA_WIDTH / 2.0,
0,
],
dtype="float",
)
self.left_goal_area_top_right_corner = np.array(
[
-pitch_length / 2.0 + SoccerPitchSN.GOAL_AREA_LENGTH,
-SoccerPitchSN.GOAL_AREA_WIDTH / 2.0,
0,
],
dtype="float",
)
self.left_goal_area_top_left_corner = np.array(
[-pitch_length / 2.0, -SoccerPitchSN.GOAL_AREA_WIDTH / 2.0, 0], dtype="float"
)
self.left_goal_area_bottom_right_corner = np.array(
[
-pitch_length / 2.0 + SoccerPitchSN.GOAL_AREA_LENGTH,
SoccerPitchSN.GOAL_AREA_WIDTH / 2.0,
0,
],
dtype="float",
)
self.left_goal_area_bottom_left_corner = np.array(
[-pitch_length / 2.0, SoccerPitchSN.GOAL_AREA_WIDTH / 2.0, 0], dtype="float"
)
self.right_goal_area_top_right_corner = np.array(
[pitch_length / 2.0, -SoccerPitchSN.GOAL_AREA_WIDTH / 2.0, 0], dtype="float"
)
self.right_goal_area_top_left_corner = np.array(
[
pitch_length / 2.0 - SoccerPitchSN.GOAL_AREA_LENGTH,
-SoccerPitchSN.GOAL_AREA_WIDTH / 2.0,
0,
],
dtype="float",
)
self.right_goal_area_bottom_right_corner = np.array(
[pitch_length / 2.0, SoccerPitchSN.GOAL_AREA_WIDTH / 2.0, 0], dtype="float"
)
self.right_goal_area_bottom_left_corner = np.array(
[
pitch_length / 2.0 - SoccerPitchSN.GOAL_AREA_LENGTH,
SoccerPitchSN.GOAL_AREA_WIDTH / 2.0,
0,
],
dtype="float",
)
x = -pitch_length / 2.0 + SoccerPitchSN.PENALTY_AREA_LENGTH
dx = SoccerPitchSN.PENALTY_AREA_LENGTH - SoccerPitchSN.GOAL_LINE_TO_PENALTY_MARK
y = -np.sqrt(
SoccerPitchSN.CENTER_CIRCLE_RADIUS * SoccerPitchSN.CENTER_CIRCLE_RADIUS - dx * dx
)
self.top_left_16M_penalty_arc_mark = np.array([x, y, 0], dtype="float")
x = pitch_length / 2.0 - SoccerPitchSN.PENALTY_AREA_LENGTH
dx = SoccerPitchSN.PENALTY_AREA_LENGTH - SoccerPitchSN.GOAL_LINE_TO_PENALTY_MARK
y = -np.sqrt(
SoccerPitchSN.CENTER_CIRCLE_RADIUS * SoccerPitchSN.CENTER_CIRCLE_RADIUS - dx * dx
)
self.top_right_16M_penalty_arc_mark = np.array([x, y, 0], dtype="float")
x = -pitch_length / 2.0 + SoccerPitchSN.PENALTY_AREA_LENGTH
dx = SoccerPitchSN.PENALTY_AREA_LENGTH - SoccerPitchSN.GOAL_LINE_TO_PENALTY_MARK
y = np.sqrt(
SoccerPitchSN.CENTER_CIRCLE_RADIUS * SoccerPitchSN.CENTER_CIRCLE_RADIUS - dx * dx
)
self.bottom_left_16M_penalty_arc_mark = np.array([x, y, 0], dtype="float")
x = pitch_length / 2.0 - SoccerPitchSN.PENALTY_AREA_LENGTH
dx = SoccerPitchSN.PENALTY_AREA_LENGTH - SoccerPitchSN.GOAL_LINE_TO_PENALTY_MARK
y = np.sqrt(
SoccerPitchSN.CENTER_CIRCLE_RADIUS * SoccerPitchSN.CENTER_CIRCLE_RADIUS - dx * dx
)
self.bottom_right_16M_penalty_arc_mark = np.array([x, y, 0], dtype="float")
# self.set_elevations(elevation)
self.point_dict = {}
self.point_dict["CENTER_MARK"] = self.center_mark
self.point_dict["L_PENALTY_MARK"] = self.left_penalty_mark
self.point_dict["R_PENALTY_MARK"] = self.right_penalty_mark
self.point_dict["TL_PITCH_CORNER"] = self.top_left_corner
self.point_dict["BL_PITCH_CORNER"] = self.bottom_left_corner
self.point_dict["TR_PITCH_CORNER"] = self.top_right_corner
self.point_dict["BR_PITCH_CORNER"] = self.bottom_right_corner
self.point_dict["L_PENALTY_AREA_TL_CORNER"] = self.left_penalty_area_top_left_corner
self.point_dict["L_PENALTY_AREA_TR_CORNER"] = self.left_penalty_area_top_right_corner
self.point_dict["L_PENALTY_AREA_BL_CORNER"] = self.left_penalty_area_bottom_left_corner
self.point_dict["L_PENALTY_AREA_BR_CORNER"] = self.left_penalty_area_bottom_right_corner
self.point_dict["R_PENALTY_AREA_TL_CORNER"] = self.right_penalty_area_top_left_corner
self.point_dict["R_PENALTY_AREA_TR_CORNER"] = self.right_penalty_area_top_right_corner
self.point_dict["R_PENALTY_AREA_BL_CORNER"] = self.right_penalty_area_bottom_left_corner
self.point_dict["R_PENALTY_AREA_BR_CORNER"] = self.right_penalty_area_bottom_right_corner
self.point_dict["L_GOAL_AREA_TL_CORNER"] = self.left_goal_area_top_left_corner
self.point_dict["L_GOAL_AREA_TR_CORNER"] = self.left_goal_area_top_right_corner
self.point_dict["L_GOAL_AREA_BL_CORNER"] = self.left_goal_area_bottom_left_corner
self.point_dict["L_GOAL_AREA_BR_CORNER"] = self.left_goal_area_bottom_right_corner
self.point_dict["R_GOAL_AREA_TL_CORNER"] = self.right_goal_area_top_left_corner
self.point_dict["R_GOAL_AREA_TR_CORNER"] = self.right_goal_area_top_right_corner
self.point_dict["R_GOAL_AREA_BL_CORNER"] = self.right_goal_area_bottom_left_corner
self.point_dict["R_GOAL_AREA_BR_CORNER"] = self.right_goal_area_bottom_right_corner
self.point_dict["L_GOAL_TL_POST"] = self.left_goal_top_left_post
self.point_dict["L_GOAL_TR_POST"] = self.left_goal_top_right_post
self.point_dict["L_GOAL_BL_POST"] = self.left_goal_bottom_left_post
self.point_dict["L_GOAL_BR_POST"] = self.left_goal_bottom_right_post
self.point_dict["R_GOAL_TL_POST"] = self.right_goal_top_left_post
self.point_dict["R_GOAL_TR_POST"] = self.right_goal_top_right_post
self.point_dict["R_GOAL_BL_POST"] = self.right_goal_bottom_left_post
self.point_dict["R_GOAL_BR_POST"] = self.right_goal_bottom_right_post
self.point_dict[
"T_TOUCH_AND_HALFWAY_LINES_INTERSECTION"
] = self.halfway_and_top_touch_line_mark
self.point_dict[
"B_TOUCH_AND_HALFWAY_LINES_INTERSECTION"
] = self.halfway_and_bottom_touch_line_mark
self.point_dict[
"T_HALFWAY_LINE_AND_CENTER_CIRCLE_INTERSECTION"
] = self.halfway_line_and_center_circle_top_mark
self.point_dict[
"B_HALFWAY_LINE_AND_CENTER_CIRCLE_INTERSECTION"
] = self.halfway_line_and_center_circle_bottom_mark
self.point_dict[
"TL_16M_LINE_AND_PENALTY_ARC_INTERSECTION"
] = self.top_left_16M_penalty_arc_mark
self.point_dict[
"BL_16M_LINE_AND_PENALTY_ARC_INTERSECTION"
] = self.bottom_left_16M_penalty_arc_mark
self.point_dict[
"TR_16M_LINE_AND_PENALTY_ARC_INTERSECTION"
] = self.top_right_16M_penalty_arc_mark
self.point_dict[
"BR_16M_LINE_AND_PENALTY_ARC_INTERSECTION"
] = self.bottom_right_16M_penalty_arc_mark
self.line_extremities = dict()
self.line_extremities["Big rect. left bottom"] = (
self.point_dict["L_PENALTY_AREA_BL_CORNER"],
self.point_dict["L_PENALTY_AREA_BR_CORNER"],
)
self.line_extremities["Big rect. left top"] = (
self.point_dict["L_PENALTY_AREA_TL_CORNER"],
self.point_dict["L_PENALTY_AREA_TR_CORNER"],
)
self.line_extremities["Big rect. left main"] = (
self.point_dict["L_PENALTY_AREA_TR_CORNER"],
self.point_dict["L_PENALTY_AREA_BR_CORNER"],
)
self.line_extremities["Big rect. right bottom"] = (
self.point_dict["R_PENALTY_AREA_BL_CORNER"],
self.point_dict["R_PENALTY_AREA_BR_CORNER"],
)
self.line_extremities["Big rect. right top"] = (
self.point_dict["R_PENALTY_AREA_TL_CORNER"],
self.point_dict["R_PENALTY_AREA_TR_CORNER"],
)
self.line_extremities["Big rect. right main"] = (
self.point_dict["R_PENALTY_AREA_TL_CORNER"],
self.point_dict["R_PENALTY_AREA_BL_CORNER"],
)
self.line_extremities["Small rect. left bottom"] = (
self.point_dict["L_GOAL_AREA_BL_CORNER"],
self.point_dict["L_GOAL_AREA_BR_CORNER"],
)
self.line_extremities["Small rect. left top"] = (
self.point_dict["L_GOAL_AREA_TL_CORNER"],
self.point_dict["L_GOAL_AREA_TR_CORNER"],
)
self.line_extremities["Small rect. left main"] = (
self.point_dict["L_GOAL_AREA_TR_CORNER"],
self.point_dict["L_GOAL_AREA_BR_CORNER"],
)
self.line_extremities["Small rect. right bottom"] = (
self.point_dict["R_GOAL_AREA_BL_CORNER"],
self.point_dict["R_GOAL_AREA_BR_CORNER"],
)
self.line_extremities["Small rect. right top"] = (
self.point_dict["R_GOAL_AREA_TL_CORNER"],
self.point_dict["R_GOAL_AREA_TR_CORNER"],
)
self.line_extremities["Small rect. right main"] = (
self.point_dict["R_GOAL_AREA_TL_CORNER"],
self.point_dict["R_GOAL_AREA_BL_CORNER"],
)
self.line_extremities["Side line top"] = (
self.point_dict["TL_PITCH_CORNER"],
self.point_dict["TR_PITCH_CORNER"],
)
self.line_extremities["Side line bottom"] = (
self.point_dict["BL_PITCH_CORNER"],
self.point_dict["BR_PITCH_CORNER"],
)
self.line_extremities["Side line left"] = (
self.point_dict["TL_PITCH_CORNER"],
self.point_dict["BL_PITCH_CORNER"],
)
self.line_extremities["Side line right"] = (
self.point_dict["TR_PITCH_CORNER"],
self.point_dict["BR_PITCH_CORNER"],
)
self.line_extremities["Middle line"] = (
self.point_dict["T_TOUCH_AND_HALFWAY_LINES_INTERSECTION"],
self.point_dict["B_TOUCH_AND_HALFWAY_LINES_INTERSECTION"],
)
self.line_extremities["Goal left crossbar"] = (
self.point_dict["L_GOAL_TR_POST"],
self.point_dict["L_GOAL_TL_POST"],
)
self.line_extremities["Goal left post left "] = (
self.point_dict["L_GOAL_TL_POST"],
self.point_dict["L_GOAL_BL_POST"],
)
self.line_extremities["Goal left post right"] = (
self.point_dict["L_GOAL_TR_POST"],
self.point_dict["L_GOAL_BR_POST"],
)
self.line_extremities["Goal right crossbar"] = (
self.point_dict["R_GOAL_TL_POST"],
self.point_dict["R_GOAL_TR_POST"],
)
self.line_extremities["Goal right post left"] = (
self.point_dict["R_GOAL_TL_POST"],
self.point_dict["R_GOAL_BL_POST"],
)
self.line_extremities["Goal right post right"] = (
self.point_dict["R_GOAL_TR_POST"],
self.point_dict["R_GOAL_BR_POST"],
)
self.line_extremities["Circle right"] = (
self.point_dict["TR_16M_LINE_AND_PENALTY_ARC_INTERSECTION"],
self.point_dict["BR_16M_LINE_AND_PENALTY_ARC_INTERSECTION"],
)
self.line_extremities["Circle left"] = (
self.point_dict["TL_16M_LINE_AND_PENALTY_ARC_INTERSECTION"],
self.point_dict["BL_16M_LINE_AND_PENALTY_ARC_INTERSECTION"],
)
self.line_extremities_keys = dict()
self.line_extremities_keys["Big rect. left bottom"] = (
"L_PENALTY_AREA_BL_CORNER",
"L_PENALTY_AREA_BR_CORNER",
)
self.line_extremities_keys["Big rect. left top"] = (
"L_PENALTY_AREA_TL_CORNER",
"L_PENALTY_AREA_TR_CORNER",
)
self.line_extremities_keys["Big rect. left main"] = (
"L_PENALTY_AREA_TR_CORNER",
"L_PENALTY_AREA_BR_CORNER",
)
self.line_extremities_keys["Big rect. right bottom"] = (
"R_PENALTY_AREA_BL_CORNER",
"R_PENALTY_AREA_BR_CORNER",
)
self.line_extremities_keys["Big rect. right top"] = (
"R_PENALTY_AREA_TL_CORNER",
"R_PENALTY_AREA_TR_CORNER",
)
self.line_extremities_keys["Big rect. right main"] = (
"R_PENALTY_AREA_TL_CORNER",
"R_PENALTY_AREA_BL_CORNER",
)
self.line_extremities_keys["Small rect. left bottom"] = (
"L_GOAL_AREA_BL_CORNER",
"L_GOAL_AREA_BR_CORNER",
)
self.line_extremities_keys["Small rect. left top"] = (
"L_GOAL_AREA_TL_CORNER",
"L_GOAL_AREA_TR_CORNER",
)
self.line_extremities_keys["Small rect. left main"] = (
"L_GOAL_AREA_TR_CORNER",
"L_GOAL_AREA_BR_CORNER",
)
self.line_extremities_keys["Small rect. right bottom"] = (
"R_GOAL_AREA_BL_CORNER",
"R_GOAL_AREA_BR_CORNER",
)
self.line_extremities_keys["Small rect. right top"] = (
"R_GOAL_AREA_TL_CORNER",
"R_GOAL_AREA_TR_CORNER",
)
self.line_extremities_keys["Small rect. right main"] = (
"R_GOAL_AREA_TL_CORNER",
"R_GOAL_AREA_BL_CORNER",
)
self.line_extremities_keys["Side line top"] = ("TL_PITCH_CORNER", "TR_PITCH_CORNER")
self.line_extremities_keys["Side line bottom"] = ("BL_PITCH_CORNER", "BR_PITCH_CORNER")
self.line_extremities_keys["Side line left"] = ("TL_PITCH_CORNER", "BL_PITCH_CORNER")
self.line_extremities_keys["Side line right"] = ("TR_PITCH_CORNER", "BR_PITCH_CORNER")
self.line_extremities_keys["Middle line"] = (
"T_TOUCH_AND_HALFWAY_LINES_INTERSECTION",
"B_TOUCH_AND_HALFWAY_LINES_INTERSECTION",
)
self.line_extremities_keys["Goal left crossbar"] = ("L_GOAL_TR_POST", "L_GOAL_TL_POST")
self.line_extremities_keys["Goal left post left "] = ("L_GOAL_TL_POST", "L_GOAL_BL_POST")
self.line_extremities_keys["Goal left post right"] = ("L_GOAL_TR_POST", "L_GOAL_BR_POST")
self.line_extremities_keys["Goal right crossbar"] = ("R_GOAL_TL_POST", "R_GOAL_TR_POST")
self.line_extremities_keys["Goal right post left"] = ("R_GOAL_TL_POST", "R_GOAL_BL_POST")
self.line_extremities_keys["Goal right post right"] = ("R_GOAL_TR_POST", "R_GOAL_BR_POST")
self.line_extremities_keys["Circle right"] = (
"TR_16M_LINE_AND_PENALTY_ARC_INTERSECTION",
"BR_16M_LINE_AND_PENALTY_ARC_INTERSECTION",
)
self.line_extremities_keys["Circle left"] = (
"TL_16M_LINE_AND_PENALTY_ARC_INTERSECTION",
"BL_16M_LINE_AND_PENALTY_ARC_INTERSECTION",
)
def points(self):
return [
self.center_mark,
self.halfway_and_bottom_touch_line_mark,
self.halfway_and_top_touch_line_mark,
self.halfway_line_and_center_circle_top_mark,
self.halfway_line_and_center_circle_bottom_mark,
self.bottom_right_corner,
self.bottom_left_corner,
self.top_right_corner,
self.top_left_corner,
self.left_penalty_mark,
self.right_penalty_mark,
self.left_penalty_area_top_right_corner,
self.left_penalty_area_top_left_corner,
self.left_penalty_area_bottom_right_corner,
self.left_penalty_area_bottom_left_corner,
self.right_penalty_area_top_right_corner,
self.right_penalty_area_top_left_corner,
self.right_penalty_area_bottom_right_corner,
self.right_penalty_area_bottom_left_corner,
self.left_goal_area_top_right_corner,
self.left_goal_area_top_left_corner,
self.left_goal_area_bottom_right_corner,
self.left_goal_area_bottom_left_corner,
self.right_goal_area_top_right_corner,
self.right_goal_area_top_left_corner,
self.right_goal_area_bottom_right_corner,
self.right_goal_area_bottom_left_corner,
self.top_left_16M_penalty_arc_mark,
self.top_right_16M_penalty_arc_mark,
self.bottom_left_16M_penalty_arc_mark,
self.bottom_right_16M_penalty_arc_mark,
self.left_goal_top_left_post,
self.left_goal_top_right_post,
self.left_goal_bottom_left_post,
self.left_goal_bottom_right_post,
self.right_goal_top_left_post,
self.right_goal_top_right_post,
self.right_goal_bottom_left_post,
self.right_goal_bottom_right_post,
]
def sample_field_points(self, dist=0.1, dist_circles=0.2):
"""
Samples each pitch element every dist meters, returns a dictionary associating the class of the element with a list of points sampled along this element.
:param dist: the distance in meters between each point sampled
:param dist_circles: the distance in meters between each point sampled on circles
:return: a dictionary associating the class of the element with a list of points sampled along this element.
"""
polylines = dict()
center = self.point_dict["CENTER_MARK"]
fromAngle = 0.0
toAngle = 2 * np.pi
if toAngle < fromAngle:
toAngle += 2 * np.pi
x1 = center[0] + np.cos(fromAngle) * SoccerPitchSN.CENTER_CIRCLE_RADIUS
y1 = center[1] + np.sin(fromAngle) * SoccerPitchSN.CENTER_CIRCLE_RADIUS
z1 = 0.0
point = np.array((x1, y1, z1))
polyline = [point]
length = SoccerPitchSN.CENTER_CIRCLE_RADIUS * (toAngle - fromAngle)
nb_pts = int(length / dist_circles)
dangle = dist_circles / SoccerPitchSN.CENTER_CIRCLE_RADIUS
for i in range(1, nb_pts):
angle = fromAngle + i * dangle
x = center[0] + np.cos(angle) * SoccerPitchSN.CENTER_CIRCLE_RADIUS
y = center[1] + np.sin(angle) * SoccerPitchSN.CENTER_CIRCLE_RADIUS
z = 0
point = np.array((x, y, z))
polyline.append(point)
polylines["Circle central"] = polyline
for key, line in self.line_extremities.items():
if "Circle" in key:
if key == "Circle right":
top = self.point_dict["TR_16M_LINE_AND_PENALTY_ARC_INTERSECTION"]
bottom = self.point_dict["BR_16M_LINE_AND_PENALTY_ARC_INTERSECTION"]
center = self.point_dict["R_PENALTY_MARK"]
toAngle = np.arctan2(top[1] - center[1], top[0] - center[0]) + 2 * np.pi
fromAngle = np.arctan2(bottom[1] - center[1], bottom[0] - center[0]) + 2 * np.pi
elif key == "Circle left":
top = self.point_dict["TL_16M_LINE_AND_PENALTY_ARC_INTERSECTION"]
bottom = self.point_dict["BL_16M_LINE_AND_PENALTY_ARC_INTERSECTION"]
center = self.point_dict["L_PENALTY_MARK"]
fromAngle = np.arctan2(top[1] - center[1], top[0] - center[0]) + 2 * np.pi
toAngle = np.arctan2(bottom[1] - center[1], bottom[0] - center[0]) + 2 * np.pi
if toAngle < fromAngle:
toAngle += 2 * np.pi
x1 = center[0] + np.cos(fromAngle) * SoccerPitchSN.CENTER_CIRCLE_RADIUS
y1 = center[1] + np.sin(fromAngle) * SoccerPitchSN.CENTER_CIRCLE_RADIUS
z1 = 0.0
xn = center[0] + np.cos(toAngle) * SoccerPitchSN.CENTER_CIRCLE_RADIUS
yn = center[1] + np.sin(toAngle) * SoccerPitchSN.CENTER_CIRCLE_RADIUS
zn = 0.0
start = np.array((x1, y1, z1))
end = np.array((xn, yn, zn))
polyline = [start]
length = SoccerPitchSN.CENTER_CIRCLE_RADIUS * (toAngle - fromAngle)
nb_pts = int(length / dist_circles)
dangle = dist_circles / SoccerPitchSN.CENTER_CIRCLE_RADIUS
for i in range(1, nb_pts + 1):
angle = fromAngle + i * dangle
x = center[0] + np.cos(angle) * SoccerPitchSN.CENTER_CIRCLE_RADIUS
y = center[1] + np.sin(angle) * SoccerPitchSN.CENTER_CIRCLE_RADIUS
z = 0
point = np.array((x, y, z))
polyline.append(point)
polyline.append(end)
polylines[key] = polyline
else:
start = line[0]
end = line[1]
polyline = [start]
total_dist = np.sqrt(np.sum(np.square(start - end)))
nb_pts = int(total_dist / dist - 1)
v = end - start
v /= np.linalg.norm(v)
prev_pt = start
for i in range(nb_pts):
pt = prev_pt + dist * v
prev_pt = pt
polyline.append(pt)
polyline.append(end)
polylines[key] = polyline
return polylines
def get_2d_homogeneous_line(self, line_name):
"""
For lines belonging to the pitch lawn plane returns its 2D homogenous equation coefficients
:param line_name
:return: an array containing the three coefficients of the line
"""
# ensure line in football pitch plane
if (
line_name in self.line_extremities.keys()
and "post" not in line_name
and "crossbar" not in line_name
and "Circle" not in line_name
):
extremities = self.line_extremities[line_name]
p1 = np.array([extremities[0][0], extremities[0][1], 1], dtype="float")
p2 = np.array([extremities[1][0], extremities[1][1], 1], dtype="float")
line = np.cross(p1, p2)
return line
return None
class SoccerPitchSNCircleCentralSplit:
"""Static class variables that are specified by the rules of the game"""
GOAL_LINE_TO_PENALTY_MARK = 11.0
PENALTY_AREA_WIDTH = 40.32
PENALTY_AREA_LENGTH = 16.5
GOAL_AREA_WIDTH = 18.32
GOAL_AREA_LENGTH = 5.5
CENTER_CIRCLE_RADIUS = 9.15
GOAL_HEIGHT = 2.44
GOAL_LENGTH = 7.32
lines_classes = [
"Big rect. left bottom",
"Big rect. left main",
"Big rect. left top",
"Big rect. right bottom",
"Big rect. right main",
"Big rect. right top",
"Circle central left",
"Circle central right",
"Circle left",
"Circle right",
"Goal left crossbar",
"Goal left post left ",
"Goal left post right",
"Goal right crossbar",
"Goal right post left",
"Goal right post right",
"Goal unknown",
"Line unknown",
"Middle line",
"Side line bottom",
"Side line left",
"Side line right",
"Side line top",
"Small rect. left bottom",
"Small rect. left main",
"Small rect. left top",
"Small rect. right bottom",
"Small rect. right main",
"Small rect. right top",
]
symetric_classes = {
"Side line top": "Side line bottom",
"Side line bottom": "Side line top",
"Side line left": "Side line right",
"Middle line": "Middle line",
"Side line right": "Side line left",
"Big rect. left top": "Big rect. right bottom",
"Big rect. left bottom": "Big rect. right top",
"Big rect. left main": "Big rect. right main",
"Big rect. right top": "Big rect. left bottom",
"Big rect. right bottom": "Big rect. left top",
"Big rect. right main": "Big rect. left main",
"Small rect. left top": "Small rect. right bottom",
"Small rect. left bottom": "Small rect. right top",
"Small rect. left main": "Small rect. right main",
"Small rect. right top": "Small rect. left bottom",
"Small rect. right bottom": "Small rect. left top",
"Small rect. right main": "Small rect. left main",
"Circle left": "Circle right",
"Circle central left": "Circle central right",
"Circle central right": "Circle central left",
"Circle right": "Circle left",
"Goal left crossbar": "Goal right crossbar",
"Goal left post left ": "Goal right post right",
"Goal left post right": "Goal right post left",
"Goal right crossbar": "Goal left crossbar",
"Goal right post left": "Goal left post right",
"Goal right post right": "Goal left post left ",
"Goal unknown": "Goal unknown",
"Line unknown": "Line unknown",
}
# RGB values
palette = {
"Big rect. left bottom": (127, 0, 0),
"Big rect. left main": (102, 102, 102),
"Big rect. left top": (0, 0, 127),
"Big rect. right bottom": (86, 32, 39),
"Big rect. right main": (48, 77, 0),
"Big rect. right top": (14, 97, 100),
"Circle central left": (0, 0, 255),
"Circle central right": (0, 255, 0),
"Circle left": (255, 127, 0),
"Circle right": (0, 255, 255),
"Goal left crossbar": (255, 255, 200),
"Goal left post left ": (165, 255, 0),
"Goal left post right": (155, 119, 45),
"Goal right crossbar": (86, 32, 139),
"Goal right post left": (196, 120, 153),
"Goal right post right": (166, 36, 52),
"Goal unknown": (0, 0, 0),
"Line unknown": (0, 0, 0),
"Middle line": (255, 255, 0),
"Side line bottom": (255, 0, 255),
"Side line left": (0, 255, 150),
"Side line right": (0, 230, 0),
"Side line top": (230, 0, 0),
"Small rect. left bottom": (0, 150, 255),
"Small rect. left main": (254, 173, 225),
"Small rect. left top": (87, 72, 39),
"Small rect. right bottom": (122, 0, 255),
"Small rect. right main": (255, 255, 255),
"Small rect. right top": (153, 23, 153),
}
def __init__(self, pitch_length=105.0, pitch_width=68.0):
"""
Initialize 3D coordinates of all elements of the soccer pitch.
:param pitch_length: According to FIFA rules, length belong to [90,120] meters
:param pitch_width: According to FIFA rules, length belong to [45,90] meters
"""
self.PITCH_LENGTH = pitch_length
self.PITCH_WIDTH = pitch_width
self.center_mark = np.array([0, 0, 0], dtype="float")
self.halfway_and_bottom_touch_line_mark = np.array([0, pitch_width / 2.0, 0], dtype="float")
self.halfway_and_top_touch_line_mark = np.array([0, -pitch_width / 2.0, 0], dtype="float")
self.halfway_line_and_center_circle_top_mark = np.array(
[0, -SoccerPitchSNCircleCentralSplit.CENTER_CIRCLE_RADIUS, 0], dtype="float"
)
self.halfway_line_and_center_circle_bottom_mark = np.array(
[0, SoccerPitchSNCircleCentralSplit.CENTER_CIRCLE_RADIUS, 0], dtype="float"
)
self.bottom_right_corner = np.array(
[pitch_length / 2.0, pitch_width / 2.0, 0], dtype="float"
)
self.bottom_left_corner = np.array(
[-pitch_length / 2.0, pitch_width / 2.0, 0], dtype="float"
)
self.top_right_corner = np.array([pitch_length / 2.0, -pitch_width / 2.0, 0], dtype="float")
self.top_left_corner = np.array([-pitch_length / 2.0, -34, 0], dtype="float")
self.left_goal_bottom_left_post = np.array(
[-pitch_length / 2.0, SoccerPitchSNCircleCentralSplit.GOAL_LENGTH / 2.0, 0.0],
dtype="float",
)
self.left_goal_top_left_post = np.array(
[
-pitch_length / 2.0,
SoccerPitchSNCircleCentralSplit.GOAL_LENGTH / 2.0,
-SoccerPitchSNCircleCentralSplit.GOAL_HEIGHT,
],
dtype="float",
)
self.left_goal_bottom_right_post = np.array(
[-pitch_length / 2.0, -SoccerPitchSNCircleCentralSplit.GOAL_LENGTH / 2.0, 0.0],
dtype="float",
)
self.left_goal_top_right_post = np.array(
[
-pitch_length / 2.0,
-SoccerPitchSNCircleCentralSplit.GOAL_LENGTH / 2.0,
-SoccerPitchSNCircleCentralSplit.GOAL_HEIGHT,
],
dtype="float",
)
self.right_goal_bottom_left_post = np.array(
[pitch_length / 2.0, -SoccerPitchSNCircleCentralSplit.GOAL_LENGTH / 2.0, 0.0],
dtype="float",
)
self.right_goal_top_left_post = np.array(
[
pitch_length / 2.0,
-SoccerPitchSNCircleCentralSplit.GOAL_LENGTH / 2.0,
-SoccerPitchSNCircleCentralSplit.GOAL_HEIGHT,
],
dtype="float",
)
self.right_goal_bottom_right_post = np.array(
[pitch_length / 2.0, SoccerPitchSNCircleCentralSplit.GOAL_LENGTH / 2.0, 0.0],
dtype="float",
)
self.right_goal_top_right_post = np.array(
[
pitch_length / 2.0,
SoccerPitchSNCircleCentralSplit.GOAL_LENGTH / 2.0,
-SoccerPitchSNCircleCentralSplit.GOAL_HEIGHT,
],
dtype="float",
)
self.left_penalty_mark = np.array(
[-pitch_length / 2.0 + SoccerPitchSNCircleCentralSplit.GOAL_LINE_TO_PENALTY_MARK, 0, 0],
dtype="float",
)
self.right_penalty_mark = np.array(
[pitch_length / 2.0 - SoccerPitchSNCircleCentralSplit.GOAL_LINE_TO_PENALTY_MARK, 0, 0],
dtype="float",
)
self.left_penalty_area_top_right_corner = np.array(
[
-pitch_length / 2.0 + SoccerPitchSNCircleCentralSplit.PENALTY_AREA_LENGTH,
-SoccerPitchSNCircleCentralSplit.PENALTY_AREA_WIDTH / 2.0,
0,
],
dtype="float",
)
self.left_penalty_area_top_left_corner = np.array(
[-pitch_length / 2.0, -SoccerPitchSNCircleCentralSplit.PENALTY_AREA_WIDTH / 2.0, 0],
dtype="float",
)
self.left_penalty_area_bottom_right_corner = np.array(
[
-pitch_length / 2.0 + SoccerPitchSNCircleCentralSplit.PENALTY_AREA_LENGTH,
SoccerPitchSNCircleCentralSplit.PENALTY_AREA_WIDTH / 2.0,
0,
],
dtype="float",
)
self.left_penalty_area_bottom_left_corner = np.array(
[-pitch_length / 2.0, SoccerPitchSNCircleCentralSplit.PENALTY_AREA_WIDTH / 2.0, 0],
dtype="float",
)
self.right_penalty_area_top_right_corner = np.array(
[pitch_length / 2.0, -SoccerPitchSNCircleCentralSplit.PENALTY_AREA_WIDTH / 2.0, 0],
dtype="float",
)
self.right_penalty_area_top_left_corner = np.array(
[
pitch_length / 2.0 - SoccerPitchSNCircleCentralSplit.PENALTY_AREA_LENGTH,
-SoccerPitchSNCircleCentralSplit.PENALTY_AREA_WIDTH / 2.0,
0,
],
dtype="float",
)
self.right_penalty_area_bottom_right_corner = np.array(
[pitch_length / 2.0, SoccerPitchSNCircleCentralSplit.PENALTY_AREA_WIDTH / 2.0, 0],
dtype="float",
)
self.right_penalty_area_bottom_left_corner = np.array(
[
pitch_length / 2.0 - SoccerPitchSNCircleCentralSplit.PENALTY_AREA_LENGTH,
SoccerPitchSNCircleCentralSplit.PENALTY_AREA_WIDTH / 2.0,
0,
],
dtype="float",
)
self.left_goal_area_top_right_corner = np.array(
[
-pitch_length / 2.0 + SoccerPitchSNCircleCentralSplit.GOAL_AREA_LENGTH,
-SoccerPitchSNCircleCentralSplit.GOAL_AREA_WIDTH / 2.0,
0,
],
dtype="float",
)
self.left_goal_area_top_left_corner = np.array(
[-pitch_length / 2.0, -SoccerPitchSNCircleCentralSplit.GOAL_AREA_WIDTH / 2.0, 0],
dtype="float",
)
self.left_goal_area_bottom_right_corner = np.array(
[
-pitch_length / 2.0 + SoccerPitchSNCircleCentralSplit.GOAL_AREA_LENGTH,
SoccerPitchSNCircleCentralSplit.GOAL_AREA_WIDTH / 2.0,
0,
],
dtype="float",
)
self.left_goal_area_bottom_left_corner = np.array(
[-pitch_length / 2.0, SoccerPitchSNCircleCentralSplit.GOAL_AREA_WIDTH / 2.0, 0],
dtype="float",
)
self.right_goal_area_top_right_corner = np.array(
[pitch_length / 2.0, -SoccerPitchSNCircleCentralSplit.GOAL_AREA_WIDTH / 2.0, 0],
dtype="float",
)
self.right_goal_area_top_left_corner = np.array(
[
pitch_length / 2.0 - SoccerPitchSNCircleCentralSplit.GOAL_AREA_LENGTH,
-SoccerPitchSNCircleCentralSplit.GOAL_AREA_WIDTH / 2.0,
0,
],
dtype="float",
)
self.right_goal_area_bottom_right_corner = np.array(
[pitch_length / 2.0, SoccerPitchSNCircleCentralSplit.GOAL_AREA_WIDTH / 2.0, 0],
dtype="float",
)
self.right_goal_area_bottom_left_corner = np.array(
[
pitch_length / 2.0 - SoccerPitchSNCircleCentralSplit.GOAL_AREA_LENGTH,
SoccerPitchSNCircleCentralSplit.GOAL_AREA_WIDTH / 2.0,
0,
],
dtype="float",
)
x = -pitch_length / 2.0 + SoccerPitchSNCircleCentralSplit.PENALTY_AREA_LENGTH
dx = (
SoccerPitchSNCircleCentralSplit.PENALTY_AREA_LENGTH
- SoccerPitchSNCircleCentralSplit.GOAL_LINE_TO_PENALTY_MARK
)
y = -np.sqrt(
SoccerPitchSNCircleCentralSplit.CENTER_CIRCLE_RADIUS
* SoccerPitchSNCircleCentralSplit.CENTER_CIRCLE_RADIUS
- dx * dx
)
self.top_left_16M_penalty_arc_mark = np.array([x, y, 0], dtype="float")
x = pitch_length / 2.0 - SoccerPitchSNCircleCentralSplit.PENALTY_AREA_LENGTH
dx = (
SoccerPitchSNCircleCentralSplit.PENALTY_AREA_LENGTH
- SoccerPitchSNCircleCentralSplit.GOAL_LINE_TO_PENALTY_MARK
)
y = -np.sqrt(
SoccerPitchSNCircleCentralSplit.CENTER_CIRCLE_RADIUS
* SoccerPitchSNCircleCentralSplit.CENTER_CIRCLE_RADIUS
- dx * dx
)
self.top_right_16M_penalty_arc_mark = np.array([x, y, 0], dtype="float")
x = -pitch_length / 2.0 + SoccerPitchSNCircleCentralSplit.PENALTY_AREA_LENGTH
dx = (
SoccerPitchSNCircleCentralSplit.PENALTY_AREA_LENGTH
- SoccerPitchSNCircleCentralSplit.GOAL_LINE_TO_PENALTY_MARK
)
y = np.sqrt(
SoccerPitchSNCircleCentralSplit.CENTER_CIRCLE_RADIUS
* SoccerPitchSNCircleCentralSplit.CENTER_CIRCLE_RADIUS
- dx * dx
)
self.bottom_left_16M_penalty_arc_mark = np.array([x, y, 0], dtype="float")
x = pitch_length / 2.0 - SoccerPitchSNCircleCentralSplit.PENALTY_AREA_LENGTH
dx = (
SoccerPitchSNCircleCentralSplit.PENALTY_AREA_LENGTH
- SoccerPitchSNCircleCentralSplit.GOAL_LINE_TO_PENALTY_MARK
)
y = np.sqrt(
SoccerPitchSNCircleCentralSplit.CENTER_CIRCLE_RADIUS
* SoccerPitchSNCircleCentralSplit.CENTER_CIRCLE_RADIUS
- dx * dx
)
self.bottom_right_16M_penalty_arc_mark = np.array([x, y, 0], dtype="float")
# self.set_elevations(elevation)
self.point_dict = {}
self.point_dict["CENTER_MARK"] = self.center_mark
self.point_dict["L_PENALTY_MARK"] = self.left_penalty_mark
self.point_dict["R_PENALTY_MARK"] = self.right_penalty_mark
self.point_dict["TL_PITCH_CORNER"] = self.top_left_corner
self.point_dict["BL_PITCH_CORNER"] = self.bottom_left_corner
self.point_dict["TR_PITCH_CORNER"] = self.top_right_corner
self.point_dict["BR_PITCH_CORNER"] = self.bottom_right_corner
self.point_dict["L_PENALTY_AREA_TL_CORNER"] = self.left_penalty_area_top_left_corner
self.point_dict["L_PENALTY_AREA_TR_CORNER"] = self.left_penalty_area_top_right_corner
self.point_dict["L_PENALTY_AREA_BL_CORNER"] = self.left_penalty_area_bottom_left_corner
self.point_dict["L_PENALTY_AREA_BR_CORNER"] = self.left_penalty_area_bottom_right_corner
self.point_dict["R_PENALTY_AREA_TL_CORNER"] = self.right_penalty_area_top_left_corner
self.point_dict["R_PENALTY_AREA_TR_CORNER"] = self.right_penalty_area_top_right_corner
self.point_dict["R_PENALTY_AREA_BL_CORNER"] = self.right_penalty_area_bottom_left_corner
self.point_dict["R_PENALTY_AREA_BR_CORNER"] = self.right_penalty_area_bottom_right_corner
self.point_dict["L_GOAL_AREA_TL_CORNER"] = self.left_goal_area_top_left_corner
self.point_dict["L_GOAL_AREA_TR_CORNER"] = self.left_goal_area_top_right_corner
self.point_dict["L_GOAL_AREA_BL_CORNER"] = self.left_goal_area_bottom_left_corner
self.point_dict["L_GOAL_AREA_BR_CORNER"] = self.left_goal_area_bottom_right_corner
self.point_dict["R_GOAL_AREA_TL_CORNER"] = self.right_goal_area_top_left_corner
self.point_dict["R_GOAL_AREA_TR_CORNER"] = self.right_goal_area_top_right_corner
self.point_dict["R_GOAL_AREA_BL_CORNER"] = self.right_goal_area_bottom_left_corner
self.point_dict["R_GOAL_AREA_BR_CORNER"] = self.right_goal_area_bottom_right_corner
self.point_dict["L_GOAL_TL_POST"] = self.left_goal_top_left_post
self.point_dict["L_GOAL_TR_POST"] = self.left_goal_top_right_post
self.point_dict["L_GOAL_BL_POST"] = self.left_goal_bottom_left_post
self.point_dict["L_GOAL_BR_POST"] = self.left_goal_bottom_right_post
self.point_dict["R_GOAL_TL_POST"] = self.right_goal_top_left_post
self.point_dict["R_GOAL_TR_POST"] = self.right_goal_top_right_post
self.point_dict["R_GOAL_BL_POST"] = self.right_goal_bottom_left_post
self.point_dict["R_GOAL_BR_POST"] = self.right_goal_bottom_right_post
self.point_dict[
"T_TOUCH_AND_HALFWAY_LINES_INTERSECTION"
] = self.halfway_and_top_touch_line_mark
self.point_dict[
"B_TOUCH_AND_HALFWAY_LINES_INTERSECTION"
] = self.halfway_and_bottom_touch_line_mark
self.point_dict[
"T_HALFWAY_LINE_AND_CENTER_CIRCLE_INTERSECTION"
] = self.halfway_line_and_center_circle_top_mark
self.point_dict[
"B_HALFWAY_LINE_AND_CENTER_CIRCLE_INTERSECTION"
] = self.halfway_line_and_center_circle_bottom_mark
self.point_dict[
"TL_16M_LINE_AND_PENALTY_ARC_INTERSECTION"
] = self.top_left_16M_penalty_arc_mark
self.point_dict[
"BL_16M_LINE_AND_PENALTY_ARC_INTERSECTION"
] = self.bottom_left_16M_penalty_arc_mark
self.point_dict[
"TR_16M_LINE_AND_PENALTY_ARC_INTERSECTION"
] = self.top_right_16M_penalty_arc_mark
self.point_dict[
"BR_16M_LINE_AND_PENALTY_ARC_INTERSECTION"
] = self.bottom_right_16M_penalty_arc_mark
self.line_extremities = dict()
self.line_extremities["Big rect. left bottom"] = (
self.point_dict["L_PENALTY_AREA_BL_CORNER"],
self.point_dict["L_PENALTY_AREA_BR_CORNER"],
)
self.line_extremities["Big rect. left top"] = (
self.point_dict["L_PENALTY_AREA_TL_CORNER"],
self.point_dict["L_PENALTY_AREA_TR_CORNER"],
)
self.line_extremities["Big rect. left main"] = (
self.point_dict["L_PENALTY_AREA_TR_CORNER"],
self.point_dict["L_PENALTY_AREA_BR_CORNER"],
)
self.line_extremities["Big rect. right bottom"] = (
self.point_dict["R_PENALTY_AREA_BL_CORNER"],
self.point_dict["R_PENALTY_AREA_BR_CORNER"],
)
self.line_extremities["Big rect. right top"] = (
self.point_dict["R_PENALTY_AREA_TL_CORNER"],
self.point_dict["R_PENALTY_AREA_TR_CORNER"],
)
self.line_extremities["Big rect. right main"] = (
self.point_dict["R_PENALTY_AREA_TL_CORNER"],
self.point_dict["R_PENALTY_AREA_BL_CORNER"],
)
self.line_extremities["Small rect. left bottom"] = (
self.point_dict["L_GOAL_AREA_BL_CORNER"],
self.point_dict["L_GOAL_AREA_BR_CORNER"],
)
self.line_extremities["Small rect. left top"] = (
self.point_dict["L_GOAL_AREA_TL_CORNER"],
self.point_dict["L_GOAL_AREA_TR_CORNER"],
)
self.line_extremities["Small rect. left main"] = (
self.point_dict["L_GOAL_AREA_TR_CORNER"],
self.point_dict["L_GOAL_AREA_BR_CORNER"],
)
self.line_extremities["Small rect. right bottom"] = (
self.point_dict["R_GOAL_AREA_BL_CORNER"],
self.point_dict["R_GOAL_AREA_BR_CORNER"],
)
self.line_extremities["Small rect. right top"] = (
self.point_dict["R_GOAL_AREA_TL_CORNER"],
self.point_dict["R_GOAL_AREA_TR_CORNER"],
)
self.line_extremities["Small rect. right main"] = (
self.point_dict["R_GOAL_AREA_TL_CORNER"],
self.point_dict["R_GOAL_AREA_BL_CORNER"],
)
self.line_extremities["Side line top"] = (
self.point_dict["TL_PITCH_CORNER"],
self.point_dict["TR_PITCH_CORNER"],
)
self.line_extremities["Side line bottom"] = (
self.point_dict["BL_PITCH_CORNER"],
self.point_dict["BR_PITCH_CORNER"],
)
self.line_extremities["Side line left"] = (
self.point_dict["TL_PITCH_CORNER"],
self.point_dict["BL_PITCH_CORNER"],
)
self.line_extremities["Side line right"] = (
self.point_dict["TR_PITCH_CORNER"],
self.point_dict["BR_PITCH_CORNER"],
)
self.line_extremities["Middle line"] = (
self.point_dict["T_TOUCH_AND_HALFWAY_LINES_INTERSECTION"],
self.point_dict["B_TOUCH_AND_HALFWAY_LINES_INTERSECTION"],
)
self.line_extremities["Goal left crossbar"] = (
self.point_dict["L_GOAL_TR_POST"],
self.point_dict["L_GOAL_TL_POST"],
)
self.line_extremities["Goal left post left "] = (
self.point_dict["L_GOAL_TL_POST"],
self.point_dict["L_GOAL_BL_POST"],
)
self.line_extremities["Goal left post right"] = (
self.point_dict["L_GOAL_TR_POST"],
self.point_dict["L_GOAL_BR_POST"],
)
self.line_extremities["Goal right crossbar"] = (
self.point_dict["R_GOAL_TL_POST"],
self.point_dict["R_GOAL_TR_POST"],
)
self.line_extremities["Goal right post left"] = (
self.point_dict["R_GOAL_TL_POST"],
self.point_dict["R_GOAL_BL_POST"],
)
self.line_extremities["Goal right post right"] = (
self.point_dict["R_GOAL_TR_POST"],
self.point_dict["R_GOAL_BR_POST"],
)
self.line_extremities["Circle right"] = (
self.point_dict["TR_16M_LINE_AND_PENALTY_ARC_INTERSECTION"],
self.point_dict["BR_16M_LINE_AND_PENALTY_ARC_INTERSECTION"],
)
self.line_extremities["Circle left"] = (
self.point_dict["TL_16M_LINE_AND_PENALTY_ARC_INTERSECTION"],
self.point_dict["BL_16M_LINE_AND_PENALTY_ARC_INTERSECTION"],
)
self.line_extremities_keys = dict()
self.line_extremities_keys["Big rect. left bottom"] = (
"L_PENALTY_AREA_BL_CORNER",
"L_PENALTY_AREA_BR_CORNER",
)
self.line_extremities_keys["Big rect. left top"] = (
"L_PENALTY_AREA_TL_CORNER",
"L_PENALTY_AREA_TR_CORNER",
)
self.line_extremities_keys["Big rect. left main"] = (
"L_PENALTY_AREA_TR_CORNER",
"L_PENALTY_AREA_BR_CORNER",
)
self.line_extremities_keys["Big rect. right bottom"] = (
"R_PENALTY_AREA_BL_CORNER",
"R_PENALTY_AREA_BR_CORNER",
)
self.line_extremities_keys["Big rect. right top"] = (
"R_PENALTY_AREA_TL_CORNER",
"R_PENALTY_AREA_TR_CORNER",
)
self.line_extremities_keys["Big rect. right main"] = (
"R_PENALTY_AREA_TL_CORNER",
"R_PENALTY_AREA_BL_CORNER",
)
self.line_extremities_keys["Small rect. left bottom"] = (
"L_GOAL_AREA_BL_CORNER",
"L_GOAL_AREA_BR_CORNER",
)
self.line_extremities_keys["Small rect. left top"] = (
"L_GOAL_AREA_TL_CORNER",
"L_GOAL_AREA_TR_CORNER",
)
self.line_extremities_keys["Small rect. left main"] = (
"L_GOAL_AREA_TR_CORNER",
"L_GOAL_AREA_BR_CORNER",
)
self.line_extremities_keys["Small rect. right bottom"] = (
"R_GOAL_AREA_BL_CORNER",
"R_GOAL_AREA_BR_CORNER",
)
self.line_extremities_keys["Small rect. right top"] = (
"R_GOAL_AREA_TL_CORNER",
"R_GOAL_AREA_TR_CORNER",
)
self.line_extremities_keys["Small rect. right main"] = (
"R_GOAL_AREA_TL_CORNER",
"R_GOAL_AREA_BL_CORNER",
)
self.line_extremities_keys["Side line top"] = ("TL_PITCH_CORNER", "TR_PITCH_CORNER")
self.line_extremities_keys["Side line bottom"] = ("BL_PITCH_CORNER", "BR_PITCH_CORNER")
self.line_extremities_keys["Side line left"] = ("TL_PITCH_CORNER", "BL_PITCH_CORNER")
self.line_extremities_keys["Side line right"] = ("TR_PITCH_CORNER", "BR_PITCH_CORNER")
self.line_extremities_keys["Middle line"] = (
"T_TOUCH_AND_HALFWAY_LINES_INTERSECTION",
"B_TOUCH_AND_HALFWAY_LINES_INTERSECTION",
)
self.line_extremities_keys["Goal left crossbar"] = ("L_GOAL_TR_POST", "L_GOAL_TL_POST")
self.line_extremities_keys["Goal left post left "] = ("L_GOAL_TL_POST", "L_GOAL_BL_POST")
self.line_extremities_keys["Goal left post right"] = ("L_GOAL_TR_POST", "L_GOAL_BR_POST")
self.line_extremities_keys["Goal right crossbar"] = ("R_GOAL_TL_POST", "R_GOAL_TR_POST")
self.line_extremities_keys["Goal right post left"] = ("R_GOAL_TL_POST", "R_GOAL_BL_POST")
self.line_extremities_keys["Goal right post right"] = ("R_GOAL_TR_POST", "R_GOAL_BR_POST")
self.line_extremities_keys["Circle right"] = (
"TR_16M_LINE_AND_PENALTY_ARC_INTERSECTION",
"BR_16M_LINE_AND_PENALTY_ARC_INTERSECTION",
)
self.line_extremities_keys["Circle left"] = (
"TL_16M_LINE_AND_PENALTY_ARC_INTERSECTION",
"BL_16M_LINE_AND_PENALTY_ARC_INTERSECTION",
)
def points(self):
return [
self.center_mark,
self.halfway_and_bottom_touch_line_mark,
self.halfway_and_top_touch_line_mark,
self.halfway_line_and_center_circle_top_mark,
self.halfway_line_and_center_circle_bottom_mark,
self.bottom_right_corner,
self.bottom_left_corner,
self.top_right_corner,
self.top_left_corner,
self.left_penalty_mark,
self.right_penalty_mark,
self.left_penalty_area_top_right_corner,
self.left_penalty_area_top_left_corner,
self.left_penalty_area_bottom_right_corner,
self.left_penalty_area_bottom_left_corner,
self.right_penalty_area_top_right_corner,
self.right_penalty_area_top_left_corner,
self.right_penalty_area_bottom_right_corner,
self.right_penalty_area_bottom_left_corner,
self.left_goal_area_top_right_corner,
self.left_goal_area_top_left_corner,
self.left_goal_area_bottom_right_corner,
self.left_goal_area_bottom_left_corner,
self.right_goal_area_top_right_corner,
self.right_goal_area_top_left_corner,
self.right_goal_area_bottom_right_corner,
self.right_goal_area_bottom_left_corner,
self.top_left_16M_penalty_arc_mark,
self.top_right_16M_penalty_arc_mark,
self.bottom_left_16M_penalty_arc_mark,
self.bottom_right_16M_penalty_arc_mark,
self.left_goal_top_left_post,
self.left_goal_top_right_post,
self.left_goal_bottom_left_post,
self.left_goal_bottom_right_post,
self.right_goal_top_left_post,
self.right_goal_top_right_post,
self.right_goal_bottom_left_post,
self.right_goal_bottom_right_post,
]
def sample_field_points(self, dist=0.1, dist_circles=0.2):
"""
Samples each pitch element every dist meters, returns a dictionary associating the class of the element with a list of points sampled along this element.
:param dist: the distance in meters between each point sampled
:param dist_circles: the distance in meters between each point sampled on circles
:return: a dictionary associating the class of the element with a list of points sampled along this element.
"""
polylines = dict()
center = self.point_dict["CENTER_MARK"]
fromAngle = 0.0
toAngle = 2 * np.pi
if toAngle < fromAngle:
toAngle += 2 * np.pi
x1 = center[0] + np.cos(fromAngle) * SoccerPitchSNCircleCentralSplit.CENTER_CIRCLE_RADIUS
y1 = center[1] + np.sin(fromAngle) * SoccerPitchSNCircleCentralSplit.CENTER_CIRCLE_RADIUS
z1 = 0.0
point = np.array((x1, y1, z1))
polyline = [point]
length = SoccerPitchSNCircleCentralSplit.CENTER_CIRCLE_RADIUS * (toAngle - fromAngle)
nb_pts = int(length / dist_circles)
dangle = dist_circles / SoccerPitchSNCircleCentralSplit.CENTER_CIRCLE_RADIUS
for i in range(1, nb_pts):
angle = fromAngle + i * dangle
x = center[0] + np.cos(angle) * SoccerPitchSNCircleCentralSplit.CENTER_CIRCLE_RADIUS
y = center[1] + np.sin(angle) * SoccerPitchSNCircleCentralSplit.CENTER_CIRCLE_RADIUS
z = 0
point = np.array((x, y, z))
polyline.append(point)
# split central circle in left and right
polylines["Circle central left"] = [p for p in polyline if p[0] < 0.0]
polylines["Circle central right"] = [p for p in polyline if p[0] >= 0.0]
for key, line in self.line_extremities.items():
if "Circle" in key:
if key == "Circle right":
top = self.point_dict["TR_16M_LINE_AND_PENALTY_ARC_INTERSECTION"]
bottom = self.point_dict["BR_16M_LINE_AND_PENALTY_ARC_INTERSECTION"]
center = self.point_dict["R_PENALTY_MARK"]
toAngle = np.arctan2(top[1] - center[1], top[0] - center[0]) + 2 * np.pi
fromAngle = np.arctan2(bottom[1] - center[1], bottom[0] - center[0]) + 2 * np.pi
elif key == "Circle left":
top = self.point_dict["TL_16M_LINE_AND_PENALTY_ARC_INTERSECTION"]
bottom = self.point_dict["BL_16M_LINE_AND_PENALTY_ARC_INTERSECTION"]
center = self.point_dict["L_PENALTY_MARK"]
fromAngle = np.arctan2(top[1] - center[1], top[0] - center[0]) + 2 * np.pi
toAngle = np.arctan2(bottom[1] - center[1], bottom[0] - center[0]) + 2 * np.pi
if toAngle < fromAngle:
toAngle += 2 * np.pi
x1 = (
center[0]
+ np.cos(fromAngle) * SoccerPitchSNCircleCentralSplit.CENTER_CIRCLE_RADIUS
)
y1 = (
center[1]
+ np.sin(fromAngle) * SoccerPitchSNCircleCentralSplit.CENTER_CIRCLE_RADIUS
)
z1 = 0.0
xn = (
center[0]
+ np.cos(toAngle) * SoccerPitchSNCircleCentralSplit.CENTER_CIRCLE_RADIUS
)
yn = (
center[1]
+ np.sin(toAngle) * SoccerPitchSNCircleCentralSplit.CENTER_CIRCLE_RADIUS
)
zn = 0.0
start = np.array((x1, y1, z1))
end = np.array((xn, yn, zn))
polyline = [start]
length = SoccerPitchSNCircleCentralSplit.CENTER_CIRCLE_RADIUS * (
toAngle - fromAngle
)
nb_pts = int(length / dist_circles)
dangle = dist_circles / SoccerPitchSNCircleCentralSplit.CENTER_CIRCLE_RADIUS
for i in range(1, nb_pts + 1):
angle = fromAngle + i * dangle
x = (
center[0]
+ np.cos(angle) * SoccerPitchSNCircleCentralSplit.CENTER_CIRCLE_RADIUS
)
y = (
center[1]
+ np.sin(angle) * SoccerPitchSNCircleCentralSplit.CENTER_CIRCLE_RADIUS
)
z = 0
point = np.array((x, y, z))
polyline.append(point)
polyline.append(end)
polylines[key] = polyline
else:
start = line[0]
end = line[1]
polyline = [start]
total_dist = np.sqrt(np.sum(np.square(start - end)))
nb_pts = int(total_dist / dist - 1)
v = end - start
v /= np.linalg.norm(v)
prev_pt = start
for i in range(nb_pts):
pt = prev_pt + dist * v
prev_pt = pt
polyline.append(pt)
polyline.append(end)
polylines[key] = polyline
return polylines
def get_2d_homogeneous_line(self, line_name):
"""
For lines belonging to the pitch lawn plane returns its 2D homogenous equation coefficients
:param line_name
:return: an array containing the three coefficients of the line
"""
# ensure line in football pitch plane
if (
line_name in self.line_extremities.keys()
and "post" not in line_name
and "crossbar" not in line_name
and "Circle" not in line_name
):
extremities = self.line_extremities[line_name]
p1 = np.array([extremities[0][0], extremities[0][1], 1], dtype="float")
p2 = np.array([extremities[1][0], extremities[1][1], 1], dtype="float")
line = np.cross(p1, p2)
return line
return None
class Abstract3dModel(metaclass=ABCMeta):
def __init__(self) -> None:
self.points = None # keypoints: tensor of shape (N, 3)
self.points_sampled = (
None # sampled points for each segment Dict[str: torch.tensor of shape (*, 3)]
)
self.points_sampled_palette = {}
self.segment_names = set(self.points_sampled_palette.keys())
self.line_segments = [] # tensor of shape (3, S_l, 2) containing 2 points
self.line_segments_names = [] # list of of respective names for each s in S_l
self.line_palette = [] # list of RGB tuples
self.circle_segments = None # tensor of shape (3, S_c, num_points_per_circle)
self.circle_segments_names = [] # list of of respective names for each s in S_c
self.circle_palette = [] # list of RGB tuples
class Meshgrid(Abstract3dModel):
def __init__(self, height=68, width=105):
self.points = kornia.utils.create_meshgrid(
height=height + 1, width=width + 1, normalized_coordinates=True
)
self.points = self.points.flatten(start_dim=-3, end_dim=-2)
self.points[:, :, 0] = self.points[:, :, 0] * width / 2
self.points[:, :, 1] = self.points[:, :, 1] * height / 2
self.points = kornia.geometry.conversions.convert_points_to_homogeneous(self.points)
self.points[:, :, -1] = 0.0 # set z=0)
self.points = self.points.squeeze(0)
self.points_sampled = {"meshgrid": self.points}
class SoccerPitchLineCircleSegments(Abstract3dModel):
def __init__(
self,
base_field,
device="cpu",
N_cstar=128,
sampling_factor_lines=0.2,
sampling_factor_circles=0.8,
) -> None:
if not (
isinstance(base_field, SoccerPitchSNCircleCentralSplit)
or isinstance(base_field, SoccerPitchSN)
):
raise NotImplementedError
self.sampling_factor_lines = sampling_factor_lines
self.sampling_factor_circles = sampling_factor_circles
self._field_sncalib = base_field
self.device = device
# classical keypoints as single tensor
self.points = torch.from_numpy(np.stack(self._field_sncalib.points())).float().to(device)
# sampled points for each segment Dict[str: torch.tensor of shape (*, 3)]
self.points_sampled = self._field_sncalib.sample_field_points(
self.sampling_factor_lines, self.sampling_factor_circles
)
self.points_sampled = {
k: torch.from_numpy(np.stack(v)).float().to(device)
for k, v in self.points_sampled.items()
}
self.points_sampled_palette = self._field_sncalib.palette
self.segment_names = set(self.points_sampled_palette.keys())
self.cmap_01 = {k: [c / 255.0 for c in v] for k, v in self.points_sampled_palette.items()}
self.line_collection: List[LineCollection] = []
self.line_segments = [] # (3, S, 2)
self.line_segments_names = []
for line_name, (p0, p1) in self._field_sncalib.line_extremities.items():
if "Circle" not in line_name:
p0 = torch.from_numpy(p0).float().to(device)
p1 = torch.from_numpy(p1).float().to(device)
direction = p1 - p0
direction_norm = direction / torch.linalg.norm(direction)
self.line_collection.append(
LineCollection(
support=p0,
direction=direction,
direction_norm=direction_norm,
)
)
self.line_segments_names.append(line_name)
self.line_segments.append(torch.stack([p0, p1], dim=1))
self.line_segments = torch.stack(self.line_segments, dim=-1).transpose(1, 2).to(device)
self.line_palette = [
self._field_sncalib.palette[self.line_segments_names[i]]
for i in range(len(self.line_segments_names))
]
if isinstance(base_field, SoccerPitchSNCircleCentralSplit):
self.circle_segments_names = [
"Circle central left",
"Circle central right",
"Circle left",
"Circle right",
]
elif isinstance(base_field, SoccerPitchSN):
self.circle_segments_names = [
"Circle central",
"Circle left",
"Circle right",
]
else:
raise NotImplementedError
self.circle_segments = self._sample_points_from_circle_segments(
m=N_cstar
) # (3, num_circles, num_points_per_circle)
self.circle_palette = [
self._field_sncalib.palette[self.circle_segments_names[i]]
for i in range(len(self.circle_segments_names))
]
def _sample_points_from_circle_segments(self, m: int):
sampled_points = self._field_sncalib.sample_field_points(dist=1.0, dist_circles=0.05)
for key in self.circle_segments_names:
assert len(sampled_points[key]) >= m
return (
torch.stack(
[
torch.from_numpy(np.stack(random.sample(sampled_points[key], k=m), axis=-1))
for key in self.circle_segments_names
],
dim=1,
)
.float()
.to(self.device)
) # (3, S, m)
if __name__ == "__main__":
from matplotlib import pyplot as plt
from mpl_toolkits.mplot3d.art3d import Poly3DCollection
model3d = SoccerPitchLineCircleSegments()
fig = plt.figure(figsize=(20, 20))
ax = fig.add_subplot(projection="3d")
for s in range(len(model3d.line_collection)):
ax.quiver(
model3d.line_collection[s].support[0],
model3d.line_collection[s].support[1],
model3d.line_collection[s].support[2],
model3d.line_collection[s].direction[0],
model3d.line_collection[s].direction[1],
model3d.line_collection[s].direction[2],
arrow_length_ratio=0.05,
color=[x / 255.0 for x in model3d.line_palette[s]],
zorder=2000,
# length=68.0,
linewidths=3,
label=model3d.line_segments_names[s],
alpha=0.5,
)
plt.legend()
ax.set_xlim([-105 / 2, 105 / 2])
ax.set_ylim([-105 / 2, 105 / 2])
ax.set_zlim([-105 / 2, 105 / 2])
plt.show()
fig = plt.figure(figsize=(20, 20))
ax = fig.add_subplot(projection="3d")
for segment_name, sampled_points in model3d.points_sampled.items():
ax.scatter(
sampled_points[:, 0],
sampled_points[:, 1],
-sampled_points[:, 2],
zorder=3000,
color=[x / 255.0 for x in model3d.points_sampled_palette[segment_name]],
marker="x",
label=segment_name,
)
plt.legend()
ax.set_xlim([-105 / 2, 105 / 2])
ax.set_ylim([-105 / 2, 105 / 2])
ax.set_zlim([-105 / 2, 105 / 2])
plt.show()
fig = plt.figure(figsize=(20, 20))
ax = fig.add_subplot(projection="3d")
for s in range(model3d.line_segments.shape[1]):
if "crossbar" in model3d.line_segments_names[s]:
print(s, model3d.line_segments[:, s])
ax.scatter(
model3d.line_segments[0, s],
model3d.line_segments[1, s],
-model3d.line_segments[2, s],
zorder=3000,
color=[x / 255.0 for x in model3d.line_palette[s]],
marker="x",
label=model3d.line_segments_names[s],
)
plt.legend()
ax.set_xlim([-105 / 2, 105 / 2])
ax.set_ylim([-105 / 2, 105 / 2])
ax.set_zlim([-105 / 2, 105 / 2])
plt.savefig("soccer_field_line_segments.pdf")