Files
ORB-SLAM3_Linux/Examples/Monocular/jupyter notebook/.ipynb_checkpoints/test_of_processing -checkpoint.ipynb
Ivan bbabd50d1e v1
2022-06-25 19:31:12 +03:00

174 lines
4.7 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{
"cells": [
{
"cell_type": "code",
"execution_count": 1,
"id": "e08ec366",
"metadata": {},
"outputs": [],
"source": [
"import numpy as np\n",
"import pandas as pd \n",
"from matplotlib import pyplot as plt"
]
},
{
"cell_type": "markdown",
"id": "6f17ee96",
"metadata": {},
"source": [
"# Импорт"
]
},
{
"cell_type": "code",
"execution_count": 2,
"id": "38906a0f",
"metadata": {},
"outputs": [],
"source": [
"table = pd.read_csv(\"../results/test_processing_camera1-2020-10-14---19-38-42---093390448_scaled.txt\", sep=\" \")"
]
},
{
"cell_type": "code",
"execution_count": 3,
"id": "229279d5",
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>0.0858222</th>\n",
" <th>0.011983-0.170964-0.00410493</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>0</th>\n",
" <td>0.086706</td>\n",
" <td>0.0114441-0.172755-0.00463303</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>0.088308</td>\n",
" <td>0.0108745-0.175963-0.00552038</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2</th>\n",
" <td>0.089497</td>\n",
" <td>0.00701769-0.178534-0.00543287</td>\n",
" </tr>\n",
" <tr>\n",
" <th>3</th>\n",
" <td>0.089954</td>\n",
" <td>0.00853847-0.179394-0.00493487</td>\n",
" </tr>\n",
" <tr>\n",
" <th>4</th>\n",
" <td>0.091440</td>\n",
" <td>0.00858735-0.182333-0.0056773</td>\n",
" </tr>\n",
" <tr>\n",
" <th>...</th>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>5965</th>\n",
" <td>0.171849</td>\n",
" <td>-0.194806-0.237777-0.149945</td>\n",
" </tr>\n",
" <tr>\n",
" <th>5966</th>\n",
" <td>0.172449</td>\n",
" <td>-0.195018-0.239285-0.149969</td>\n",
" </tr>\n",
" <tr>\n",
" <th>5967</th>\n",
" <td>0.172471</td>\n",
" <td>-0.196777-0.237949-0.149896</td>\n",
" </tr>\n",
" <tr>\n",
" <th>5968</th>\n",
" <td>0.173594</td>\n",
" <td>-0.198954-0.238975-0.150473</td>\n",
" </tr>\n",
" <tr>\n",
" <th>5969</th>\n",
" <td>0.171928</td>\n",
" <td>-0.195619-0.23765-0.149442</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"<p>5970 rows × 2 columns</p>\n",
"</div>"
],
"text/plain": [
" 0.0858222 0.011983-0.170964-0.00410493\n",
"0 0.086706 0.0114441-0.172755-0.00463303\n",
"1 0.088308 0.0108745-0.175963-0.00552038\n",
"2 0.089497 0.00701769-0.178534-0.00543287\n",
"3 0.089954 0.00853847-0.179394-0.00493487\n",
"4 0.091440 0.00858735-0.182333-0.0056773\n",
"... ... ...\n",
"5965 0.171849 -0.194806-0.237777-0.149945\n",
"5966 0.172449 -0.195018-0.239285-0.149969\n",
"5967 0.172471 -0.196777-0.237949-0.149896\n",
"5968 0.173594 -0.198954-0.238975-0.150473\n",
"5969 0.171928 -0.195619-0.23765-0.149442\n",
"\n",
"[5970 rows x 2 columns]"
]
},
"execution_count": 3,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"table"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3 (ipykernel)",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.8.10"
}
},
"nbformat": 4,
"nbformat_minor": 5
}