paf_grouping
sleap_nn.inference.paf_grouping
¶
This module provides a set of utilities for grouping peaks based on PAFs.
Part affinity fields (PAFs) are a representation used to resolve the peak grouping problem for multi-instance pose estimation [1].
They are a convenient way to represent directed graphs with support in image space. For each edge, a PAF can be represented by an image with two channels, corresponding to the x and y components of a unit vector pointing along the direction of the underlying directed graph formed by the connections of the landmarks belonging to an instance.
Given a pair of putatively connected landmarks, the agreement between the line segment that connects them and the PAF vectors found at the coordinates along the same line can be used as a measure of "connectedness". These scores can then be used to guide the instance-wise grouping of landmarks.
This image space representation is particularly useful as it is amenable to neural network-based prediction from unlabeled images.
A high-level API for grouping based on PAFs is provided through the PAFScorer
class.
References
.. [1] Zhe Cao, Tomas Simon, Shih-En Wei, Yaser Sheikh. Realtime Multi-Person 2D Pose Estimation using Part Affinity Fields. In CVPR, 2017.
Classes:
Name | Description |
---|---|
EdgeConnection |
Indices to specify a matched connection between two peaks. |
EdgeType |
Indices to uniquely identify a single edge type. |
PAFScorer |
Scoring pipeline based on part affinity fields. |
PeakID |
Indices to uniquely identify a single peak. |
Functions:
Name | Description |
---|---|
assign_connections_to_instances |
Assign connected edges to instances via greedy graph partitioning. |
compute_distance_penalty |
Compute the distance penalty component of the PAF line integral score. |
get_connection_candidates |
Find the indices of all the possible connections formed by the detected peaks. |
get_paf_lines |
Get the PAF values at the lines formed between all detected peaks in a sample. |
group_instances_batch |
Group matched connections into full instances for a batch. |
group_instances_sample |
Group matched connections into full instances for a single sample. |
make_line_subs |
Create the lines between candidate connections for evaluating the PAFs. |
make_predicted_instances |
Group peaks by assignments and accumulate scores. |
match_candidates_batch |
Match candidate connections for a batch based on PAF scores. |
match_candidates_sample |
Match candidate connections for a sample based on PAF scores. |
score_paf_lines |
Compute the connectivity score for each PAF line in a sample. |
score_paf_lines_batch |
Process a batch of images to score the Part Affinity Fields (PAFs) lines formed between connection candidates for each sample. |
toposort_edges |
Find a topological ordering for a list of edge types. |
EdgeConnection
¶
Indices to specify a matched connection between two peaks.
This is a convenience named tuple for use in the matching pipeline.
Attributes:
Name | Type | Description |
---|---|---|
src_peak_ind |
int
|
Index of the source peak within all peaks. |
dst_peak_ind |
int
|
Index of the destination peak within all peaks. |
score |
float
|
Score of the match. |
Source code in sleap_nn/inference/paf_grouping.py
EdgeType
¶
Indices to uniquely identify a single edge type.
This is a convenience named tuple for use in the matching pipeline.
Attributes:
Name | Type | Description |
---|---|---|
src_node_ind |
int
|
Index of the source node type within the skeleton edges. |
dst_node_ind |
int
|
Index of the destination node type within the skeleton edges. |
Source code in sleap_nn/inference/paf_grouping.py
PAFScorer
¶
Scoring pipeline based on part affinity fields.
This class facilitates grouping of predicted peaks based on PAFs. It holds a set of common parameters that are used across different steps of the pipeline.
Attributes:
Name | Type | Description |
---|---|---|
part_names |
List[Text]
|
List of string node names in the skeleton. |
edges |
List[Tuple[Text, Text]]
|
List of (src_node, dst_node) names in the skeleton. |
pafs_stride |
int
|
Output stride of the part affinity fields. This will be used to adjust the peak coordinates from full image to PAF subscripts. |
max_edge_length_ratio |
float
|
The maximum expected length of a connected pair of points as a fraction of the image size. Candidate connections longer than this length will be penalized during matching. |
dist_penalty_weight |
float
|
A coefficient to scale weight of the distance penalty as a scalar float. Set to values greater than 1.0 to enforce the distance penalty more strictly. |
n_points |
int
|
Number of points to sample along the line integral. |
min_instance_peaks |
Union[int, float]
|
Minimum number of peaks the instance should have to be considered a real instance. Instances with fewer peaks than this will be discarded (useful for filtering spurious detections). |
min_line_scores |
float
|
Minimum line score (between -1 and 1) required to form a match between candidate point pairs. Useful for rejecting spurious detections when there are no better ones. |
edge_inds |
List[Tuple[int, int]]
|
The edges of the skeleton defined as a list of (source, destination) tuples of node indices. This is created automatically on initialization. |
edge_types |
List[EdgeType]
|
A list of |
n_nodes |
int
|
The number of nodes in the skeleton as a scalar |
n_edges |
int
|
The number of edges in the skeleton as a scalar |
sorted_edge_inds |
Tuple[int]
|
A tuple of indices specifying the topological order that the
edge types should be accessed in during instance assembly
( |
Notes
This class provides high level APIs for grouping peaks into instances using PAFs.
The algorithm has three steps:
1. Find all candidate connections between peaks and compute their matching
score based on the PAFs.
2. Match candidate connections using the connectivity score such that no
peak is used in two connections of the same type.
3. Group matched connections into complete instances.
In general, the output from a peak finder (such as multi-peak confidence map
prediction network) can be passed into PAFScorer.predict()
to get back
complete instances.
For finer control over the grouping pipeline steps, use the instance methods in
this class or the lower level functions in sleap_nn.paf_grouping
.
Methods:
Name | Description |
---|---|
__attrs_post_init__ |
Cache some computed attributes on initialization. |
from_config |
Initialize the PAF scorer from a |
group_instances |
Group matched connections into full instances for a batch. |
match_candidates |
Match candidate connections for a batch based on PAF scores. |
predict |
Group a batch of predicted peaks into full instance predictions using PAFs. |
score_paf_lines |
Create and score PAF lines formed between connection candidates. |
Source code in sleap_nn/inference/paf_grouping.py
1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 |
|
__attrs_post_init__()
¶
Cache some computed attributes on initialization.
Source code in sleap_nn/inference/paf_grouping.py
from_config(config, max_edge_length_ratio=0.25, dist_penalty_weight=1.0, n_points=10, min_instance_peaks=0, min_line_scores=0.25)
classmethod
¶
Initialize the PAF scorer from a MultiInstanceConfig
head config.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
config
|
OmegaConf
|
An |
required |
max_edge_length_ratio
|
float
|
The maximum expected length of a connected pair of points as a fraction of the image size. Candidate connections longer than this length will be penalized during matching. |
0.25
|
dist_penalty_weight
|
float
|
A coefficient to scale weight of the distance penalty as a scalar float. Set to values greater than 1.0 to enforce the distance penalty more strictly. |
1.0
|
min_edge_score
|
Minimum score required to classify a connection as correct. |
required | |
n_points
|
int
|
Number of points to sample along the line integral. |
10
|
min_instance_peaks
|
Union[int, float]
|
Minimum number of peaks the instance should have to be considered a real instance. Instances with fewer peaks than this will be discarded (useful for filtering spurious detections). |
0
|
min_line_scores
|
float
|
Minimum line score (between -1 and 1) required to form a match between candidate point pairs. Useful for rejecting spurious detections when there are no better ones. |
0.25
|
Returns:
Type | Description |
---|---|
PAFScorer
|
The initialized instance of |
Source code in sleap_nn/inference/paf_grouping.py
group_instances(peaks, peak_vals, peak_channel_inds, match_edge_inds, match_src_peak_inds, match_dst_peak_inds, match_line_scores)
¶
Group matched connections into full instances for a batch.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
peaks
|
Tensor
|
The sample-grouped detected peaks in a batch as a nested tensor |
required |
peak_vals
|
Tensor
|
The sample-grouped scores of the detected peaks in a batch as a
nested tensor |
required |
peak_channel_inds
|
Tensor
|
The sample-grouped indices of the channel (node) that
each detected peak is associated with as a nested tensor |
required |
match_edge_inds
|
Tensor
|
Sample-grouped indices of the skeleton edge that each
connection corresponds to as a nested tensor |
required |
match_src_peak_inds
|
Tensor
|
Sample-grouped indices of the source peaks that form
each connection as a nested tensor |
required |
match_dst_peak_inds
|
Tensor
|
Sample-grouped indices of the destination peaks that
form each connection as a nested tensor |
required |
match_line_scores
|
Tensor
|
Sample-grouped PAF line scores of the matched connections
as a nested tensor |
required |
Returns:
Type | Description |
---|---|
Tuple[Tensor, Tensor, Tensor]
|
A tuple of arrays with the grouped instances for the whole batch grouped by sample:
|
Notes
This is a convenience wrapper for the standalone group_instances_batch()
.
See also: PAFScorer.match_candidates, group_instances_batch
Source code in sleap_nn/inference/paf_grouping.py
1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 |
|
match_candidates(edge_inds, edge_peak_inds, line_scores)
¶
Match candidate connections for a batch based on PAF scores.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
edge_inds
|
Tensor
|
Sample-grouped edge indices as a nested |
required |
edge_peak_inds
|
Tensor
|
Sample-grouped indices of the peaks that form the source and
destination of each candidate connection as a nested |
required |
line_scores
|
Tensor
|
Sample-grouped scores for each candidate connection as a
nested |
required |
Returns:
Type | Description |
---|---|
Tuple[Tensor, Tensor, Tensor, Tensor]
|
The connection peaks for each edge matched based on score as tuple of
|
Notes
This is a convenience wrapper for the standalone match_candidates_batch()
.
See also: PAFScorer.score_paf_lines, match_candidates_batch
Source code in sleap_nn/inference/paf_grouping.py
predict(pafs, peaks, peak_vals, peak_channel_inds)
¶
Group a batch of predicted peaks into full instance predictions using PAFs.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
pafs
|
Tensor
|
The batch of part affinity fields as a |
required |
peaks
|
Tensor
|
The coordinates of the peaks grouped by sample as a nested |
required |
peak_vals
|
Tensor
|
The sample-grouped scores of the detected peaks in a batch as a
nested |
required |
peak_channel_inds
|
Tensor
|
The channel (node) that each peak in |
required |
Returns:
Type | Description |
---|---|
Tuple[Tensor, Tensor, Tensor]
|
A tuple of arrays with the grouped instances for the whole batch grouped by sample:
|
Notes
This is a high level API for grouping peaks into instances using PAFs.
See the PAFScorer
class documentation for more details on the algorithm.
See Also
PAFScorer.score_paf_lines, PAFScorer.match_candidates, PAFScorer.group_instances
Source code in sleap_nn/inference/paf_grouping.py
1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 |
|
score_paf_lines(pafs, peaks, peak_channel_inds)
¶
Create and score PAF lines formed between connection candidates.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
pafs
|
Tensor
|
A nested torch tensor of shape |
required |
peaks
|
Tensor
|
A nested torch tensor of shape |
required |
peak_channel_inds
|
Tensor
|
A nested torch tensor of shape |
required |
Returns:
Type | Description |
---|---|
Tuple[Tensor, Tensor, Tensor]
|
A tuple containing three lists for each sample in the batch:
- A nested torch tensor of shape |
Notes
This is a convenience wrapper for the standalone score_paf_lines_batch()
.
See also: score_paf_lines_batch
Source code in sleap_nn/inference/paf_grouping.py
PeakID
¶
Indices to uniquely identify a single peak.
This is a convenience named tuple for use in the matching pipeline.
Attributes:
Name | Type | Description |
---|---|---|
node_ind |
int
|
Index of the node type (channel) of the peak. |
peak_ind |
int
|
Index of the peak within its node type. |
Source code in sleap_nn/inference/paf_grouping.py
assign_connections_to_instances(connections, min_instance_peaks=0, n_nodes=None)
¶
Assign connected edges to instances via greedy graph partitioning.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
connections
|
Dict[EdgeType, List[EdgeConnection]]
|
A dict that maps EdgeType to a list of EdgeConnections found through connection scoring. This can be generated by the filter_connection_candidates function. |
required |
min_instance_peaks
|
Union[int, float]
|
If this is greater than 0, grouped instances with fewer assigned peaks than this threshold will be excluded. If a float in the range (0., 1.] is provided, this is interpreted as a fraction of the total number of nodes in the skeleton. If an integer is provided, this is the absolute minimum number of peaks. |
0
|
n_nodes
|
int
|
Total node type count. Used to convert min_instance_peaks to an absolute number when a fraction is specified. If not provided, the node count is inferred from the unique node inds in connections. |
None
|
Returns:
Name | Type | Description |
---|---|---|
instance_assignments |
Dict[PeakID, int]
|
A dict mapping PeakID to a unique instance ID specified as an integer. A PeakID is a tuple of (node_type_ind, peak_ind), where the peak_ind is the index or identifier specified in a EdgeConnection as a src_peak_ind or dst_peak_ind. |
Note
Instance IDs are not necessarily consecutive since some instances may be filtered out during the partitioning or filtering.
This function expects connections from a single sample/frame!
Source code in sleap_nn/inference/paf_grouping.py
700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 |
|
compute_distance_penalty(spatial_vec_lengths, max_edge_length, dist_penalty_weight=1.0)
¶
Compute the distance penalty component of the PAF line integral score.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
spatial_vec_lengths
|
Tensor
|
Euclidean distance between candidate source and
destination points as a |
required |
max_edge_length
|
float
|
Maximum length expected for any connection as a scalar |
required |
dist_penalty_weight
|
float
|
A coefficient to scale weight of the distance penalty as a scalar float. Set to values greater than 1.0 to enforce the distance penalty more strictly. |
1.0
|
Returns:
Type | Description |
---|---|
Tensor
|
The distance penalty for each candidate as a The penalty will be 0 (when below the threshold) and -1 as the distance
approaches infinity. This is then scaled by the |
Notes
The penalty is computed from the distances scaled by the max length:
For example, if the max length is 10 and the distance is 20, then the penalty
will be: (10 / 20) - 1 == 0.5 - 1 == -0.5
.
See also: score_paf_lines
Source code in sleap_nn/inference/paf_grouping.py
get_connection_candidates(peak_channel_inds_sample, skeleton_edges, n_nodes)
¶
Find the indices of all the possible connections formed by the detected peaks.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
peak_channel_inds_sample
|
Tensor
|
The channel indices of the peaks found in a sample.
This is a |
required |
skeleton_edges
|
Tensor
|
The indices of the nodes that form the skeleton graph as a
|
required |
n_nodes
|
int
|
The total number of nodes in the skeleton as a scalar integer. |
required |
Returns:
Type | Description |
---|---|
Tuple[Tensor, Tensor]
|
A tuple of
|
Source code in sleap_nn/inference/paf_grouping.py
get_paf_lines(pafs_sample, peaks_sample, edge_peak_inds, edge_inds, n_line_points, pafs_stride)
¶
Get the PAF values at the lines formed between all detected peaks in a sample.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
pafs_sample
|
Tensor
|
The PAFs for the sample as a |
required |
peaks_sample
|
Tensor
|
The detected peaks in a sample as a |
required |
edge_peak_inds
|
Tensor
|
A |
required |
edge_inds
|
Tensor
|
A |
required |
n_line_points
|
int
|
The number of points to interpolate between source and destination peaks in each connection candidate as a scalar integer. Values ranging from 5 to 10 are pretty reasonable. |
required |
pafs_stride
|
int
|
The stride (1/scale) of the PAFs that these lines will need to
index into relative to the image. Coordinates in |
required |
Returns:
Type | Description |
---|---|
Tensor
|
The PAF vectors at all of the line points as a The last dimension of the line subscripts correspond to the full
|
Notes
If only the subscripts are needed, use make_line_subs()
to generate the lines
without retrieving the PAF vector at the line points.
See also: get_connection_candidates, make_line_subs, score_paf_lines
Source code in sleap_nn/inference/paf_grouping.py
group_instances_batch(peaks, peak_vals, peak_channel_inds, match_edge_inds, match_src_peak_inds, match_dst_peak_inds, match_line_scores, n_nodes, sorted_edge_inds, edge_types, min_instance_peaks, min_line_scores=0.25)
¶
Group matched connections into full instances for a batch.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
peaks
|
Tensor
|
The sample-grouped detected peaks in a batch as a torch nested |
required |
peak_vals
|
Tensor
|
The sample-grouped scores of the detected peaks in a batch as a
torch nested |
required |
peak_channel_inds
|
Tensor
|
The sample-grouped indices of the channel (node) that each
detected peak is associated with as a torch nested |
required |
match_edge_inds
|
Tensor
|
Sample-grouped indices of the skeleton edge that each
connection corresponds to as a torch nested |
required |
match_src_peak_inds
|
Tensor
|
Sample-grouped indices of the source peaks that form each
connection as a torch nested |
required |
match_dst_peak_inds
|
Tensor
|
Sample-grouped indices of the destination peaks that form
each connection as a torch nested |
required |
match_line_scores
|
Tensor
|
Sample-grouped PAF line scores of the matched connections as
a torch nested |
required |
n_nodes
|
int
|
The total number of nodes in the skeleton as a scalar integer. |
required |
sorted_edge_inds
|
Tuple[int]
|
A tuple of indices specifying the topological order that the
edge types should be accessed in during instance assembly
( |
required |
edge_types
|
List[EdgeType]
|
A torch nested |
required |
min_instance_peaks
|
int
|
If this is greater than 0, grouped instances with fewer
assigned peaks than this threshold will be excluded. If a |
required |
min_line_scores
|
float
|
Minimum line score (between -1 and 1) required to form a match between candidate point pairs. |
0.25
|
Returns:
Type | Description |
---|---|
Tuple[Tensor, Tensor, Tensor]
|
A tuple of
|
See also: match_candidates_batch, group_instances_sample
Source code in sleap_nn/inference/paf_grouping.py
1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 |
|
group_instances_sample(peaks_sample, peak_scores_sample, peak_channel_inds_sample, match_edge_inds_sample, match_src_peak_inds_sample, match_dst_peak_inds_sample, match_line_scores_sample, n_nodes, sorted_edge_inds, edge_types, min_instance_peaks, min_line_scores=0.25)
¶
Group matched connections into full instances for a single sample.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
peaks_sample
|
Tensor
|
The detected peaks in a sample as a |
required |
peak_scores_sample
|
Tensor
|
The scores of the detected peaks in a sample as a
|
required |
peak_channel_inds_sample
|
Tensor
|
The indices of the channel (node) that each detected
peak is associated with as a |
required |
match_edge_inds_sample
|
Tensor
|
Indices of the skeleton edge that each connection
corresponds to as a |
required |
match_src_peak_inds_sample
|
Tensor
|
Indices of the source peaks that form each
connection as a |
required |
match_dst_peak_inds_sample
|
Tensor
|
Indices of the destination peaks that form each
connection as a |
required |
match_line_scores_sample
|
Tensor
|
PAF line scores of the matched connections as a
|
required |
n_nodes
|
int
|
The total number of nodes in the skeleton as a scalar integer. |
required |
sorted_edge_inds
|
Tuple[int]
|
A tuple of indices specifying the topological order that the
edge types should be accessed in during instance assembly
( |
required |
edge_types
|
List[EdgeType]
|
A list of |
required |
min_instance_peaks
|
int
|
If this is greater than 0, grouped instances with fewer
assigned peaks than this threshold will be excluded. If a |
required |
min_line_scores
|
float
|
Minimum line score (between -1 and 1) required to form a match between candidate point pairs. |
0.25
|
Returns:
Type | Description |
---|---|
Tuple[ndarray, ndarray, ndarray]
|
A tuple of arrays with the grouped instances:
|
Source code in sleap_nn/inference/paf_grouping.py
910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 |
|
make_line_subs(peaks_sample, edge_peak_inds, edge_inds, n_line_points, pafs_stride, pafs_hw)
¶
Create the lines between candidate connections for evaluating the PAFs.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
peaks_sample
|
Tensor
|
The detected peaks in a sample as a |
required |
edge_peak_inds
|
Tensor
|
A |
required |
edge_inds
|
Tensor
|
A |
required |
n_line_points
|
int
|
The number of points to interpolate between source and destination peaks in each connection candidate as a scalar integer. Values ranging from 5 to 10 are pretty reasonable. |
required |
pafs_stride
|
int
|
The stride (1/scale) of the PAFs that these lines will need to
index into relative to the image. Coordinates in |
required |
pafs_hw
|
tuple
|
Tuple (height, width) with the dimension of PAFs tensor. |
required |
Returns:
Type | Description |
---|---|
Tensor
|
The line subscripts as a The last dimension of the line subscripts correspond to the full
|
Notes
The subscripts are interpolated via nearest neighbor, so multiple fractional coordinates may map on to the same pixel if the line is short.
See also: get_connection_candidates
Source code in sleap_nn/inference/paf_grouping.py
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 |
|
make_predicted_instances(peaks, peak_scores, connections, instance_assignments)
¶
Group peaks by assignments and accumulate scores.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
peaks
|
array
|
Node-grouped peaks |
required |
peak_scores
|
array
|
Node-grouped peak scores |
required |
connections
|
List[EdgeConnection]
|
|
required |
instance_assignments
|
Dict[PeakID, int]
|
|
required |
Returns:
Type | Description |
---|---|
Tuple[array, array, array]
|
Tuple of (predicted_instances, predicted_peak_scores, predicted_instance_scores) predicted_instances: (n_instances, n_nodes, 2) array predicted_peak_scores: (n_instances, n_nodes) array predicted_instance_scores: (n_instances,) array |
Source code in sleap_nn/inference/paf_grouping.py
match_candidates_batch(edge_inds, edge_peak_inds, line_scores, n_edges)
¶
Match candidate connections for a batch based on PAF scores.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
edge_inds
|
Tensor
|
Sample-grouped edge indices as a torch nested |
required |
edge_peak_inds
|
Tensor
|
Sample-grouped indices of the peaks that form the source and
destination of each candidate connection as a torch nested |
required |
line_scores
|
Tensor
|
Sample-grouped scores for each candidate connection as a
torch nested |
required |
n_edges
|
int
|
A scalar |
required |
Returns:
Type | Description |
---|---|
Tuple[Tensor, Tensor, Tensor, Tensor]
|
The connection peaks for each edge matched based on score as tuple of
|
Notes
The matching is performed using the Munkres algorithm implemented in
scipy.optimize.linear_sum_assignment()
.
See also: match_candidates_sample, score_paf_lines_batch, group_instances_batch
Source code in sleap_nn/inference/paf_grouping.py
617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 |
|
match_candidates_sample(edge_inds_sample, edge_peak_inds_sample, line_scores_sample, n_edges)
¶
Match candidate connections for a sample based on PAF scores.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
edge_inds_sample
|
Tensor
|
A |
required |
edge_peak_inds_sample
|
Tensor
|
A |
required |
line_scores_sample
|
Tensor
|
Scores for each candidate connection in the sample as a
|
required |
n_edges
|
int
|
A scalar |
required |
Returns:
Type | Description |
---|---|
Tuple[Tensor, Tensor, Tensor, Tensor]
|
The connection peaks for each edge matched based on score as tuple of
|
Notes
The matching is performed using the Munkres algorithm implemented in
scipy.optimize.linear_sum_assignment()
.
See also: match_candidates_batch
Source code in sleap_nn/inference/paf_grouping.py
500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 |
|
score_paf_lines(paf_lines_sample, peaks_sample, edge_peak_inds_sample, max_edge_length, dist_penalty_weight=1.0)
¶
Compute the connectivity score for each PAF line in a sample.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
paf_lines_sample
|
Tensor
|
The PAF vectors evaluated at the lines formed between
candidate connections as a |
required |
peaks_sample
|
Tensor
|
The detected peaks in a sample as a |
required |
edge_peak_inds_sample
|
Tensor
|
A |
required |
max_edge_length
|
float
|
Maximum length expected for any connection as a scalar |
required |
dist_penalty_weight
|
float
|
A coefficient to scale weight of the distance penalty as a scalar float. Set to values greater than 1.0 to enforce the distance penalty more strictly. |
1.0
|
Returns:
Type | Description |
---|---|
Tensor
|
The line scores as a Scores range from roughly -1.5 to 1.0, where larger values indicate a better connectivity score for the candidate. Values can be larger or smaller due to prediction error. |
Notes
This function operates on a single sample (frame). For batches of multiple
frames, use score_paf_lines_batch()
.
See also: get_paf_lines, score_paf_lines_batch, compute_distance_penalty
Source code in sleap_nn/inference/paf_grouping.py
335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 |
|
score_paf_lines_batch(pafs, peaks, peak_channel_inds, skeleton_edges, n_line_points, pafs_stride, max_edge_length_ratio, dist_penalty_weight, n_nodes)
¶
Process a batch of images to score the Part Affinity Fields (PAFs) lines formed between connection candidates for each sample.
This function loops over each sample in the batch and applies the process of getting connection candidates, retrieving PAF vectors for each line, and computing the connectivity score for each candidate based on the PAF lines.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
pafs
|
Tensor
|
A tensor of shape |
required |
peaks
|
Tensor
|
A list of tensors (torch nested tensors) of shape |
required |
peak_channel_inds
|
Tensor
|
A list of tensors (torch nested tensors) of shape |
required |
skeleton_edges
|
Tensor
|
A tensor of shape |
required |
n_line_points
|
int
|
The number of points used to interpolate between source and destination peaks in each connection candidate. |
required |
pafs_stride
|
int
|
The stride (1/scale) of the PAFs relative to the image scale. |
required |
max_edge_length_ratio
|
float
|
The maximum expected length of a connected pair of points relative to the image dimensions. |
required |
dist_penalty_weight
|
float
|
A coefficient to scale the weight of the distance penalty applied to the score of each line. |
required |
n_nodes
|
int
|
The total number of nodes in the skeleton. |
required |
Returns:
Type | Description |
---|---|
Tuple[Tensor, Tensor, Tensor]
|
A tuple containing three lists for each sample in the batch:
- A list of tensors (torch nested tensors) of shape |
Source code in sleap_nn/inference/paf_grouping.py
413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 |
|
toposort_edges(edge_types)
¶
Find a topological ordering for a list of edge types.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
edge_types
|
List[EdgeType]
|
A list of |
required |
Returns:
Type | Description |
---|---|
Tuple[int]
|
A tuple of indices specifying the topological order that the edge types should
be accessed in during instance assembly ( This is important to ensure that instances are assembled starting at the root of the skeleton and moving down. |
See also: assign_connections_to_instances