【python】6DOF analyse tool2

2023-05-16

  1. result show
    1.1 note: 图1为3D X Y Z combination位置,图4,5,6分别表示yaw,pitch,roll角随着时间的变化的波动。
    请添加图片描述

#这个代码假设数据存储在名为`data.csv`的文件中,并使用Python内置的csv模块来读取。
#然后,它提取出了时间、位置和姿态角度信息,并使用Matplotlib绘制了四个子图,分别是位置散点图和yaw、pitch、roll角度的曲线图。
#最后,它使用pandas库计算了位置的均值、yaw角度的方差和pitch、roll角度之间的相关系数,并输出了这些结果。

import csv
import numpy as np
import matplotlib
from pylab import *
import cmath
import math
import matplotlib.pyplot as plt

path = '/home/sun/code/jitter/jitter_analyse_r3.txt'
compare_path = '/home/sun/code/jitter/jitter_analyse_fit_spots.txt'

data_list = []
with open(path,'r') as f:
    for line in f:
        data_list.append(line.strip().split(' '))

data = np.array(data_list,dtype=np.float64)
# print(data)

# 提取出时间、位置和姿态角度信息
time = [row[0] for row in data]
positions = [[float(row[1]), float(row[2]), float(row[3])] for row in data]
angles = [[float(row[4]), float(row[5]), float(row[6])] for row in data]

# print(positions)
# load comapre data_list
compare_data_list = []
with open(compare_path,'r') as fc:
    for line in fc:
        compare_data_list.append(line.strip().split(' '))

compare_data = np.array(compare_data_list,dtype=np.float64)
# print(data)

# 提取出时间、位置和姿态角度信息
compare_time = [row[0] for row in compare_data]
compare_positions = [[float(row[1]), float(row[2]), float(row[3])] for row in compare_data]
compare_angles = [[float(row[4]), float(row[5]), float(row[6])] for row in compare_data]


# 绘制图形
fig, axs = plt.subplots(3, 2)

# 绘制位置散点图
axs[0, 0].scatter([p[0] for p in positions], [p[1] for p in positions], c='b')
axs[0, 0].scatter([compare_p[0] for compare_p in compare_positions], [compare_p[1] for compare_p in compare_positions], c='g')
axs[0, 0].set_xlabel('x')
axs[0, 0].set_ylabel('y')

# 绘制位置散点图
axs[0, 1].scatter([p[0] for p in positions], [p[2] for p in positions], c='b')
axs[0, 1].scatter([compare_p[0] for compare_p in compare_positions], [compare_p[2] for compare_p in compare_positions], c='g')
axs[0, 1].set_xlabel('x')
axs[0, 1].set_ylabel('z')

# 绘制位置散点图
axs[1, 0].scatter([p[1] for p in positions], [p[2] for p in positions], c='b')
axs[1, 0].scatter([compare_p[1] for compare_p in compare_positions], [compare_p[2] for compare_p in compare_positions], c='g')
axs[1, 0].set_xlabel('y')
axs[1, 0].set_ylabel('z')

# 绘制x曲线图
axs[1, 1].plot(time, [p[0] for p in positions], c='b')
axs[1, 1].plot(compare_time, [compare_p[0] for compare_p in compare_positions], c='g')
axs[1, 1].set_xlabel('time')
axs[1, 1].set_ylabel('x')

# 绘制y曲线图
axs[2, 0].plot(time, [p[1] for p in positions], c='b')
axs[2, 0].plot(compare_time, [compare_p[1] for compare_p in compare_positions], c='g')
axs[2, 0].set_xlabel('time')
axs[2, 0].set_ylabel('y')

# 绘制z曲线图
axs[2, 1].plot(time, [p[2] for p in positions], c='b')
axs[2, 1].plot(compare_time, [compare_p[2] for compare_p in compare_positions], c='g')
axs[2, 1].set_xlabel('time')
axs[2, 1].set_ylabel('z')
# # 绘制yaw角度曲线图
# axs[0, 1].plot(time, [a[0] for a in angles])
# axs[0, 1].set_xlabel('time')
# axs[0, 1].set_ylabel('yaw')

# # 绘制pitch角度曲线图
# axs[1, 0].plot(time, [a[1] for a in angles])
# axs[1, 0].set_xlabel('time')
# axs[1, 0].set_ylabel('pitch')

# # 绘制roll角度曲线图
# axs[1, 1].plot(time, [a[2] for a in angles])
# axs[1, 1].set_xlabel('time')
# axs[1, 1].set_ylabel('roll')

plt.show()

# 分析图形
mean_position = pd.DataFrame(positions).mean()
var_yaw = pd.DataFrame(angles)[0].var()
corr_pitch_roll = pd.DataFrame(angles)[1:].corr().iloc[0, 1]

print('Mean position:', mean_position)
print('Variance of yaw angle:', var_yaw)
print('Correlation between pitch and roll angles:', corr_pitch_roll)

7.8198e+06 -1.52109 -1.1214 -0.729619 2.88842 2.51892 -0.945128
7.81983e+06 -1.53295 -1.11147 -0.729759 2.88476 2.52409 -0.948613
7.81986e+06 -1.52766 -1.11605 -0.728239 2.76534 2.78425 -1.06431
7.81993e+06 -1.54898 -1.09518 -0.667826 2.76455 2.78452 -1.06427
7.82013e+06 -1.52107 -1.12141 -0.7297 2.88886 2.51656 -0.943597
7.82016e+06 -1.53288 -1.11129 -0.729941 2.88491 2.52186 -0.947302
7.8202e+06 -1.52887 -1.11367 -0.73165 2.8499 2.56818 -0.96011
7.82023e+06 -1.53392 -1.10728 -0.731227 2.66773 2.85524 -0.894078
7.82029e+06 -1.55991 -1.07058 -0.679113 2.73346 2.79181 -0.836817
7.82049e+06 -1.52108 -1.12146 -0.729603 2.88849 2.51986 -0.944534
7.82053e+06 -1.53305 -1.11119 -0.729618 2.88472 2.52521 -0.94841
7.82056e+06 -1.52755 -1.11617 -0.728354 2.76639 2.78038 -1.06575
7.82063e+06 -1.5489 -1.09523 -0.667771 2.76572 2.78061 -1.06533
7.82083e+06 -1.52109 -1.12148 -0.729564 2.88872 2.51803 -0.945185
7.82086e+06 -1.53289 -1.11142 -0.729685 2.8849 2.5233 -0.948966
7.82089e+06 -1.52766 -1.11608 -0.728194 2.76571 2.78136 -1.06681
7.82096e+06 -1.54901 -1.09522 -0.667773 2.76495 2.78162 -1.06666
7.82116e+06 -1.52111 -1.12146 -0.729627 2.88894 2.51672 -0.944373
7.82119e+06 -1.53297 -1.11132 -0.729828 2.88504 2.52196 -0.948146
7.82123e+06 -1.52883 -1.1137 -0.731776 2.8508 2.56868 -0.960109
7.82126e+06 -1.53392 -1.10733 -0.731472 2.66884 2.85513 -0.89396
7.82133e+06 -1.55993 -1.0706 -0.679229 2.73358 2.79109 -0.837764
7.82153e+06 -1.5211 -1.12147 -0.729573 2.88834 2.51833 -0.944803
7.82156e+06 -1.53281 -1.11146 -0.729687 2.88455 2.52354 -0.948765
7.82159e+06 -1.52892 -1.11362 -0.731651 2.84919 2.56906 -0.960267
7.82163e+06 -1.53394 -1.10727 -0.731232 2.66695 2.85686 -0.89437
7.82169e+06 -1.55984 -1.07078 -0.679498 2.73477 2.79174 -0.838721
7.82189e+06 -1.52111 -1.12143 -0.729615 2.88742 2.51943 -0.944475
7.82193e+06 -1.53299 -1.11126 -0.729743 2.8836 2.52473 -0.948277
7.82196e+06 -1.52762 -1.11611 -0.728295 2.76549 2.78041 -1.066
7.82203e+06 -1.54896 -1.09521 -0.667743 2.7647 2.78072 -1.06587
7.82223e+06 -1.5211 -1.12145 -0.729583 2.88834 2.51847 -0.94471
7.82226e+06 -1.53305 -1.11123 -0.729589 2.88446 2.52386 -0.948827
7.82229e+06 -1.52758 -1.11615 -0.728238 2.76572 2.77963 -1.06513
7.82236e+06 -1.54893 -1.09522 -0.667705 2.76505 2.7798 -1.0649
7.82256e+06 -1.52111 -1.12144 -0.729617 2.88861 2.51767 -0.943919
7.82259e+06 -1.53286 -1.11139 -0.729784 2.88476 2.52293 -0.947654
7.82263e+06 -1.52891 -1.11362 -0.731609 2.84919 2.56923 -0.960236
7.82266e+06 -1.53391 -1.10726 -0.731209 2.66674 2.85712 -0.894325
7.82273e+06 -1.55983 -1.07077 -0.679519 2.7345 2.79204 -0.83864
7.82293e+06 -1.52108 -1.12146 -0.729556 2.88857 2.52022 -0.943772
7.82296e+06 -1.53298 -1.11128 -0.729596 2.88478 2.52543 -0.947709
7.82299e+06 -1.52759 -1.11613 -0.728216 2.76598 2.78215 -1.06508
7.82306e+06 -1.54894 -1.09523 -0.667819 2.76524 2.78242 -1.06488
7.82326e+06 -1.5211 -1.12144 -0.729638 2.88832 2.51921 -0.944389
7.82329e+06 -1.53309 -1.11117 -0.729713 2.88445 2.52457 -0.948388
7.82333e+06 -1.52758 -1.11613 -0.728289 2.76581 2.78044 -1.06513
7.82339e+06 -1.54891 -1.09518 -0.667703 2.76513 2.78066 -1.0648
7.82359e+06 -1.52109 -1.12145 -0.729569 2.8886 2.51773 -0.944647
7.82363e+06 -1.53287 -1.11139 -0.729702 2.88479 2.52298 -0.948414
7.82366e+06 -1.52892 -1.11361 -0.731685 2.85006 2.56876 -0.958682
7.82369e+06 -1.53393 -1.10725 -0.731274 2.66731 2.85574 -0.892367
7.82376e+06 -1.55985 -1.07073 -0.679404 2.73457 2.79208 -0.837704
7.82396e+06 -1.52111 -1.12145 -0.729581 2.88772 2.51949 -0.944583
7.82399e+06 -1.53301 -1.11125 -0.729616 2.8839 2.52481 -0.948626
7.82403e+06 -1.5276 -1.11613 -0.728213 2.7651 2.78071 -1.06559
7.82409e+06 -1.54892 -1.09522 -0.667743 2.76437 2.78095 -1.06546
7.82429e+06 -1.52111 -1.12145 -0.729606 2.88796 2.51893 -0.944575
7.82433e+06 -1.53312 -1.11118 -0.729712 2.88407 2.52429 -0.948435
7.82436e+06 -1.52759 -1.11615 -0.728382 2.76595 2.77924 -1.06523
7.82443e+06 -1.54891 -1.09518 -0.667691 2.76529 2.77944 -1.06486
7.82463e+06 -1.52109 -1.12145 -0.729596 2.88816 2.51904 -0.944506
7.82466e+06 -1.53285 -1.11139 -0.729713 2.88437 2.52426 -0.948352
7.82469e+06 -1.52765 -1.11607 -0.728165 2.76519 2.78143 -1.06607
7.82476e+06 -1.54897 -1.09516 -0.667765 2.7645 2.78168 -1.06581
7.82496e+06 -1.52111 -1.12146 -0.729559 2.88595 2.5215 -0.94657
7.82499e+06 -1.53291 -1.11117 -0.729342 2.88204 2.52674 -0.94992
7.82503e+06 -1.52802 -1.11342 -0.724826 2.78635 2.67695 -0.921705
7.82506e+06 -1.53584 -1.10498 -0.698492 2.67177 2.84756 -0.827429
7.82513e+06 -1.5692 -1.07115 -0.666862 2.71519 2.787 -0.844019
7.82533e+06 -1.52111 -1.12144 -0.729565 2.88828 2.51814 -0.945208
7.82536e+06 -1.53283 -1.11141 -0.7297 2.88449 2.52336 -0.949233
7.82539e+06 -1.52893 -1.11358 -0.731635 2.84976 2.57053 -0.959111
7.82543e+06 -1.53395 -1.10723 -0.731233 2.6669 2.85794 -0.893564
7.82549e+06 -1.55984 -1.07079 -0.679502 2.7344 2.79241 -0.839251
7.82569e+06 -1.52112 -1.12147 -0.729533 2.88827 2.51626 -0.94564
7.82573e+06 -1.53303 -1.1113 -0.729628 2.88446 2.52154 -0.949501
7.82576e+06 -1.52766 -1.11613 -0.728207 2.76516 2.77912 -1.06644
7.82583e+06 -1.54899 -1.09528 -0.667734 2.76444 2.77936 -1.06621
7.82603e+06 -1.52115 -1.12148 -0.729575 2.8879 2.51808 -0.94505
7.82606e+06 -1.53314 -1.11124 -0.729666 2.88406 2.52339 -0.949067
7.82609e+06 -1.52764 -1.11618 -0.72834 2.76514 2.7799 -1.06604
7.82616e+06 -1.54897 -1.09528 -0.667803 2.76441 2.78018 -1.06588
7.82636e+06 -1.52117 -1.12147 -0.729609 2.88814 2.51722 -0.943865
7.82639e+06 -1.53292 -1.11141 -0.729783 2.88433 2.52241 -0.947569
7.82643e+06 -1.52894 -1.11365 -0.731667 2.84924 2.56897 -0.958905
7.82646e+06 -1.53397 -1.10726 -0.731334 2.66635 2.85599 -0.892656
7.82653e+06 -1.55983 -1.07076 -0.679529 2.73383 2.79147 -0.837651
7.82673e+06 -1.52115 -1.12147 -0.729627 2.88821 2.5186 -0.943968
7.82676e+06 -1.53303 -1.11129 -0.729588 2.8844 2.52394 -0.948039
7.82679e+06 -1.52764 -1.11614 -0.728247 2.76544 2.78047 -1.06518
7.82686e+06 -1.54897 -1.09522 -0.667784 2.76472 2.78072 -1.065
7.82706e+06 -1.52115 -1.12146 -0.729597 2.88734 2.51858 -0.944394
7.82709e+06 -1.53312 -1.11119 -0.729618 2.8835 2.52391 -0.948373
7.82713e+06 -1.52762 -1.11617 -0.728253 2.76529 2.77951 -1.06564
7.82719e+06 -1.54896 -1.09524 -0.667672 2.76461 2.77972 -1.06527
7.82739e+06 -1.52116 -1.12147 -0.729585 2.8876 2.51801 -0.945073
7.82743e+06 -1.53293 -1.11141 -0.729742 2.88382 2.52318 -0.948924
7.82746e+06 -1.52773 -1.11608 -0.728271 2.76439 2.78178 -1.06611
7.82753e+06 -1.54902 -1.0952 -0.667892 2.76372 2.782 -1.0658
7.82773e+06 -1.52119 -1.12163 -0.729931 2.88551 2.52047 -0.946575
7.82776e+06 -1.53297 -1.11134 -0.72969 2.88407 2.52303 -0.948701
7.82779e+06 -1.5277 -1.11611 -0.728269 2.76469 2.78052 -1.06556
7.82786e+06 -1.549 -1.09521 -0.667821 2.76401 2.78076 -1.06532
7.82806e+06 -1.52118 -1.12145 -0.729669 2.88767 2.51815 -0.943874
7.82809e+06 -1.5331 -1.11124 -0.729818 2.88382 2.52341 -0.947641
7.82813e+06 -1.52873 -1.11375 -0.73085 2.8493 2.56764 -0.959599
7.82816e+06 -1.53395 -1.10735 -0.731268 2.66739 2.85357 -0.893964
7.82823e+06 -1.55995 -1.07054 -0.679064 2.73254 2.79267 -0.836877
7.82843e+06 -1.52117 -1.12146 -0.729657 2.88807 2.5176 -0.943484
7.82846e+06 -1.53295 -1.11138 -0.72979 2.88427 2.52274 -0.947216
7.82849e+06 -1.52893 -1.11368 -0.731629 2.84912 2.56919 -0.96079
7.82853e+06 -1.53396 -1.10732 -0.731314 2.66658 2.85785 -0.895147
7.82859e+06 -1.55985 -1.07071 -0.67944 2.73335 2.79267 -0.838075
7.82879e+06 -1.52115 -1.12147 -0.729589 2.8873 2.51897 -0.944619
7.82883e+06 -1.53309 -1.11124 -0.729649 2.88346 2.52429 -0.948657
7.82886e+06 -1.52766 -1.11614 -0.728235 2.76453 2.78163 -1.065
7.82893e+06 -1.54897 -1.09522 -0.667705 2.76382 2.78188 -1.06476
7.82913e+06 -1.52115 -1.12147 -0.729588 2.88799 2.51762 -0.94472
7.82916e+06 -1.53286 -1.11144 -0.729697 2.88424 2.52277 -0.94864
7.82919e+06 -1.52897 -1.11362 -0.731664 2.84986 2.56786 -0.959057
7.82923e+06 -1.534 -1.10727 -0.731323 2.66656 2.85587 -0.893073
7.82929e+06 -1.55985 -1.07083 -0.679502 2.73405 2.79201 -0.83833
7.82949e+06 -1.52115 -1.12148 -0.729585 2.88798 2.51782 -0.944924
7.82953e+06 -1.53306 -1.11129 -0.729727 2.88415 2.52309 -0.948813
7.82956e+06 -1.52767 -1.11614 -0.728328 2.76473 2.7804 -1.06563
7.82963e+06 -1.54897 -1.09523 -0.66788 2.76407 2.78062 -1.06534
7.82982e+06 -1.52117 -1.12146 -0.72963 2.88842 2.51773 -0.943257
7.82986e+06 -1.53315 -1.11122 -0.729624 2.88456 2.52306 -0.947172
7.82989e+06 -1.52764 -1.11614 -0.728229 2.76541 2.77837 -1.0643
7.82996e+06 -1.54898 -1.09518 -0.667565 2.76473 2.77856 -1.0641
7.83016e+06 -1.52117 -1.12149 -0.729542 2.88497 2.52105 -0.94649
7.83019e+06 -1.53286 -1.1113 -0.729322 2.88114 2.52616 -0.949661
7.83023e+06 -1.5301 -1.11179 -0.726328 2.73429 2.63818 -0.862707
7.83026e+06 -1.53575 -1.10415 -0.703399 2.64799 2.71368 -0.814762
7.83029e+06 -1.54051 -1.11061 -0.681147 2.6929 2.80727 -0.859323
7.83036e+06 -1.57326 -1.07906 -0.650668 2.5876 2.94776 -0.948441
7.83056e+06 -1.52116 -1.12147 -0.729583 2.88855 2.5165 -0.944978
7.83059e+06 -1.5332 -1.11118 -0.729676 2.88471 2.52179 -0.94898
7.83063e+06 -1.52762 -1.1162 -0.728294 2.76522 2.7787 -1.06702
7.83069e+06 -1.54896 -1.09527 -0.66771 2.76452 2.77892 -1.06674
7.83089e+06 -1.52116 -1.12148 -0.72955 2.88798 2.51846 -0.944538
7.83093e+06 -1.53296 -1.1114 -0.72961 2.88422 2.52367 -0.94842
7.83096e+06 -1.5277 -1.11609 -0.728096 2.76457 2.7819 -1.06561
7.83103e+06 -1.54903 -1.09521 -0.667746 2.76387 2.78212 -1.06533
7.83122e+06 -1.5212 -1.12162 -0.729975 2.8854 2.52102 -0.946196
7.83126e+06 -1.53292 -1.11159 -0.729633 2.88376 2.52348 -0.9524
7.83129e+06 -1.52772 -1.11618 -0.728521 2.76336 2.78656 -1.068
7.83149e+06 -1.52116 -1.12147 -0.729579 2.88747 2.51946 -0.944383
7.83153e+06 -1.53289 -1.11144 -0.729738 2.88369 2.52468 -0.948183
7.83156e+06 -1.52897 -1.11365 -0.731678 2.84891 2.56912 -0.960058
7.83159e+06 -1.53399 -1.10728 -0.731321 2.66582 2.85705 -0.894228
7.83166e+06 -1.55986 -1.07078 -0.679531 2.7338 2.7926 -0.838507
7.83186e+06 -1.52124 -1.12144 -0.729608 2.88247 2.52324 -0.945228
7.83189e+06 -1.53304 -1.11111 -0.729299 2.88111 2.52625 -0.949023
7.83193e+06 -1.52786 -1.11387 -0.726213 2.83536 2.58438 -0.955787
7.83196e+06 -1.53437 -1.10608 -0.730019 2.64371 2.75386 -0.847588
7.83199e+06 -1.533 -1.10621 -0.691598 2.74159 2.78935 -0.828709
7.83206e+06 -1.56471 -1.06785 -0.661065 2.73703 2.70754 -0.84228
7.83226e+06 -1.52115 -1.12148 -0.729566 2.8881 2.51748 -0.94509
7.83229e+06 -1.53303 -1.11131 -0.72962 2.88431 2.52272 -0.949055
7.83233e+06 -1.52889 -1.1137 -0.731745 2.8491 2.56958 -0.959881
7.83236e+06 -1.53397 -1.10733 -0.731453 2.66795 2.85481 -0.893875
7.83243e+06 -1.55992 -1.07056 -0.6792 2.73253 2.79228 -0.83787
7.83262e+06 -1.52115 -1.12147 -0.72955 2.88753 2.51816 -0.945048
7.83266e+06 -1.53288 -1.11144 -0.729627 2.88377 2.52336 -0.949037
7.83269e+06 -1.52894 -1.11366 -0.731632 2.84874 2.56974 -0.960743
7.83273e+06 -1.53397 -1.10731 -0.731323 2.66638 2.85774 -0.894811
7.83279e+06 -1.55984 -1.07079 -0.679481 2.73355 2.79288 -0.838741
7.83299e+06 -1.52114 -1.12146 -0.729663 2.88827 2.51854 -0.943722
7.83303e+06 -1.53304 -1.11127 -0.729781 2.88445 2.52383 -0.947649
7.83306e+06 -1.52765 -1.11614 -0.72842 2.76573 2.77916 -1.06461
7.83312e+06 -1.54896 -1.09518 -0.667836 2.765 2.77939 -1.06434
7.83332e+06 -1.52124 -1.12146 -0.729528 2.88447 2.52378 -0.942323
7.83336e+06 -1.53328 -1.11104 -0.72897 2.88089 2.52838 -0.945115
7.83339e+06 -1.52879 -1.11329 -0.723134 2.81544 2.56069 -0.94265
7.83342e+06 -1.53422 -1.10599 -0.721946 2.57168 2.78059 -0.860489
7.83349e+06 -1.55964 -1.06975 -0.676734 2.73553 2.7847 -0.805483
7.83369e+06 -1.52115 -1.12148 -0.729552 2.88804 2.51777 -0.945215
7.83372e+06 -1.53302 -1.11134 -0.729628 2.88419 2.52307 -0.949265
7.83376e+06 -1.52768 -1.11614 -0.728263 2.76464 2.78081 -1.06676
7.83382e+06 -1.54899 -1.09525 -0.667906 2.76396 2.78103 -1.06647
7.83402e+06 -1.52116 -1.12147 -0.729616 2.88785 2.51821 -0.944502
7.83406e+06 -1.5331 -1.11124 -0.729701 2.88403 2.5235 -0.948506
7.83409e+06 -1.52766 -1.11614 -0.728333 2.76544 2.77936 -1.06542
7.83416e+06 -1.54897 -1.09521 -0.667727 2.76475 2.77961 -1.06512
7.83436e+06 -1.52125 -1.12139 -0.729818 2.88435 2.5218 -0.940031
7.83439e+06 -1.53283 -1.11135 -0.730111 2.88224 2.52655 -0.944793
7.83442e+06 -1.52773 -1.11604 -0.728238 2.76518 2.78182 -1.06349
7.83449e+06 -1.54901 -1.09512 -0.667823 2.76446 2.78205 -1.06323
7.83469e+06 -1.52114 -1.12148 -0.729551 2.88821 2.51717 -0.945312
7.83472e+06 -1.53293 -1.11139 -0.729644 2.88442 2.52237 -0.949238
7.83476e+06 -1.52892 -1.11366 -0.731704 2.84924 2.57037 -0.959633
7.83479e+06 -1.53397 -1.1073 -0.731391 2.66726 2.85707 -0.893742
7.83486e+06 -1.55989 -1.07073 -0.679353 2.73366 2.79242 -0.838382
7.83506e+06 -1.52126 -1.12142 -0.729649 2.88281 2.52188 -0.9443
7.83509e+06 -1.53302 -1.11099 -0.729485 2.87891 2.52709 -0.947083
7.83512e+06 -1.52708 -1.11621 -0.72557 2.76577 2.78565 -1.0585
7.83519e+06 -1.54894 -1.09528 -0.667611 2.76506 2.78586 -1.05822
7.83539e+06 -1.52116 -1.12148 -0.729535 2.88759 2.5178 -0.944912
7.83542e+06 -1.53287 -1.11146 -0.729624 2.88385 2.52297 -0.948797
7.83546e+06 -1.52883 -1.11324 -0.729115 2.81953 2.5772 -0.92923
7.83549e+06 -1.53426 -1.10593 -0.729311 2.63807 2.75992 -0.841396
7.83552e+06 -1.53296 -1.10627 -0.691783 2.74287 2.78789 -0.827487
7.83559e+06 -1.56466 -1.06774 -0.6612 2.73722 2.70663 -0.841731
7.83579e+06 -1.52115 -1.12146 -0.729625 2.8877 2.5174 -0.944893
7.83582e+06 -1.53316 -1.11117 -0.729744 2.88386 2.5227 -0.948829
7.83586e+06 -1.52765 -1.11617 -0.728395 2.76531 2.77819 -1.06559
7.83592e+06 -1.54897 -1.09523 -0.667695 2.76462 2.77841 -1.06529
7.83612e+06 -1.52115 -1.12147 -0.729567 2.88763 2.51824 -0.944875
7.83616e+06 -1.53291 -1.1114 -0.729687 2.8838 2.52351 -0.948755
7.83619e+06 -1.52772 -1.11608 -0.728216 2.76488 2.78109 -1.06596
7.83626e+06 -1.54901 -1.09519 -0.6678 2.76422 2.7813 -1.06565
7.83646e+06 -1.52115 -1.12146 -0.729588 2.88782 2.51774 -0.945126
7.83649e+06 -1.53299 -1.11128 -0.729644 2.8841 2.523 -0.948979
7.83652e+06 -1.52769 -1.11608 -0.728237 2.76484 2.78037 -1.0657
7.83659e+06 -1.54898 -1.09517 -0.667778 2.76417 2.78059 -1.06535
7.83679e+06 -1.52116 -1.12144 -0.729599 2.88742 2.51867 -0.943702
7.83682e+06 -1.53307 -1.11123 -0.729704 2.88377 2.52387 -0.947226
7.83686e+06 -1.52765 -1.11613 -0.728301 2.76514 2.77993 -1.06423
7.83692e+06 -1.54895 -1.09526 -0.667862 2.76395 2.78059 -1.06494
7.83712e+06 -1.52117 -1.12145 -0.729602 2.88785 2.51856 -0.943833
7.83716e+06 -1.53317 -1.11118 -0.729612 2.88378 2.52395 -0.948171
7.83719e+06 -1.52763 -1.11618 -0.72825 2.76485 2.78017 -1.06539
7.83726e+06 -1.54898 -1.09524 -0.667593 2.76426 2.78034 -1.06499
7.83746e+06 -1.52116 -1.12148 -0.729606 2.88833 2.51653 -0.94509
7.83749e+06 -1.53293 -1.11142 -0.729729 2.8843 2.5219 -0.949543
7.83752e+06 -1.52894 -1.11368 -0.731823 2.84877 2.57035 -0.96015
7.83756e+06 -1.534 -1.1073 -0.73146 2.66733 2.85601 -0.893764
7.83762e+06 -1.55993 -1.0707 -0.679422 2.73452 2.79059 -0.83751
7.83782e+06 -1.52115 -1.12146 -0.729666 2.88725 2.51916 -0.944361
7.83786e+06 -1.53309 -1.1112 -0.729772 2.88369 2.52433 -0.947742
7.83789e+06 -1.52765 -1.11612 -0.728371 2.76599 2.77933 -1.06489
7.83796e+06 -1.54897 -1.0952 -0.667725 2.76523 2.77957 -1.06477
7.83816e+06 -1.52124 -1.12142 -0.729592 2.88191 2.52359 -0.944851
7.83819e+06 -1.53273 -1.11125 -0.729551 2.87789 2.52908 -0.947399
7.83822e+06 -1.52998 -1.11228 -0.730531 2.75301 2.64456 -0.878501
7.83826e+06 -1.53688 -1.10415 -0.698143 2.66771 2.71782 -0.841427
7.83829e+06 -1.54045 -1.11115 -0.680974 2.68004 2.81808 -0.884881
7.83836e+06 -1.57265 -1.07998 -0.652398 2.57924 2.96815 -0.960659
7.83856e+06 -1.52116 -1.12147 -0.72963 2.88762 2.518 -0.944529
7.83859e+06 -1.53313 -1.11121 -0.729646 2.88375 2.52332 -0.948421
7.83862e+06 -1.52764 -1.11616 -0.728332 2.7653 2.7787 -1.06472
7.83869e+06 -1.54898 -1.09518 -0.667644 2.76487 2.77872 -1.06401
7.83889e+06 -1.52115 -1.12145 -0.729646 2.88784 2.51764 -0.943972
7.83892e+06 -1.5329 -1.11138 -0.72984 2.88416 2.5228 -0.947476
7.83896e+06 -1.52895 -1.11363 -0.731713 2.84999 2.5672 -0.959555
7.83899e+06 -1.53399 -1.10726 -0.731341 2.66665 2.85545 -0.892942
7.83906e+06 -1.55988 -1.07073 -0.679432 2.73334 2.79169 -0.83764
7.83926e+06 -1.52125 -1.12143 -0.7296 2.88259 2.52386 -0.94505
7.83929e+06 -1.5331 -1.11109 -0.729265 2.88128 2.52681 -0.949156
7.83932e+06 -1.52802 -1.11348 -0.724747 2.7855 2.67706 -0.921149
7.83936e+06 -1.53587 -1.10504 -0.698557 2.67158 2.8465 -0.826907
7.83942e+06 -1.56926 -1.07103 -0.666656 2.71395 2.78696 -0.842984
7.83962e+06 -1.52116 -1.12145 -0.729685 2.88787 2.51892 -0.942919
7.83966e+06 -1.53295 -1.11135 -0.729799 2.88402 2.5242 -0.946692
7.83969e+06 -1.52771 -1.11607 -0.728264 2.76498 2.78037 -1.06431
7.83976e+06 -1.54901 -1.09512 -0.667731 2.76427 2.78055 -1.06402
7.83996e+06 -1.52115 -1.12145 -0.729612 2.88788 2.51833 -0.943861
7.83999e+06 -1.533 -1.11126 -0.729708 2.88409 2.52357 -0.947841
7.84002e+06 -1.52892 -1.11367 -0.731761 2.84926 2.56837 -0.958807
7.84006e+06 -1.53398 -1.10729 -0.731386 2.66756 2.85356 -0.89251
7.84012e+06 -1.55993 -1.07054 -0.679097 2.73247 2.79251 -0.836501
7.84032e+06 -1.52116 -1.12145 -0.729635 2.88804 2.51935 -0.943803
7.84036e+06 -1.53288 -1.11141 -0.729734 2.8843 2.52461 -0.947722
7.84039e+06 -1.52773 -1.11607 -0.728204 2.76478 2.78248 -1.06464
7.84046e+06 -1.54904 -1.09517 -0.66784 2.76408 2.78267 -1.06436
7.84066e+06 -1.52117 -1.12147 -0.729607 2.88798 2.51696 -0.944673
7.84069e+06 -1.533 -1.11137 -0.729728 2.88416 2.52224 -0.948524
7.84072e+06 -1.52893 -1.11366 -0.731719 2.84936 2.56963 -0.958889
7.84076e+06 -1.53396 -1.1073 -0.731342 2.66721 2.85629 -0.893409
7.84082e+06 -1.55987 -1.07062 -0.679346 2.73304 2.79251 -0.837236
7.84102e+06 -1.52116 -1.12146 -0.729628 2.88751 2.51838 -0.944243
7.84106e+06 -1.53316 -1.11118 -0.729724 2.88367 2.52365 -0.948135
7.84109e+06 -1.52764 -1.11615 -0.728356 2.76545 2.77936 -1.06506
7.84116e+06 -1.54896 -1.0952 -0.66768 2.76477 2.77961 -1.06478
7.84136e+06 -1.52114 -1.12146 -0.729595 2.88806 2.51848 -0.944623
7.84139e+06 -1.5329 -1.11139 -0.729733 2.88428 2.52369 -0.948436
7.84142e+06 -1.52772 -1.11606 -0.728254 2.76464 2.78101 -1.06552
7.84149e+06 -1.54901 -1.09517 -0.667847 2.76396 2.78124 -1.0652
7.84169e+06 -1.52116 -1.12144 -0.72963 2.88776 2.51877 -0.94355
7.84172e+06 -1.53297 -1.1113 -0.729725 2.88391 2.52403 -0.947325
7.84176e+06 -1.52768 -1.11608 -0.728273 2.76488 2.77949 -1.06425
7.84182e+06 -1.54897 -1.09515 -0.667864 2.76413 2.77977 -1.06401
7.84202e+06 -1.52116 -1.12145 -0.729627 2.88784 2.51806 -0.943958
7.84206e+06 -1.53306 -1.11126 -0.729717 2.88399 2.52331 -0.947831
7.84209e+06 -1.52766 -1.11614 -0.728292 2.76563 2.77871 -1.06596
7.84216e+06 -1.549 -1.09519 -0.66764 2.76495 2.77893 -1.06573
7.84236e+06 -1.52115 -1.12147 -0.729563 2.88775 2.51823 -0.944538
7.84239e+06 -1.53313 -1.11119 -0.729645 2.88389 2.52349 -0.948416
7.84242e+06 -1.52763 -1.11617 -0.728324 2.76526 2.77925 -1.06527
7.84249e+06 -1.54893 -1.09524 -0.667733 2.7646 2.77948 -1.06496
7.84269e+06 -1.52117 -1.12145 -0.729687 2.88839 2.5174 -0.943061
7.84272e+06 -1.53294 -1.1114 -0.729807 2.8846 2.52254 -0.946863
7.84276e+06 -1.52893 -1.11367 -0.73165 2.84969 2.5694 -0.959825
7.84279e+06 -1.53397 -1.1073 -0.731362 2.6672 2.85764 -0.893892
7.84286e+06 -1.55988 -1.07069 -0.679458 2.73348 2.79213 -0.837335
7.84306e+06 -1.52125 -1.12144 -0.729566 2.88277 2.52319 -0.945293
7.84309e+06 -1.533 -1.11107 -0.72933 2.87874 2.52866 -0.948242
7.84312e+06 -1.5299 -1.11186 -0.732513 2.80365 2.58626 -0.797445
7.84316e+06 -1.53614 -1.10477 -0.707742 2.71577 2.69418 -0.722172
7.84322e+06 -1.5654 -1.08274 -0.640416 2.70846 2.70665 -0.661058
7.84326e+06 -1.56989 -1.08533 -0.644558 2.69376 2.78281 -0.781379
7.84346e+06 -1.52122 -1.12145 -0.729599 2.88718 2.51935 -0.943989
7.84349e+06 -1.5331 -1.11127 -0.729659 2.88333 2.52467 -0.947946
7.84352e+06 -1.52771 -1.11615 -0.728266 2.76463 2.78008 -1.06521
7.84359e+06 -1.54903 -1.09524 -0.667825 2.7639 2.78032 -1.06495
7.84379e+06 -1.5213 -1.12149 -0.729687 2.88729 2.51815 -0.943512
7.84382e+06 -1.53327 -1.11125 -0.729795 2.88342 2.52352 -0.94733
7.84386e+06 -1.52777 -1.1162 -0.728417 2.7648 2.77925 -1.06397
7.84392e+06 -1.54907 -1.09526 -0.667846 2.76416 2.77945 -1.06369
7.84412e+06 -1.52142 -1.12152 -0.729518 2.88503 2.52124 -0.946116
7.8198e+06 -1.52144 -1.12107 -0.727647 2.92137 2.54912 -0.88932
7.81983e+06 -1.53376 -1.11205 -0.721903 2.904 2.58714 -0.900095
7.81986e+06 -1.53927 -1.1263 -0.654146 2.84087 2.70335 -0.983318
7.8199e+06 -1.55025 -1.1412 -0.556699 2.68914 2.78244 -1.01721
7.8201e+06 -1.52144 -1.12113 -0.727615 2.92137 2.54914 -0.889437
7.82013e+06 -1.53369 -1.11211 -0.721936 2.90378 2.58706 -0.900729
7.82016e+06 -1.53927 -1.12634 -0.654154 2.84089 2.70291 -0.983781
7.8202e+06 -1.55031 -1.14126 -0.556621 2.69017 2.78192 -1.01811
7.82039e+06 -1.52146 -1.12116 -0.727593 2.92121 2.54914 -0.889546
7.82043e+06 -1.53398 -1.11195 -0.721513 2.90295 2.58855 -0.901212
7.82046e+06 -1.53916 -1.12637 -0.654467 2.83977 2.7066 -0.985384
7.82049e+06 -1.54991 -1.14085 -0.559475 2.69157 2.78589 -1.0204
7.82069e+06 -1.52146 -1.12117 -0.727582 2.92122 2.54917 -0.889614
7.82073e+06 -1.53395 -1.11197 -0.721537 2.90312 2.58815 -0.901176
7.82076e+06 -1.53919 -1.1264 -0.654313 2.84008 2.70572 -0.985084
7.82079e+06 -1.54997 -1.14092 -0.559067 2.69188 2.78464 -1.01984
7.82099e+06 -1.52146 -1.12117 -0.727584 2.92123 2.54912 -0.889568
7.82103e+06 -1.53392 -1.11198 -0.721585 2.90322 2.58811 -0.901002
7.82106e+06 -1.5392 -1.12638 -0.654354 2.84017 2.70554 -0.984895
7.82109e+06 -1.54998 -1.14093 -0.558925 2.69178 2.78457 -1.01982
7.82129e+06 -1.52147 -1.12117 -0.72758 2.92118 2.5491 -0.889566
7.82133e+06 -1.53392 -1.11199 -0.721603 2.90328 2.58782 -0.900883
7.82136e+06 -1.53921 -1.12638 -0.654307 2.84027 2.70491 -0.984571
7.82139e+06 -1.55003 -1.14098 -0.558615 2.6916 2.78384 -1.0195
7.82159e+06 -1.52147 -1.12117 -0.727584 2.92127 2.54908 -0.889433
7.82163e+06 -1.53389 -1.11201 -0.721651 2.90338 2.58783 -0.900801
7.82166e+06 -1.53923 -1.12639 -0.654269 2.84047 2.70487 -0.984402
7.82169e+06 -1.55006 -1.14102 -0.55839 2.69147 2.78389 -1.01915
7.82189e+06 -1.52146 -1.12117 -0.727582 2.92128 2.54907 -0.889474
7.82193e+06 -1.53385 -1.11203 -0.721696 2.90345 2.58762 -0.900838
7.82196e+06 -1.53923 -1.12638 -0.654285 2.84057 2.70441 -0.98434
7.82199e+06 -1.55008 -1.14105 -0.558216 2.69149 2.78343 -1.01902
7.82219e+06 -1.52146 -1.12117 -0.727582 2.92127 2.54906 -0.889517
7.82223e+06 -1.53383 -1.11204 -0.72172 2.90343 2.58757 -0.900921
7.82226e+06 -1.53924 -1.12638 -0.654236 2.84057 2.70428 -0.984422
7.82229e+06 -1.55012 -1.1411 -0.557925 2.69124 2.78325 -1.01897
7.82249e+06 -1.52146 -1.12117 -0.727581 2.92124 2.54911 -0.889528
7.82253e+06 -1.53379 -1.11205 -0.721756 2.90347 2.58737 -0.900983
7.82256e+06 -1.53925 -1.12637 -0.654206 2.84067 2.70369 -0.984426
7.82259e+06 -1.55015 -1.14114 -0.557592 2.69141 2.78247 -1.01903
7.82279e+06 -1.52146 -1.12117 -0.72758 2.92125 2.54909 -0.889549
7.82283e+06 -1.53377 -1.11206 -0.721784 2.90356 2.58717 -0.900887
7.82286e+06 -1.53926 -1.12638 -0.654149 2.84076 2.70341 -0.984228
7.82289e+06 -1.55019 -1.14118 -0.557328 2.69133 2.78234 -1.01874
7.82309e+06 -1.52146 -1.12116 -0.727595 2.92127 2.54923 -0.889447
7.82313e+06 -1.53374 -1.11207 -0.721827 2.90365 2.58706 -0.900751
7.82316e+06 -1.53926 -1.12637 -0.654155 2.84084 2.70313 -0.984068
7.82319e+06 -1.55021 -1.14122 -0.557121 2.69124 2.78217 -1.01857
7.82339e+06 -1.52146 -1.12116 -0.727597 2.92127 2.54923 -0.889415
7.82343e+06 -1.53371 -1.11209 -0.72188 2.90368 2.58704 -0.900685
7.82346e+06 -1.53927 -1.12635 -0.65419 2.84095 2.70288 -0.98388
7.82349e+06 -1.55023 -1.14123 -0.556978 2.69109 2.78183 -1.01843
7.82369e+06 -1.52146 -1.12117 -0.727597 2.92127 2.54921 -0.889425
7.82373e+06 -1.53369 -1.11212 -0.721911 2.90384 2.58666 -0.900601
7.82376e+06 -1.53928 -1.12636 -0.654139 2.84119 2.70208 -0.983648
7.82379e+06 -1.55027 -1.14127 -0.556692 2.69105 2.78082 -1.01802
7.82399e+06 -1.52146 -1.12117 -0.727597 2.92126 2.54921 -0.889449
7.82403e+06 -1.53367 -1.11213 -0.721944 2.9038 2.58665 -0.900713
7.82406e+06 -1.5393 -1.12636 -0.654122 2.84118 2.70204 -0.983749
7.82409e+06 -1.55029 -1.14132 -0.556463 2.6909 2.78086 -1.01803
7.82429e+06 -1.52146 -1.12117 -0.727584 2.92121 2.54917 -0.889565
7.82433e+06 -1.53398 -1.11196 -0.721512 2.90308 2.58834 -0.901182
7.82436e+06 -1.53918 -1.1264 -0.654373 2.84006 2.70604 -0.985081
7.82439e+06 -1.54994 -1.14088 -0.559339 2.69191 2.78508 -1.02
7.82459e+06 -1.52146 -1.12117 -0.727581 2.92123 2.54912 -0.88956
7.82463e+06 -1.53396 -1.11197 -0.721538 2.90317 2.58812 -0.901072
7.82466e+06 -1.53919 -1.12639 -0.654335 2.84011 2.70556 -0.984926
7.82469e+06 -1.54997 -1.14092 -0.559013 2.69174 2.78444 -1.01984
7.82489e+06 -1.52146 -1.12117 -0.727581 2.92125 2.54913 -0.889521
7.82493e+06 -1.53393 -1.11198 -0.721579 2.90327 2.58798 -0.900936
7.82496e+06 -1.53921 -1.1264 -0.654299 2.84035 2.70527 -0.984677
7.82499e+06 -1.55001 -1.14095 -0.558809 2.69175 2.78424 -1.01949
7.82519e+06 -1.52146 -1.12117 -0.727583 2.92125 2.54913 -0.889501
7.82523e+06 -1.53389 -1.112 -0.721637 2.90329 2.58792 -0.900946
7.82526e+06 -1.53919 -1.12636 -0.654399 2.84035 2.70503 -0.984632
7.82529e+06 -1.55 -1.14096 -0.558755 2.69182 2.7841 -1.0197
7.82549e+06 -1.5215 -1.12117 -0.727583 2.92095 2.54902 -0.889477
7.82553e+06 -1.53392 -1.11201 -0.721659 2.90299 2.58775 -0.90093
7.82556e+06 -1.53927 -1.12639 -0.654326 2.84007 2.70489 -0.984603
7.82559e+06 -1.55009 -1.14104 -0.558366 2.691 2.78408 -1.01929
7.82579e+06 -1.52151 -1.12121 -0.727606 2.92076 2.54897 -0.889415
7.82583e+06 -1.53387 -1.11208 -0.721737 2.90289 2.58752 -0.900825
7.82586e+06 -1.53925 -1.12642 -0.654413 2.83999 2.70407 -0.984269
7.82589e+06 -1.55008 -1.14107 -0.558389 2.69081 2.78275 -1.01885
7.82609e+06 -1.52152 -1.1212 -0.7276 2.92075 2.54897 -0.88944
7.82613e+06 -1.53388 -1.11208 -0.72175 2.90295 2.58739 -0.9008
7.82616e+06 -1.53928 -1.12641 -0.654301 2.84009 2.70397 -0.984194
7.82619e+06 -1.55016 -1.14112 -0.558003 2.69062 2.78282 -1.01852
7.82639e+06 -1.52151 -1.1212 -0.727602 2.92079 2.54894 -0.889374
7.82643e+06 -1.53384 -1.11209 -0.721795 2.90304 2.58719 -0.900683
7.82646e+06 -1.53929 -1.1264 -0.654286 2.84021 2.7035 -0.984031
7.82649e+06 -1.55018 -1.14115 -0.557774 2.69072 2.7824 -1.0186
7.82669e+06 -1.52152 -1.1212 -0.727598 2.9208 2.54893 -0.889385
7.82673e+06 -1.53382 -1.1121 -0.721817 2.90312 2.58703 -0.900629
7.82676e+06 -1.53931 -1.1264 -0.654239 2.84032 2.70312 -0.983887
7.82679e+06 -1.55023 -1.14121 -0.557404 2.6906 2.78199 -1.01836
7.82699e+06 -1.52151 -1.1212 -0.727616 2.92079 2.54913 -0.889296
7.82703e+06 -1.53379 -1.11211 -0.72186 2.90319 2.58691 -0.90059
7.82706e+06 -1.53931 -1.1264 -0.654211 2.84041 2.70288 -0.983878
7.82709e+06 -1.55025 -1.14124 -0.557208 2.69063 2.78174 -1.01834
7.82729e+06 -1.52151 -1.1212 -0.727615 2.92079 2.54909 -0.88933
7.82733e+06 -1.53376 -1.11213 -0.721903 2.90322 2.58682 -0.900619
7.82736e+06 -1.53932 -1.12639 -0.654221 2.84046 2.70263 -0.983764
7.82739e+06 -1.55027 -1.14126 -0.557072 2.69045 2.78163 -1.01819
7.82759e+06 -1.52151 -1.12119 -0.727616 2.92079 2.54909 -0.889324
7.82763e+06 -1.53372 -1.11214 -0.721936 2.90325 2.58665 -0.900647
7.82766e+06 -1.53933 -1.12638 -0.654175 2.84057 2.70206 -0.983733
7.82769e+06 -1.55031 -1.14131 -0.556712 2.69059 2.78078 -1.01823
7.82789e+06 -1.52151 -1.1212 -0.727616 2.92078 2.54907 -0.889343
7.82793e+06 -1.53371 -1.11216 -0.72198 2.90327 2.58668 -0.900549
7.82796e+06 -1.53933 -1.12638 -0.654212 2.84065 2.7022 -0.98352
7.82799e+06 -1.55033 -1.14132 -0.556639 2.69019 2.78115 -1.01773
7.82819e+06 -1.52151 -1.1212 -0.7276 2.92075 2.54901 -0.889446
7.82823e+06 -1.53401 -1.11198 -0.721544 2.90262 2.58813 -0.90096
7.82826e+06 -1.53922 -1.12642 -0.654418 2.83959 2.70572 -0.984778
7.82829e+06 -1.54998 -1.14091 -0.559418 2.69144 2.78472 -1.01976
7.82849e+06 -1.52152 -1.1212 -0.7276 2.92075 2.549 -0.889419
7.82853e+06 -1.534 -1.112 -0.721572 2.90266 2.58809 -0.900942
7.82856e+06 -1.53924 -1.12642 -0.654383 2.83964 2.70559 -0.984667
7.82859e+06 -1.55001 -1.14094 -0.559133 2.6911 2.78459 -1.01958
7.82879e+06 -1.52151 -1.1212 -0.7276 2.92077 2.54901 -0.889395
7.82883e+06 -1.53396 -1.11202 -0.721614 2.90277 2.58783 -0.900896
7.82886e+06 -1.53925 -1.12642 -0.654362 2.83984 2.70503 -0.984592
7.82889e+06 -1.55004 -1.14098 -0.558896 2.69131 2.78401 -1.01944
7.82909e+06 -1.52151 -1.1212 -0.727601 2.9208 2.54895 -0.889387
7.82913e+06 -1.53395 -1.11204 -0.721652 2.90281 2.58783 -0.900824
7.82916e+06 -1.53925 -1.12641 -0.654373 2.83987 2.70494 -0.984401
7.82919e+06 -1.55007 -1.14101 -0.558713 2.69089 2.78391 -1.01905
7.82939e+06 -1.52151 -1.1212 -0.727602 2.92079 2.54896 -0.889382
7.82943e+06 -1.53392 -1.11205 -0.721688 2.90292 2.58759 -0.900766
7.82946e+06 -1.53926 -1.12641 -0.654334 2.83995 2.70446 -0.984298
7.82949e+06 -1.5501 -1.14105 -0.558459 2.69089 2.78336 -1.01895
7.82969e+06 -1.52152 -1.1212 -0.727603 2.92079 2.54898 -0.889375
7.82973e+06 -1.5339 -1.11206 -0.721716 2.90291 2.58757 -0.900741
7.82976e+06 -1.53927 -1.1264 -0.654318 2.83993 2.7044 -0.984282
7.82979e+06 -1.55013 -1.14109 -0.558156 2.69057 2.78332 -1.01891
7.82999e+06 -1.52151 -1.1212 -0.7276 2.9208 2.54899 -0.889376
7.83003e+06 -1.53386 -1.11208 -0.721764 2.90299 2.58736 -0.900769
7.83006e+06 -1.53928 -1.12641 -0.654302 2.84017 2.70394 -0.984115
7.83009e+06 -1.55016 -1.14112 -0.558019 2.69084 2.78296 -1.01856
7.83029e+06 -1.52152 -1.1212 -0.7276 2.92078 2.54895 -0.889399
7.83033e+06 -1.53385 -1.11209 -0.721783 2.90309 2.58718 -0.900655
7.83036e+06 -1.5393 -1.1264 -0.654226 2.84021 2.7035 -0.983929
7.83039e+06 -1.5502 -1.14118 -0.557596 2.69056 2.78225 -1.01832
7.83059e+06 -1.52151 -1.1212 -0.727616 2.92079 2.54911 -0.889358
7.83063e+06 -1.5338 -1.1121 -0.721837 2.90319 2.58694 -0.900657
7.83066e+06 -1.5393 -1.12639 -0.654254 2.84041 2.70289 -0.983897
7.83069e+06 -1.55022 -1.1412 -0.557444 2.69091 2.78166 -1.01849
7.83089e+06 -1.52151 -1.1212 -0.727615 2.92081 2.54907 -0.88933
7.83093e+06 -1.53378 -1.11212 -0.72187 2.90323 2.58695 -0.900565
7.83096e+06 -1.53931 -1.12639 -0.654243 2.84044 2.70278 -0.983734
7.83099e+06 -1.55025 -1.14124 -0.557171 2.69047 2.7816 -1.01821
7.83119e+06 -1.52151 -1.1212 -0.727615 2.92079 2.54909 -0.889353
7.83123e+06 -1.53375 -1.11214 -0.721914 2.90329 2.58674 -0.900562
7.83126e+06 -1.53932 -1.1264 -0.654214 2.8406 2.70241 -0.983626
7.83129e+06 -1.55028 -1.14126 -0.557066 2.69057 2.78124 -1.0179
7.83149e+06 -1.52152 -1.1212 -0.727616 2.92079 2.54909 -0.88932
7.83153e+06 -1.53374 -1.11215 -0.721938 2.90333 2.5867 -0.900473
7.83156e+06 -1.53933 -1.12639 -0.654162 2.84061 2.70224 -0.983484
7.83159e+06 -1.55032 -1.14132 -0.556678 2.69014 2.78108 -1.01763
7.83179e+06 -1.52151 -1.1212 -0.727615 2.9208 2.54909 -0.889362
7.83183e+06 -1.53368 -1.11216 -0.72198 2.90345 2.5863 -0.900511
7.83186e+06 -1.53933 -1.12638 -0.65417 2.84086 2.70129 -0.983411
7.83189e+06 -1.55035 -1.14135 -0.55645 2.6908 2.77981 -1.01784
7.83209e+06 -1.52152 -1.1212 -0.727602 2.92078 2.54897 -0.889416
7.83213e+06 -1.53403 -1.11199 -0.721539 2.90261 2.58829 -0.900968
7.83216e+06 -1.53923 -1.12642 -0.654418 2.83951 2.706 -0.984826
7.83219e+06 -1.54999 -1.14092 -0.559318 2.691 2.785 -1.01974
7.83239e+06 -1.52151 -1.1212 -0.727601 2.92075 2.549 -0.889437
7.83243e+06 -1.53398 -1.11201 -0.721599 2.90269 2.58795 -0.900984
7.83246e+06 -1.53923 -1.12642 -0.654455 2.83969 2.70532 -0.984688
7.83249e+06 -1.55001 -1.14093 -0.559255 2.69133 2.78427 -1.01947
7.83269e+06 -1.52152 -1.1212 -0.727602 2.92078 2.54897 -0.889406
7.83273e+06 -1.53398 -1.11203 -0.721617 2.90276 2.58798 -0.900874
7.83276e+06 -1.53926 -1.12643 -0.654344 2.83978 2.70539 -0.984541
7.83279e+06 -1.55005 -1.14099 -0.558854 2.6908 2.78441 -1.01914
7.83299e+06 -1.52151 -1.1212 -0.727601 2.92074 2.549 -0.889449
7.83303e+06 -1.53392 -1.11204 -0.721674 2.90281 2.58768 -0.900875
7.83306e+06 -1.53925 -1.12641 -0.6544 2.83993 2.70456 -0.984379
7.83309e+06 -1.55008 -1.141 -0.558743 2.69125 2.78338 -1.01918
7.83329e+06 -1.52151 -1.1212 -0.727601 2.92082 2.54896 -0.88939
7.83332e+06 -1.53391 -1.11204 -0.721689 2.9029 2.58766 -0.900832
7.83336e+06 -1.53926 -1.1264 -0.654305 2.83992 2.70461 -0.984401
7.83339e+06 -1.55011 -1.14105 -0.558385 2.69092 2.7837 -1.01919
7.83359e+06 -1.52151 -1.1212 -0.727601 2.92078 2.54897 -0.889434
7.83362e+06 -1.53386 -1.11207 -0.721749 2.90299 2.58737 -0.900793
7.83366e+06 -1.53927 -1.1264 -0.654344 2.84022 2.70389 -0.984177
7.83369e+06 -1.55013 -1.14108 -0.558222 2.69121 2.78275 -1.01885
7.83389e+06 -1.52152 -1.1212 -0.727602 2.92079 2.54894 -0.889417
7.83392e+06 -1.53388 -1.11208 -0.721763 2.903 2.58754 -0.900696
7.83396e+06 -1.53929 -1.12641 -0.654258 2.84007 2.70431 -0.984055
7.83399e+06 -1.55017 -1.14113 -0.557908 2.69021 2.78337 -1.01847
7.83419e+06 -1.52151 -1.1212 -0.727603 2.92079 2.54894 -0.889376
7.83422e+06 -1.53382 -1.11209 -0.721804 2.90309 2.58707 -0.900666
7.83426e+06 -1.53929 -1.12639 -0.654288 2.84025 2.70323 -0.984009
7.83429e+06 -1.55019 -1.14117 -0.557667 2.69085 2.78205 -1.01858
7.83449e+06 -1.52151 -1.1212 -0.727616 2.92077 2.5491 -0.889337
7.83452e+06 -1.5338 -1.1121 -0.721844 2.9031 2.58708 -0.900691
7.83456e+06 -1.53929 -1.12639 -0.654284 2.84031 2.7031 -0.983964
7.83459e+06 -1.55022 -1.14121 -0.55742 2.69068 2.78185 -1.01853
7.83479e+06 -1.52151 -1.1212 -0.727615 2.92077 2.5491 -0.889365
7.83482e+06 -1.53378 -1.11212 -0.721876 2.90322 2.58676 -0.900612
7.83486e+06 -1.53933 -1.12641 -0.654174 2.8405 2.70254 -0.98373
7.83489e+06 -1.55028 -1.14126 -0.55712 2.69058 2.78138 -1.01801
7.83509e+06 -1.52151 -1.1212 -0.727615 2.92076 2.54908 -0.88939
7.83512e+06 -1.53374 -1.11214 -0.721921 2.90325 2.58668 -0.90059
7.83516e+06 -1.53932 -1.12639 -0.654211 2.84063 2.7022 -0.983555
7.83519e+06 -1.55029 -1.14128 -0.556935 2.69054 2.78089 -1.01779
7.83539e+06 -1.52151 -1.1212 -0.727615 2.92079 2.5491 -0.889332
7.83542e+06 -1.53371 -1.11215 -0.721954 2.90337 2.58649 -0.900521
7.83546e+06 -1.53933 -1.12638 -0.654173 2.84075 2.70181 -0.983514
7.83549e+06 -1.55031 -1.14132 -0.556681 2.69068 2.78061 -1.01786
7.83569e+06 -1.52152 -1.1212 -0.727601 2.92079 2.54898 -0.889391
7.83572e+06 -1.53405 -1.11199 -0.721505 2.90265 2.58821 -0.900915
7.83576e+06 -1.53923 -1.12644 -0.654402 2.83957 2.70591 -0.984783
7.83579e+06 -1.54997 -1.1409 -0.559483 2.6911 2.78484 -1.01958
7.83599e+06 -1.52151 -1.1212 -0.727601 2.92072 2.54901 -0.889447
7.83602e+06 -1.53402 -1.11199 -0.721545 2.90262 2.5882 -0.90102
7.83606e+06 -1.53923 -1.12643 -0.654371 2.83952 2.70591 -0.984896
7.83609e+06 -1.55 -1.14092 -0.559289 2.69115 2.78496 -1.0198
7.83629e+06 -1.52152 -1.1212 -0.727602 2.92077 2.54897 -0.889361
7.83632e+06 -1.53398 -1.112 -0.721605 2.90273 2.58817 -0.900733
7.83636e+06 -1.53922 -1.1264 -0.654457 2.83947 2.70603 -0.984814
7.83639e+06 -1.54999 -1.14092 -0.559271 2.69082 2.78547 -1.02011
7.83659e+06 -1.5215 -1.1212 -0.727598 2.92074 2.54903 -0.889476
7.83662e+06 -1.53392 -1.11203 -0.721643 2.90262 2.58789 -0.901248
7.83666e+06 -1.53922 -1.12639 -0.654531 2.8397 2.70497 -0.98505
7.83669e+06 -1.55002 -1.14097 -0.558979 2.69132 2.78387 -1.02005
7.83689e+06 -1.52149 -1.1212 -0.727593 2.92052 2.54915 -0.889921
7.83692e+06 -1.5339 -1.11204 -0.721657 2.90263 2.5875 -0.901532
7.83696e+06 -1.53927 -1.12641 -0.654299 2.83994 2.70399 -0.984909
7.83699e+06 -1.55009 -1.14106 -0.558356 2.69158 2.78235 -1.01955
7.83719e+06 -1.52153 -1.1212 -0.727597 2.92063 2.54904 -0.88963
7.83722e+06 -1.53395 -1.11205 -0.721661 2.90287 2.58759 -0.900849
7.83726e+06 -1.53929 -1.12642 -0.654171 2.83997 2.70435 -0.984217
7.83729e+06 -1.55014 -1.14111 -0.55801 2.69061 2.78301 -1.01848
7.83749e+06 -1.52152 -1.1212 -0.727594 2.92057 2.54909 -0.889734
7.83752e+06 -1.53387 -1.11207 -0.721714 2.90281 2.5872 -0.901171
7.83756e+06 -1.53926 -1.12639 -0.654256 2.84034 2.70301 -0.983966
7.83759e+06 -1.55013 -1.14115 -0.557728 2.69142 2.78117 -1.01826
7.83779e+06 -1.5215 -1.1212 -0.727597 2.92081 2.54898 -0.889341
7.83782e+06 -1.53381 -1.11207 -0.721761 2.90336 2.5868 -0.900284
7.83786e+06 -1.53925 -1.12637 -0.65438 2.84088 2.70248 -0.983387
7.83789e+06 -1.55015 -1.14116 -0.557761 2.69209 2.78096 -1.01818
7.83809e+06 -1.52152 -1.1212 -0.7276 2.92086 2.5489 -0.889266
7.83812e+06 -1.53384 -1.11209 -0.721794 2.90343 2.58681 -0.900152
7.83816e+06 -1.53931 -1.12642 -0.654163 2.8407 2.70289 -0.983298
7.83819e+06 -1.55022 -1.1412 -0.557482 2.69105 2.78183 -1.01775
7.83839e+06 -1.52153 -1.1212 -0.727617 2.92088 2.54901 -0.889172
7.83842e+06 -1.53384 -1.11211 -0.721832 2.90333 2.5871 -0.900212
7.83846e+06 -1.53933 -1.12641 -0.654184 2.84045 2.70342 -0.983385
7.83849e+06 -1.55026 -1.14123 -0.557295 2.68999 2.78252 -1.01771
7.83869e+06 -1.52151 -1.12119 -0.727618 2.92089 2.54906 -0.889161
7.83872e+06 -1.53376 -1.11212 -0.721894 2.90328 2.5869 -0.900501
7.83876e+06 -1.53931 -1.12639 -0.654303 2.84047 2.70285 -0.983801
7.83879e+06 -1.55025 -1.14124 -0.557232 2.69041 2.78204 -1.01842
7.83899e+06 -1.52152 -1.12119 -0.727616 2.9208 2.54908 -0.889338
7.83902e+06 -1.53376 -1.11214 -0.721913 2.90319 2.58687 -0.900674
7.83906e+06 -1.53933 -1.12639 -0.654172 2.84032 2.7028 -0.98394
7.83909e+06 -1.5503 -1.14129 -0.556863 2.6899 2.78185 -1.01824
7.83929e+06 -1.52151 -1.1212 -0.727616 2.92073 2.54912 -0.889408
7.83932e+06 -1.5337 -1.11215 -0.721967 2.90325 2.58653 -0.900674
7.83936e+06 -1.53932 -1.12637 -0.654186 2.84061 2.70177 -0.983639
7.83939e+06 -1.55031 -1.14131 -0.556649 2.69067 2.78037 -1.01807
7.83959e+06 -1.52152 -1.1212 -0.727603 2.92076 2.549 -0.889424
7.83962e+06 -1.53406 -1.11199 -0.721512 2.90262 2.58828 -0.90097
7.83966e+06 -1.53923 -1.12643 -0.654393 2.83951 2.70612 -0.98482
7.83969e+06 -1.54998 -1.1409 -0.559425 2.69106 2.78507 -1.01967
7.83989e+06 -1.52152 -1.1212 -0.727601 2.92076 2.54901 -0.889416
7.83992e+06 -1.53401 -1.11199 -0.721556 2.90272 2.58803 -0.900891
7.83996e+06 -1.53924 -1.12643 -0.654355 2.83969 2.70553 -0.984704
7.83999e+06 -1.55001 -1.14093 -0.559208 2.69133 2.78447 -1.01959
7.84019e+06 -1.52152 -1.1212 -0.727602 2.92077 2.549 -0.889425
7.84022e+06 -1.534 -1.11202 -0.721589 2.90278 2.58794 -0.900792
7.84026e+06 -1.53924 -1.12642 -0.65439 2.83976 2.70529 -0.984453
7.84029e+06 -1.55003 -1.14097 -0.558982 2.69093 2.78419 -1.01919
7.84049e+06 -1.52151 -1.1212 -0.727602 2.92078 2.54898 -0.889399
7.84052e+06 -1.53394 -1.11203 -0.721645 2.90276 2.58786 -0.900903
7.84056e+06 -1.53925 -1.12641 -0.654371 2.83976 2.70508 -0.984575
7.84059e+06 -1.55004 -1.14098 -0.558895 2.69111 2.78409 -1.01948
7.84079e+06 -1.52152 -1.1212 -0.7276 2.92079 2.54898 -0.889413
7.84082e+06 -1.53394 -1.11204 -0.72166 2.90285 2.58773 -0.900827
7.84086e+06 -1.53926 -1.12641 -0.654343 2.83984 2.70476 -0.984427
7.84089e+06 -1.55009 -1.14105 -0.558479 2.6908 2.78373 -1.01912
7.84109e+06 -1.52151 -1.1212 -0.727599 2.92075 2.549 -0.889441
7.84112e+06 -1.53388 -1.11206 -0.721713 2.90295 2.58739 -0.900807
7.84116e+06 -1.53927 -1.12641 -0.654323 2.84013 2.70396 -0.984238
7.84119e+06 -1.55012 -1.14107 -0.558326 2.69127 2.78276 -1.01892
7.84139e+06 -1.52152 -1.1212 -0.727598 2.92079 2.54894 -0.889396
7.84142e+06 -1.53389 -1.11207 -0.721729 2.903 2.58741 -0.900701
7.84146e+06 -1.53928 -1.12641 -0.65428 2.84006 2.704 -0.984116
7.84149e+06 -1.55016 -1.14113 -0.557987 2.69055 2.78296 -1.01862
7.84169e+06 -1.52151 -1.1212 -0.7276 2.9208 2.54897 -0.889374
7.84172e+06 -1.53382 -1.11208 -0.721792 2.90306 2.58711 -0.900729
7.84176e+06 -1.53927 -1.12639 -0.654363 2.84027 2.70333 -0.984052
7.84179e+06 -1.55016 -1.14113 -0.557954 2.69115 2.78229 -1.01892
7.84199e+06 -1.52152 -1.1212 -0.727599 2.9208 2.54891 -0.88939
7.84202e+06 -1.53384 -1.11209 -0.721797 2.90311 2.5871 -0.900633
7.84206e+06 -1.53929 -1.12639 -0.654254 2.84024 2.70323 -0.9839
7.84209e+06 -1.55022 -1.1412 -0.557442 2.69045 2.78202 -1.01845
7.84229e+06 -1.5215 -1.1212 -0.727615 2.92077 2.54912 -0.889335
7.84232e+06 -1.53376 -1.11211 -0.721867 2.90318 2.58677 -0.900664
7.84236e+06 -1.53929 -1.12638 -0.654303 2.84049 2.70247 -0.983812
7.84239e+06 -1.55023 -1.14121 -0.557387 2.69114 2.78119 -1.01846
7.84259e+06 -1.52152 -1.1212 -0.727616 2.92078 2.54908 -0.889343
7.84262e+06 -1.53377 -1.11212 -0.721884 2.90316 2.58689 -0.900599
7.84266e+06 -1.53932 -1.12639 -0.654211 2.84041 2.70266 -0.983721
7.84269e+06 -1.55027 -1.14127 -0.557004 2.69038 2.78141 -1.01819
7.84289e+06 -1.5215 -1.1212 -0.727615 2.92077 2.54912 -0.889369
7.84292e+06 -1.5337 -1.11213 -0.721942 2.90328 2.58664 -0.900643
7.84296e+06 -1.53932 -1.12638 -0.654236 2.84064 2.70216 -0.983711
7.84299e+06 -1.55029 -1.14128 -0.556934 2.69102 2.78102 -1.01836
7.84319e+06 -1.52151 -1.1212 -0.727614 2.92077 2.54908 -0.889351
7.84322e+06 -1.5337 -1.11215 -0.721956 2.90335 2.5864 -0.900518
7.84326e+06 -1.53933 -1.12638 -0.654171 2.84071 2.70153 -0.983462
7.84329e+06 -1.55034 -1.14133 -0.556515 2.69063 2.78009 -1.01793
7.84349e+06 -1.52157 -1.12121 -0.72761 2.92048 2.54903 -0.889378
7.84352e+06 -1.53409 -1.112 -0.721542 2.90234 2.58833 -0.900902
7.84356e+06 -1.53928 -1.12645 -0.654427 2.8392 2.70616 -0.984741
7.84359e+06 -1.55005 -1.14091 -0.559575 2.69085 2.78524 -1.01966
7.84379e+06 -1.52164 -1.12124 -0.727629 2.92035 2.5491 -0.889193
7.84382e+06 -1.53413 -1.11206 -0.721606 2.90234 2.58819 -0.900533
7.84386e+06 -1.53936 -1.12649 -0.654465 2.8392 2.70579 -0.984349
7.84389e+06 -1.55016 -1.14099 -0.559427 2.69037 2.78481 -1.01916
7.84409e+06 -1.52177 -1.12131 -0.727607 2.9204 2.54928 -0.888977
7.84412e+06 -1.53421 -1.11215 -0.721633 2.90268 2.58783 -0.899995
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

【python】6DOF analyse tool2 的相关文章

随机推荐

  • 介绍一下115sha1链接使用方法

    收到一个115 开头的网盘链接 xff0c 要如何下载呢 xff1f 单纯复制这个链接是没有办法直接下载的 xff0c 复制进去还会显示链接地址错误 xff0c 那么小编这里就给大家分享一下正确的使用方法 xff0c 希望可以帮到你 115
  • 夸克网盘的文件怎么保存到百度网盘?

    我们经常将自己的文件 视频等等都传到网盘上储存 xff0c 大大减少电脑和手机的占用 xff0c 其中百度网盘和夸克网盘是非常受欢迎的两款软件 xff0c 拥有超大的云储存空间 xff0c 用户想存什么就存什么 那夸克网盘的文件能存到百度网
  • Furmark如何进行正确的烤机?

    Furmark是一款非常不错的显卡性能以及稳定度测试软件 xff0c 通过这款软件可以快速测试出显卡的性能以及显卡是否稳定 xff0c 下面小编就来教教大家Furmark如何进行正确的烤机吧 1 打开Furmark xff0c 可以看到如图
  • WinRAR一直自动关闭怎么回事

    很多用户都习惯使用WinRAR来压缩解压文件 xff0c 但是有小伙伴跟小编反映自己的WinRAR老是一直闪退 xff0c 这是怎么回事 xff1f 下面就来看看WinRAR软件闪退的解决办法吧 Win10纯净版 Win10 64位纯净版
  • win11共享文件夹需要用户名和密码?

    在共享文件夹时提示需要用户名和密码 xff0c 这是怎么回事 xff1f 不少win11用户跟小编反映了这个问题 xff0c 我们要如何解决呢 xff1f 下面就来看看具体的win11共享文件夹需要用户名和密码的解决办法吧 win11共享文
  • win11桌面文件在哪个文件夹?

    很多win10系统用户应该都知道 xff0c 桌面文件默认存储在C xff1a Users Username Desktop文件夹中 xff0c 那升级win11之后 xff0c 桌面文件在哪个文件夹呢 xff1f 有没有改动呢 xff1f
  • win7时间总是不对怎么办?

    一般用户的主机中的主板会有一个电池 xff0c 这个电池可以给主板供电 xff0c 但是主板电池没电了的话就会将原本的时间设置清空 xff0c 因此这个时候时间就是不对的 xff0c 下面就是关于win7时间总是不对的解决方法 xff0c
  • Win10无法连接打印机怎么办?不能使用打印机的解决方法

    在我们平常的办公中 xff0c 经常会需要使用到打印机打印文件 想要使用打印机是需要先将电脑与打印机连接的 xff0c 但是有部分Win10用户遇到了无法连接打印机的情况 xff0c 对于这种情况应该如何解决呢 xff1f 下面来看看详细的
  • 【python】6DOF analyse tool

    1 result show 1 1 note 图1为3D位置 xff0c 图2 xff0c 3 xff0c 4分别表示yaw pitch xff0c roll角随着时间的变化的波动 2 code span class token comme
  • Spring入门预备知识(上)

    Spring入门主要使用了下面几个技术 xff1a 工厂模式 单例模式 动态代理模式 面向接口编程 xff0c 下面分几部分详细分析 一 xff09 工厂模式 1 定义 xff1a 定义一个用于创建对象的接口 xff0c 让子类决定实例化哪
  • 电脑丢失dll文件能一键修复吗,哪种修复方法靠谱?

    Dll文件的丢失其实是一件挺常见的事情的 xff0c 最近就有网友问小编 xff0c 关于dll文件丢失的相关问题 xff0c 他问电脑丢失dll文件能一键修复吗 xff1f 这里小编告诉你 xff0c 有方法一键修复 xff0c 但是需要
  • vcruntime140_1.dll无法继续执行代码,怎么解决这种问题?

    经常使用电脑的人 xff0c 可能对于这个弹出框应该不陌生 xff0c vcruntime140 1 dll无法继续执行代码 xff0c 其实会出现这种情况 xff0c 主要是因为缺少一个动态链接库 DLL 文件导致的 这个文件是 Visu
  • 这可能是最简单又有效的自监督学习方法了

    文 王珣 64 知乎 本文已获作者授权 xff0c 禁止二次转载 从Kaiming的MoCo和Hinton组Chen Ting的SimCLR开始 xff0c 自监督学习 xff08 SSL xff09 成了计算机视觉的热潮显学 凡是大佬大组
  • idea 2022.1 创建maven卡死解决

    1 关闭项目 2 新建maven项目 创建成功
  • FFmpeg 命令常见操作

    1 转码 ffmpeg i source mp4 ss 20 t 10 c copy my mp4 ffmpeg ss 10 t 15 accurate seek i test mp4 c a copy c v copy tt mp4 i
  • FFprobe查看&统计视频信息

    1 查看音视频信息 1 1 查看基本信息 ffprobe span class token number 1280 span x720 h264 8mbps 30fps span class token punctuation span m
  • Linux 查看文件夹大小,磁盘剩余空间(du/df)

    1 简介 du查看目录大小 xff0c df查看磁盘使用情况 2 du disk usage xff08 1 xff09 基本功能 递归查看文件夹下所有文件的大小 xff08 2 xff09 常用参数 xff1a h human reada
  • Python matplotlib高级绘图详解

    1 前言 前面我们介绍了使用matplotlib简单的绘图方法 xff08 见 xff1a Python应用matplotlib绘图简介 xff09 但是想要完全控制你的图形 xff0c 以及更高级的用法 xff0c 就需要使用 pyplo
  • ffmpeg视频精准剪切

    1 导言 ffmepg剪切视频 xff0c 很方便 xff0c 但是也有很大缺陷 xff1a xff08 1 xff09 剪切时间点不精确 xff08 2 xff09 有时剪切的视频开头有黑屏 造成这些问题的原因是ffmpeg无法seek到
  • 【python】6DOF analyse tool2

    result show 1 1 note 图1为3D X Y Z combination位置 xff0c 图4 xff0c 5 xff0c 6分别表示yaw pitch xff0c roll角随着时间的变化的波动 span class to