|
| 1 | +# -*- coding: utf-8 -*- |
| 2 | +from __future__ import print_function, division |
| 3 | +from abc import ABCMeta, abstractmethod |
| 4 | +from qsrlib_qsrs.qsr_abstractclass import QSR_Abstractclass |
| 5 | +from qsrlib_utils.combinations_and_permutations import * |
| 6 | +from qsrlib_io.world_qsr_trace import * |
| 7 | + |
| 8 | +class QSR_Triadic_Abstractclass(QSR_Abstractclass): |
| 9 | + """Abstract class of triadic QSRs, i.e. QSRs that are computed over three objects.""" |
| 10 | + |
| 11 | + __metaclass__ = ABCMeta |
| 12 | + |
| 13 | + def __init__(self): |
| 14 | + """Constructor.""" |
| 15 | + super(QSR_Triadic_Abstractclass, self).__init__() |
| 16 | + |
| 17 | + def _init_qsrs_for_default(self, objects_names_of_world_state): |
| 18 | + """Default list of entities for which QSRs are to be computed for. |
| 19 | +
|
| 20 | + :param objects_names_of_world_state: Objects names at a world state. |
| 21 | + :type objects_names_of_world_state: list of str |
| 22 | + :return: The permutations, i.e. all possible pairs including mirrors, of the list of names passed in the |
| 23 | + arguments. E.g. for `objects_names_of_world_state = ['a', 'b']` return `[('a', 'b'), ('b', 'a')]`. |
| 24 | + :rtype: list of tuples of str |
| 25 | + """ |
| 26 | + return possible_triplets(objects_names_of_world_state) |
| 27 | + |
| 28 | + def _validate_qsrs_for(self, qsrs_for): |
| 29 | + """Validate `qsrs_for` which must be a list of tuples of three objects names. |
| 30 | +
|
| 31 | + :param qsrs_for: The original `qsrs_for` that needs validation. |
| 32 | + :type qsrs_for: list |
| 33 | + :return: List of string objects names to make QSRs, which might be the same as the argument `qsrs_for` or a |
| 34 | + subset of it with elements that passed the validation test, i.e. the elements of the list must be tuples of |
| 35 | + three strings. |
| 36 | + :rtype: list |
| 37 | + """ |
| 38 | + return [p for p in qsrs_for if isinstance(p, (list, tuple)) and (len(p) == 3)] |
| 39 | + |
| 40 | + def _return_points(self, data1, data2, data3): |
| 41 | + """Return the arguments as they are in their point form. |
| 42 | +
|
| 43 | + :param data1: First object data. |
| 44 | + :type data1: :class:`Object_State <qsrlib_io.world_trace.Object_State>` |
| 45 | + :param data2: Second object data. |
| 46 | + :type data2: :class:`Object_State <qsrlib_io.world_trace.Object_State>` |
| 47 | + :param data3: Third object data. |
| 48 | + :type data3: :class:`Object_State <qsrlib_io.world_trace.Object_State>` |
| 49 | + :return: `data1`, `data2`, `data3` |
| 50 | + :rtype: qsrlib_io.world_trace.Object_State, qsrlib_io.world_trace.Object_State |
| 51 | + """ |
| 52 | + return data1, data2, data3 |
| 53 | + |
| 54 | + def _return_bounding_boxes_2d(self, data1, data2, data3): |
| 55 | + """Return the 2D bounding boxes of the arguments. |
| 56 | +
|
| 57 | + :param data1: First object data. |
| 58 | + :type data1: :class:`Object_State <qsrlib_io.world_trace.Object_State>` |
| 59 | + :param data2: Second object data. |
| 60 | + :type data2: :class:`Object_State <qsrlib_io.world_trace.Object_State>` |
| 61 | + :param data3: Third object data. |
| 62 | + :type data3: :class:`Object_State <qsrlib_io.world_trace.Object_State>` |
| 63 | + :return: `bbox1`, `bbox2`, `bbox3` |
| 64 | + :rtype: list of floats, list of floats |
| 65 | + """ |
| 66 | + return data1.return_bounding_box_2d(), data2.return_bounding_box_2d(), data3.return_bounding_box_2d() |
| 67 | + |
| 68 | + |
| 69 | +class QSR_Triadic_1t_Abstractclass(QSR_Triadic_Abstractclass): |
| 70 | + """Special case abstract class of triadic QSRs. Works with triadic QSRs that require data over one timestamp.""" |
| 71 | + |
| 72 | + __metaclass__ = ABCMeta |
| 73 | + |
| 74 | + def __init__(self): |
| 75 | + """Constructor.""" |
| 76 | + super(QSR_Triadic_1t_Abstractclass, self).__init__() |
| 77 | + |
| 78 | + @abstractmethod |
| 79 | + def _compute_qsr(self, data1, data2, data3, qsr_params, **kwargs): |
| 80 | + """Compute QSR value. |
| 81 | +
|
| 82 | + :param data1: First object data. |
| 83 | + :type data1: :class:`Object_State <qsrlib_io.world_trace.Object_State>` |
| 84 | + :param data2: Second object data. |
| 85 | + :type data2: :class:`Object_State <qsrlib_io.world_trace.Object_State>` |
| 86 | + :param data3: Third object data. |
| 87 | + :type data3: :class:`Object_State <qsrlib_io.world_trace.Object_State>` |
| 88 | + :param qsr_params: QSR specific parameters passed in `dynamic_args`. |
| 89 | + :type qsr_params: dict |
| 90 | + :param kwargs: kwargs arguments. |
| 91 | + :return: Computed QSR value. |
| 92 | + :rtype: str |
| 93 | + """ |
| 94 | + return |
| 95 | + |
| 96 | + def make_world_qsr_trace(self, world_trace, timestamps, qsr_params, req_params, **kwargs): |
| 97 | + """Compute the world QSR trace from the arguments. |
| 98 | +
|
| 99 | + :param world_trace: Input data. |
| 100 | + :type world_trace: :class:`World_Trace <qsrlib_io.world_trace.World_Trace>` |
| 101 | + :param timestamps: List of sorted timestamps of `world_trace`. |
| 102 | + :type timestamps: list |
| 103 | + :param qsr_params: QSR specific parameters passed in `dynamic_args`. |
| 104 | + :type qsr_params: dict |
| 105 | + :param req_params: Request parameters. |
| 106 | + :type req_params: dict |
| 107 | + :param kwargs: kwargs arguments. |
| 108 | + :return: Computed world QSR trace. |
| 109 | + :rtype: :class:`World_QSR_Trace <qsrlib_io.world_qsr_trace.World_QSR_Trace>` |
| 110 | + """ |
| 111 | + ret = World_QSR_Trace(qsr_type=self._unique_id) |
| 112 | + for t in timestamps: |
| 113 | + world_state = world_trace.trace[t] |
| 114 | + qsrs_for = self._process_qsrs_for(world_state.objects.keys(), req_params["dynamic_args"]) |
| 115 | + for p in qsrs_for: |
| 116 | + between = ",".join(p) |
| 117 | + try: |
| 118 | + data1, data2, data3 = self._dtype_map[self._dtype](world_state.objects[p[0]], world_state.objects[p[1]], world_state.objects[p[2]]) |
| 119 | + except KeyError: |
| 120 | + raise KeyError("%s is not a valid value, should be one of %s" % (self._dtype, self._dtype_map.keys())) |
| 121 | + ret.add_qsr(QSR(timestamp=t, between=between, |
| 122 | + qsr=self._format_qsr(self._compute_qsr(data1, data2, data3, qsr_params, **kwargs))), |
| 123 | + t) |
| 124 | + return ret |
0 commit comments