Commit 5a69711f authored by Kelvin Rodriguez's avatar Kelvin Rodriguez
Browse files

Merge pull request #97 from acpaquette/keypoints

Updated keypoints method in Vis
parents 83647382 62ec3cc5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -94,7 +94,7 @@ def plot_node(node, ax=None, clean_keys=[], **kwargs):
    keypoints = node.get_keypoints()
    if clean_keys:
        matches, mask = node._clean(clean_keys)
        keypoints = node.keypoints[mask]
        keypoints = node.get_keypoints()[mask]

    marker = '.'
    if 'marker' in kwargs.keys():