Spaces:
Configuration error
Configuration error
File size: 9,593 Bytes
0034848 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 |
from __future__ import division
import math
import typing
import warnings
from typing import Any, Dict, List, Optional, Sequence, Tuple
from .utils import DataProcessor, Params
__all__ = [
"angle_to_2pi_range",
"check_keypoints",
"convert_keypoints_from_albumentations",
"convert_keypoints_to_albumentations",
"filter_keypoints",
"KeypointsProcessor",
"KeypointParams",
]
keypoint_formats = {"xy", "yx", "xya", "xys", "xyas", "xysa"}
def angle_to_2pi_range(angle: float) -> float:
two_pi = 2 * math.pi
return angle % two_pi
class KeypointParams(Params):
"""
Parameters of keypoints
Args:
format (str): format of keypoints. Should be 'xy', 'yx', 'xya', 'xys', 'xyas', 'xysa'.
x - X coordinate,
y - Y coordinate
s - Keypoint scale
a - Keypoint orientation in radians or degrees (depending on KeypointParams.angle_in_degrees)
label_fields (list): list of fields that are joined with keypoints, e.g labels.
Should be same type as keypoints.
remove_invisible (bool): to remove invisible points after transform or not
angle_in_degrees (bool): angle in degrees or radians in 'xya', 'xyas', 'xysa' keypoints
check_each_transform (bool): if `True`, then keypoints will be checked after each dual transform.
Default: `True`
"""
def __init__(
self,
format: str, # skipcq: PYL-W0622
label_fields: Optional[Sequence[str]] = None,
remove_invisible: bool = True,
angle_in_degrees: bool = True,
check_each_transform: bool = True,
):
super(KeypointParams, self).__init__(format, label_fields)
self.remove_invisible = remove_invisible
self.angle_in_degrees = angle_in_degrees
self.check_each_transform = check_each_transform
def _to_dict(self) -> Dict[str, Any]:
data = super(KeypointParams, self)._to_dict()
data.update(
{
"remove_invisible": self.remove_invisible,
"angle_in_degrees": self.angle_in_degrees,
"check_each_transform": self.check_each_transform,
}
)
return data
@classmethod
def is_serializable(cls) -> bool:
return True
@classmethod
def get_class_fullname(cls) -> str:
return "KeypointParams"
class KeypointsProcessor(DataProcessor):
def __init__(self, params: KeypointParams, additional_targets: Optional[Dict[str, str]] = None):
super().__init__(params, additional_targets)
@property
def default_data_name(self) -> str:
return "keypoints"
def ensure_data_valid(self, data: Dict[str, Any]) -> None:
if self.params.label_fields:
if not all(i in data.keys() for i in self.params.label_fields):
raise ValueError(
"Your 'label_fields' are not valid - them must have same names as params in "
"'keypoint_params' dict"
)
def ensure_transforms_valid(self, transforms: Sequence[object]) -> None:
# IAA-based augmentations supports only transformation of xy keypoints.
# If your keypoints formats is other than 'xy' we emit warning to let user
# be aware that angle and size will not be modified.
try:
from custom_albumentations.imgaug.transforms import DualIAATransform
except ImportError:
# imgaug is not installed so we skip imgaug checks.
return
if self.params.format is not None and self.params.format != "xy":
for transform in transforms:
if isinstance(transform, DualIAATransform):
warnings.warn(
"{} transformation supports only 'xy' keypoints "
"augmentation. You have '{}' keypoints format. Scale "
"and angle WILL NOT BE transformed.".format(transform.__class__.__name__, self.params.format)
)
break
def filter(self, data: Sequence[Sequence], rows: int, cols: int) -> Sequence[Sequence]:
self.params: KeypointParams
return filter_keypoints(data, rows, cols, remove_invisible=self.params.remove_invisible)
def check(self, data: Sequence[Sequence], rows: int, cols: int) -> None:
check_keypoints(data, rows, cols)
def convert_from_albumentations(self, data: Sequence[Sequence], rows: int, cols: int) -> List[Tuple]:
params = self.params
return convert_keypoints_from_albumentations(
data,
params.format,
rows,
cols,
check_validity=params.remove_invisible,
angle_in_degrees=params.angle_in_degrees,
)
def convert_to_albumentations(self, data: Sequence[Sequence], rows: int, cols: int) -> List[Tuple]:
params = self.params
return convert_keypoints_to_albumentations(
data,
params.format,
rows,
cols,
check_validity=params.remove_invisible,
angle_in_degrees=params.angle_in_degrees,
)
def check_keypoint(kp: Sequence, rows: int, cols: int) -> None:
"""Check if keypoint coordinates are less than image shapes"""
for name, value, size in zip(["x", "y"], kp[:2], [cols, rows]):
if not 0 <= value < size:
raise ValueError(
"Expected {name} for keypoint {kp} "
"to be in the range [0.0, {size}], got {value}.".format(kp=kp, name=name, value=value, size=size)
)
angle = kp[2]
if not (0 <= angle < 2 * math.pi):
raise ValueError("Keypoint angle must be in range [0, 2 * PI). Got: {angle}".format(angle=angle))
def check_keypoints(keypoints: Sequence[Sequence], rows: int, cols: int) -> None:
"""Check if keypoints boundaries are less than image shapes"""
for kp in keypoints:
check_keypoint(kp, rows, cols)
def filter_keypoints(keypoints: Sequence[Sequence], rows: int, cols: int, remove_invisible: bool) -> Sequence[Sequence]:
if not remove_invisible:
return keypoints
resulting_keypoints = []
for kp in keypoints:
x, y = kp[:2]
if x < 0 or x >= cols:
continue
if y < 0 or y >= rows:
continue
resulting_keypoints.append(kp)
return resulting_keypoints
def convert_keypoint_to_albumentations(
keypoint: Sequence,
source_format: str,
rows: int,
cols: int,
check_validity: bool = False,
angle_in_degrees: bool = True,
) -> Tuple:
if source_format not in keypoint_formats:
raise ValueError("Unknown target_format {}. Supported formats are: {}".format(source_format, keypoint_formats))
if source_format == "xy":
(x, y), tail = keypoint[:2], tuple(keypoint[2:])
a, s = 0.0, 0.0
elif source_format == "yx":
(y, x), tail = keypoint[:2], tuple(keypoint[2:])
a, s = 0.0, 0.0
elif source_format == "xya":
(x, y, a), tail = keypoint[:3], tuple(keypoint[3:])
s = 0.0
elif source_format == "xys":
(x, y, s), tail = keypoint[:3], tuple(keypoint[3:])
a = 0.0
elif source_format == "xyas":
(x, y, a, s), tail = keypoint[:4], tuple(keypoint[4:])
elif source_format == "xysa":
(x, y, s, a), tail = keypoint[:4], tuple(keypoint[4:])
else:
raise ValueError(f"Unsupported source format. Got {source_format}")
if angle_in_degrees:
a = math.radians(a)
keypoint = (x, y, angle_to_2pi_range(a), s) + tail
if check_validity:
check_keypoint(keypoint, rows, cols)
return keypoint
def convert_keypoint_from_albumentations(
keypoint: Sequence,
target_format: str,
rows: int,
cols: int,
check_validity: bool = False,
angle_in_degrees: bool = True,
) -> Tuple:
if target_format not in keypoint_formats:
raise ValueError("Unknown target_format {}. Supported formats are: {}".format(target_format, keypoint_formats))
(x, y, angle, scale), tail = keypoint[:4], tuple(keypoint[4:])
angle = angle_to_2pi_range(angle)
if check_validity:
check_keypoint((x, y, angle, scale), rows, cols)
if angle_in_degrees:
angle = math.degrees(angle)
kp: Tuple
if target_format == "xy":
kp = (x, y)
elif target_format == "yx":
kp = (y, x)
elif target_format == "xya":
kp = (x, y, angle)
elif target_format == "xys":
kp = (x, y, scale)
elif target_format == "xyas":
kp = (x, y, angle, scale)
elif target_format == "xysa":
kp = (x, y, scale, angle)
else:
raise ValueError(f"Invalid target format. Got: {target_format}")
return kp + tail
def convert_keypoints_to_albumentations(
keypoints: Sequence[Sequence],
source_format: str,
rows: int,
cols: int,
check_validity: bool = False,
angle_in_degrees: bool = True,
) -> List[Tuple]:
return [
convert_keypoint_to_albumentations(kp, source_format, rows, cols, check_validity, angle_in_degrees)
for kp in keypoints
]
def convert_keypoints_from_albumentations(
keypoints: Sequence[Sequence],
target_format: str,
rows: int,
cols: int,
check_validity: bool = False,
angle_in_degrees: bool = True,
) -> List[Tuple]:
return [
convert_keypoint_from_albumentations(kp, target_format, rows, cols, check_validity, angle_in_degrees)
for kp in keypoints
]
|