This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 52.0936060721 78.6529042701 156.879792139 142.960289407 154.383852974 57.5389659325 38.2317202813 35.0771148892 45.6049955792 51.2467840271 76.5496413979 153.37001361 141.713890404 153.166971175 55.5170247135 36.1396610863 33.4891986036 43.2865736369 13.425372102 54.8939586753 63.2715472299 66.2910082564 60.0203824701 83.5065663128 81.8182592389 93.3831526901 87.7032246754 91.3547523877 80.3571348898 97.450574425 126.198378523 135.987859163 144.866873016 135.93227911 52.0936060721 34.6286220004 119.690485267 109.727838686 126.405531972 25.0865451218 22.9931546998 40.7270633198 30.1897465556 97.9814086773 116.541393249 177.836363377 166.796662051 175.915096047 97.5149761636 81.8814342501 68.9327717594 85.5864163033 54.063104535 82.1493091985 67.8877945421 88.0149141311 92.3369610586 102.675524355 96.6032825148 95.6322304682 105.678293414 118.647415532 103.504663141 115.01715016 140.379677967 99.6358856051 116.741786727 162.2664744 78.6529042701 34.6286220004 91.5176504451 76.8484132302 93.7320670676 22.80146 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 51.176058 15.965435 -1276.952988 53.673303 -35.076741 -1287.062579 34.458181 -53.981072 -1308.800721 40.612316 -88.868164 -1393.183763 2.705394 -75.769445 -1375.304149 -25.214447 -71.093891 -1379.029129 31.866415 -33.393266 -1299.349169 38.122334 -18.175748 -1288.162107 30.537846 -3.311359 -1297.758598 27.671819 -20.355825 -1291.379784 56.028747 62.205621 -1298.505934 39.147694 74.026728 -1325.368402 47.302086 94.636956 -1408.551412 8.606257 86.000516 -1392.563222 -19.290449 82.732 -1395.430067 34.477321 57.920021 -1309.250123 39.842908 45.252742 -1294.838414 31.469467 28.710503 -1300.843152 29.304455 46.087505 -1299.044193 37.796865 15.811559 -1278.054865 2.601201 18.556094 -1251.514465 -7.73265 -6.739001 -1281.14362 -14.61446 17.415576 -1268.952825 -3.910499 37.099469 -1287.965261 -31.776102 18.445926 -1267.672205 -29.598292 9.080593 -1265.892659 -38.426782 -9.958646 -1281.389912 -36.412438 18.401831 -1273.188023 -35.625995 43.033874 -1285.807026 -28.305904 25.918381 -1270.563488 -45.892197 19.649956 -126 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python2 | |
# -*- coding: utf-8 -*- | |
from numpy import loadtxt, sqrt | |
from itertools import combinations | |
funcDistancia = lambda x0, x1, y0, y1, z0, z1: sqrt((x1 - x0) ** 2 + | |
(y1 - y0) ** 2 + (z1 - z0) ** 2) | |
if __name__ == "__main__": |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python2 | |
# -*- coding: utf-8 -*- | |
import openni | |
import pygame | |
import numpy as np | |
from cv2 import cv | |
SCREEN_WIDTH = 640 | |
SCREEN_HEIGHT = 480 |
NewerOlder