├── .gitignore ├── .vscode └── launch.json ├── README.md ├── data0.txt ├── data1.txt ├── lesson1 ├── 0.jpg ├── image_pca.py ├── output_image │ ├── range_hood_0001_normals.png │ ├── range_hood_0001_original.png │ ├── range_hood_0001_pca.png │ ├── range_hood_0001_sampled.png │ ├── sofa_0001_normals.png │ ├── sofa_0001_original.png │ ├── sofa_0001_pca.png │ └── sofa_0001_sampled.png ├── pca_normal.py ├── readme.txt ├── unsample_bilateral.py ├── voxel_filter.py └── voxel_grid_downsampling.py ├── lesson2 ├── .gitignore ├── 000000.bin ├── LICENSE ├── README.md ├── benchmark.py ├── kdtree.py ├── octree.py ├── picture │ ├── kdtree_and_octree_compare_run_time.png │ ├── kdtree_result.png │ └── octree_result.png └── result_set.py ├── lesson3_cluster ├── GMM.py ├── KMeans.py ├── Spectral.py ├── compare_cluster.py └── image │ ├── compare.png │ ├── gmm_scatter after gmm.PNG │ ├── gmm_scatter before gmm.PNG │ ├── gmm_scatter with center after kmeans.PNG │ ├── gmm_scatter with center before kmeans.PNG │ ├── kmeans_scatter cluster after kmeans.PNG │ ├── kmeans_scatter with center after kmeans.PNG │ ├── kmeans_scatter with center before kmeans.PNG │ ├── spectral_scatter after spectral.PNG │ ├── spectral_scatter before kmeans.PNG │ └── spectral_scatter before spectral.PNG ├── lesson4_remove_ground └── clustering.py ├── lesson5_deepLearning ├── code │ ├── dataset.py │ ├── dataset │ │ └── modelnet40_normal_resampled │ │ │ ├── modelnet40_shape_names.txt │ │ │ ├── modelnet40_test.txt │ │ │ └── modelnet40_train.txt │ ├── model.py │ ├── output │ │ └── runs │ │ │ └── tersorboard │ │ │ ├── events.out.tfevents.1618481152.zhangcheng.11700.0 │ │ │ ├── events.out.tfevents.1618481869.zhangcheng.7932.0 │ │ │ └── events.out.tfevents.1618485028.zhangcheng.15628.0 │ ├── test.py │ └── train.py ├── output │ ├── date_2021-04-15-epoch_11-maxacc_0.790.pth │ ├── date_2021-04-15-epoch_14-maxacc_0.793.pth │ ├── date_2021-04-15-epoch_2-maxacc_0.714.pth │ ├── date_2021-04-15-epoch_20-maxacc_0.807.pth │ ├── date_2021-04-15-epoch_23-maxacc_0.818.pth │ ├── date_2021-04-15-epoch_5-maxacc_0.730.pth │ ├── date_2021-04-15-epoch_8-maxacc_0.783.pth │ ├── latest.pth │ └── traced_model.pt └── readme.txt ├── lesson6_pointRCNN ├── PointRCNN.pth ├── kitti_eval │ ├── CMakeLists.txt │ ├── README.md │ ├── evaluate_object_3d.cpp │ ├── evaluate_object_3d_offline.cpp │ ├── mail.h │ └── pred │ │ ├── data │ │ ├── 000001.txt │ │ ├── 000002.txt │ │ ├── 000004.txt │ │ ├── 000005.txt │ │ ├── 000006.txt │ │ ├── 000008.txt │ │ ├── 000015.txt │ │ ├── 000019.txt │ │ ├── 000020.txt │ │ ├── 000021.txt │ │ ├── 000023.txt │ │ ├── 000024.txt │ │ ├── 000025.txt │ │ ├── 000027.txt │ │ ├── 000028.txt │ │ ├── 000031.txt │ │ ├── 000033.txt │ │ ├── 000035.txt │ │ ├── 000037.txt │ │ ├── 000039.txt │ │ ├── 000040.txt │ │ ├── 000042.txt │ │ ├── 000047.txt │ │ ├── 000048.txt │ │ ├── 000050.txt │ │ ├── 000052.txt │ │ ├── 000053.txt │ │ ├── 000058.txt │ │ ├── 000059.txt │ │ ├── 000061.txt │ │ ├── 000062.txt │ │ ├── 000063.txt │ │ ├── 000065.txt │ │ ├── 000066.txt │ │ ├── 000076.txt │ │ ├── 000077.txt │ │ ├── 000078.txt │ │ ├── 000081.txt │ │ ├── 000089.txt │ │ ├── 000090.txt │ │ ├── 000093.txt │ │ ├── 000094.txt │ │ ├── 000098.txt │ │ ├── 000102.txt │ │ ├── 000104.txt │ │ ├── 000106.txt │ │ ├── 000107.txt │ │ ├── 000108.txt │ │ ├── 000116.txt │ │ ├── 000117.txt │ │ ├── 000118.txt │ │ ├── 000122.txt │ │ ├── 000124.txt │ │ ├── 000126.txt │ │ ├── 000128.txt │ │ ├── 000132.txt │ │ ├── 000134.txt │ │ ├── 000135.txt │ │ ├── 000137.txt │ │ ├── 000139.txt │ │ ├── 000140.txt │ │ ├── 000143.txt │ │ ├── 000147.txt │ │ ├── 000151.txt │ │ ├── 000152.txt │ │ ├── 000153.txt │ │ ├── 000156.txt │ │ ├── 000159.txt │ │ ├── 000161.txt │ │ ├── 000167.txt │ │ ├── 000168.txt │ │ ├── 000169.txt │ │ ├── 000170.txt │ │ ├── 000173.txt │ │ ├── 000174.txt │ │ ├── 000175.txt │ │ ├── 000181.txt │ │ ├── 000182.txt │ │ ├── 000183.txt │ │ ├── 000186.txt │ │ ├── 000187.txt │ │ ├── 000188.txt │ │ ├── 000190.txt │ │ ├── 000191.txt │ │ ├── 000192.txt │ │ ├── 000194.txt │ │ ├── 000195.txt │ │ ├── 000196.txt │ │ ├── 000197.txt │ │ ├── 000199.txt │ │ ├── 000201.txt │ │ ├── 000203.txt │ │ ├── 000204.txt │ │ ├── 000207.txt │ │ ├── 000211.txt │ │ ├── 000212.txt │ │ ├── 000213.txt │ │ ├── 000216.txt │ │ ├── 000218.txt │ │ ├── 000223.txt │ │ ├── 000224.txt │ │ ├── 000226.txt │ │ ├── 000229.txt │ │ ├── 000230.txt │ │ ├── 000231.txt │ │ ├── 000234.txt │ │ ├── 000235.txt │ │ ├── 000236.txt │ │ ├── 000237.txt │ │ ├── 000239.txt │ │ ├── 000242.txt │ │ ├── 000246.txt │ │ ├── 000247.txt │ │ ├── 000248.txt │ │ ├── 000249.txt │ │ ├── 000250.txt │ │ ├── 000251.txt │ │ ├── 000252.txt │ │ ├── 000260.txt │ │ ├── 000262.txt │ │ ├── 000263.txt │ │ ├── 000265.txt │ │ ├── 000266.txt │ │ ├── 000268.txt │ │ ├── 000269.txt │ │ ├── 000270.txt │ │ ├── 000272.txt │ │ ├── 000273.txt │ │ ├── 000278.txt │ │ ├── 000279.txt │ │ ├── 000281.txt │ │ ├── 000283.txt │ │ ├── 000284.txt │ │ ├── 000289.txt │ │ ├── 000290.txt │ │ ├── 000291.txt │ │ ├── 000293.txt │ │ ├── 000297.txt │ │ ├── 000301.txt │ │ ├── 000302.txt │ │ ├── 000305.txt │ │ ├── 000307.txt │ │ ├── 000308.txt │ │ ├── 000309.txt │ │ ├── 000311.txt │ │ ├── 000312.txt │ │ ├── 000314.txt │ │ ├── 000315.txt │ │ ├── 000319.txt │ │ ├── 000320.txt │ │ ├── 000321.txt │ │ ├── 000323.txt │ │ ├── 000324.txt │ │ ├── 000327.txt │ │ ├── 000328.txt │ │ ├── 000329.txt │ │ ├── 000332.txt │ │ ├── 000333.txt │ │ ├── 000335.txt │ │ ├── 000336.txt │ │ ├── 000340.txt │ │ ├── 000341.txt │ │ ├── 000343.txt │ │ ├── 000345.txt │ │ ├── 000346.txt │ │ ├── 000347.txt │ │ ├── 000350.txt │ │ ├── 000351.txt │ │ ├── 000352.txt │ │ ├── 000354.txt │ │ ├── 000355.txt │ │ ├── 000356.txt │ │ ├── 000357.txt │ │ ├── 000359.txt │ │ ├── 000360.txt │ │ ├── 000361.txt │ │ ├── 000362.txt │ │ ├── 000365.txt │ │ ├── 000366.txt │ │ ├── 000369.txt │ │ ├── 000370.txt │ │ ├── 000372.txt │ │ ├── 000373.txt │ │ ├── 000376.txt │ │ ├── 000377.txt │ │ ├── 000378.txt │ │ ├── 000379.txt │ │ ├── 000381.txt │ │ ├── 000382.txt │ │ ├── 000383.txt │ │ ├── 000385.txt │ │ ├── 000386.txt │ │ ├── 000388.txt │ │ ├── 000391.txt │ │ ├── 000392.txt │ │ ├── 000393.txt │ │ ├── 000394.txt │ │ ├── 000395.txt │ │ ├── 000396.txt │ │ ├── 000397.txt │ │ ├── 000398.txt │ │ ├── 000399.txt │ │ ├── 000401.txt │ │ ├── 000402.txt │ │ ├── 000403.txt │ │ ├── 000404.txt │ │ ├── 000407.txt │ │ ├── 000408.txt │ │ ├── 000409.txt │ │ ├── 000413.txt │ │ ├── 000414.txt │ │ ├── 000415.txt │ │ ├── 000419.txt │ │ ├── 000420.txt │ │ ├── 000422.txt │ │ ├── 000427.txt │ │ ├── 000428.txt │ │ ├── 000429.txt │ │ ├── 000430.txt │ │ ├── 000436.txt │ │ ├── 000437.txt │ │ ├── 000440.txt │ │ ├── 000443.txt │ │ ├── 000446.txt │ │ ├── 000448.txt │ │ ├── 000450.txt │ │ ├── 000451.txt │ │ ├── 000452.txt │ │ ├── 000453.txt │ │ ├── 000454.txt │ │ ├── 000455.txt │ │ ├── 000457.txt │ │ ├── 000459.txt │ │ ├── 000463.txt │ │ ├── 000468.txt │ │ ├── 000469.txt │ │ ├── 000472.txt │ │ ├── 000473.txt │ │ ├── 000475.txt │ │ ├── 000476.txt │ │ ├── 000477.txt │ │ ├── 000478.txt │ │ ├── 000479.txt │ │ ├── 000480.txt │ │ ├── 000481.txt │ │ ├── 000485.txt │ │ ├── 000486.txt │ │ ├── 000489.txt │ │ ├── 000491.txt │ │ ├── 000492.txt │ │ ├── 000493.txt │ │ ├── 000494.txt │ │ ├── 000495.txt │ │ ├── 000496.txt │ │ ├── 000498.txt │ │ ├── 000499.txt │ │ ├── 000503.txt │ │ ├── 000504.txt │ │ ├── 000506.txt │ │ ├── 000508.txt │ │ ├── 000509.txt │ │ ├── 000510.txt │ │ ├── 000512.txt │ │ ├── 000515.txt │ │ ├── 000517.txt │ │ ├── 000519.txt │ │ ├── 000521.txt │ │ ├── 000524.txt │ │ ├── 000527.txt │ │ ├── 000528.txt │ │ ├── 000530.txt │ │ ├── 000533.txt │ │ ├── 000536.txt │ │ ├── 000541.txt │ │ ├── 000542.txt │ │ ├── 000543.txt │ │ ├── 000545.txt │ │ ├── 000546.txt │ │ ├── 000548.txt │ │ ├── 000551.txt │ │ ├── 000554.txt │ │ ├── 000555.txt │ │ ├── 000558.txt │ │ ├── 000559.txt │ │ ├── 000560.txt │ │ ├── 000561.txt │ │ ├── 000564.txt │ │ ├── 000566.txt │ │ ├── 000567.txt │ │ ├── 000568.txt │ │ ├── 000569.txt │ │ ├── 000571.txt │ │ ├── 000572.txt │ │ ├── 000581.txt │ │ ├── 000583.txt │ │ ├── 000588.txt │ │ ├── 000589.txt │ │ ├── 000590.txt │ │ ├── 000591.txt │ │ ├── 000595.txt │ │ ├── 000600.txt │ │ ├── 000601.txt │ │ ├── 000604.txt │ │ ├── 000610.txt │ │ ├── 000611.txt │ │ ├── 000612.txt │ │ ├── 000613.txt │ │ ├── 000614.txt │ │ ├── 000615.txt │ │ ├── 000618.txt │ │ ├── 000619.txt │ │ ├── 000620.txt │ │ ├── 000624.txt │ │ ├── 000625.txt │ │ ├── 000626.txt │ │ ├── 000628.txt │ │ ├── 000630.txt │ │ ├── 000634.txt │ │ ├── 000635.txt │ │ ├── 000636.txt │ │ ├── 000639.txt │ │ ├── 000642.txt │ │ ├── 000644.txt │ │ ├── 000645.txt │ │ ├── 000647.txt │ │ ├── 000648.txt │ │ ├── 000650.txt │ │ ├── 000655.txt │ │ ├── 000657.txt │ │ ├── 000658.txt │ │ ├── 000659.txt │ │ ├── 000660.txt │ │ ├── 000667.txt │ │ ├── 000669.txt │ │ ├── 000670.txt │ │ ├── 000674.txt │ │ ├── 000677.txt │ │ ├── 000679.txt │ │ ├── 000682.txt │ │ ├── 000683.txt │ │ ├── 000684.txt │ │ ├── 000691.txt │ │ ├── 000692.txt │ │ ├── 000694.txt │ │ ├── 000696.txt │ │ ├── 000698.txt │ │ ├── 000699.txt │ │ ├── 000700.txt │ │ ├── 000702.txt │ │ ├── 000704.txt │ │ ├── 000706.txt │ │ ├── 000708.txt │ │ ├── 000716.txt │ │ ├── 000717.txt │ │ ├── 000718.txt │ │ ├── 000721.txt │ │ ├── 000722.txt │ │ ├── 000725.txt │ │ ├── 000727.txt │ │ ├── 000728.txt │ │ ├── 000729.txt │ │ ├── 000731.txt │ │ ├── 000734.txt │ │ ├── 000736.txt │ │ ├── 000737.txt │ │ ├── 000740.txt │ │ ├── 000741.txt │ │ ├── 000745.txt │ │ ├── 000746.txt │ │ ├── 000748.txt │ │ ├── 000750.txt │ │ ├── 000751.txt │ │ ├── 000752.txt │ │ ├── 000754.txt │ │ ├── 000756.txt │ │ ├── 000761.txt │ │ ├── 000765.txt │ │ ├── 000766.txt │ │ ├── 000767.txt │ │ ├── 000768.txt │ │ ├── 000769.txt │ │ ├── 000771.txt │ │ ├── 000772.txt │ │ ├── 000773.txt │ │ ├── 000774.txt │ │ ├── 000778.txt │ │ ├── 000779.txt │ │ ├── 000782.txt │ │ ├── 000790.txt │ │ ├── 000792.txt │ │ ├── 000795.txt │ │ ├── 000798.txt │ │ ├── 000800.txt │ │ ├── 000801.txt │ │ ├── 000802.txt │ │ ├── 000803.txt │ │ ├── 000804.txt │ │ ├── 000805.txt │ │ ├── 000806.txt │ │ ├── 000807.txt │ │ ├── 000809.txt │ │ ├── 000810.txt │ │ ├── 000811.txt │ │ ├── 000812.txt │ │ ├── 000816.txt │ │ ├── 000819.txt │ │ ├── 000823.txt │ │ ├── 000826.txt │ │ ├── 000831.txt │ │ ├── 000837.txt │ │ ├── 000838.txt │ │ ├── 000840.txt │ │ ├── 000841.txt │ │ ├── 000843.txt │ │ ├── 000844.txt │ │ ├── 000847.txt │ │ ├── 000848.txt │ │ ├── 000849.txt │ │ ├── 000850.txt │ │ ├── 000852.txt │ │ ├── 000854.txt │ │ ├── 000859.txt │ │ ├── 000862.txt │ │ ├── 000863.txt │ │ ├── 000869.txt │ │ ├── 000873.txt │ │ ├── 000874.txt │ │ ├── 000875.txt │ │ ├── 000876.txt │ │ ├── 000877.txt │ │ ├── 000878.txt │ │ ├── 000879.txt │ │ ├── 000881.txt │ │ ├── 000884.txt │ │ ├── 000885.txt │ │ ├── 000889.txt │ │ ├── 000893.txt │ │ ├── 000894.txt │ │ ├── 000897.txt │ │ ├── 000899.txt │ │ ├── 000904.txt │ │ ├── 000907.txt │ │ ├── 000909.txt │ │ ├── 000911.txt │ │ ├── 000912.txt │ │ ├── 000915.txt │ │ ├── 000916.txt │ │ ├── 000917.txt │ │ ├── 000920.txt │ │ ├── 000922.txt │ │ ├── 000923.txt │ │ ├── 000926.txt │ │ ├── 000928.txt │ │ ├── 000930.txt │ │ ├── 000931.txt │ │ ├── 000932.txt │ │ ├── 000938.txt │ │ ├── 000939.txt │ │ ├── 000940.txt │ │ ├── 000942.txt │ │ ├── 000943.txt │ │ ├── 000944.txt │ │ ├── 000948.txt │ │ ├── 000949.txt │ │ ├── 000952.txt │ │ ├── 000953.txt │ │ ├── 000956.txt │ │ ├── 000958.txt │ │ ├── 000961.txt │ │ ├── 000963.txt │ │ ├── 000964.txt │ │ ├── 000966.txt │ │ ├── 000967.txt │ │ ├── 000969.txt │ │ ├── 000970.txt │ │ ├── 000971.txt │ │ ├── 000973.txt │ │ ├── 000974.txt │ │ ├── 000976.txt │ │ ├── 000979.txt │ │ ├── 000981.txt │ │ ├── 000983.txt │ │ ├── 000984.txt │ │ ├── 000985.txt │ │ ├── 000986.txt │ │ ├── 000988.txt │ │ ├── 000991.txt │ │ ├── 000999.txt │ │ ├── 001002.txt │ │ ├── 001006.txt │ │ ├── 001007.txt │ │ ├── 001008.txt │ │ ├── 001010.txt │ │ ├── 001011.txt │ │ ├── 001012.txt │ │ ├── 001013.txt │ │ ├── 001014.txt │ │ ├── 001015.txt │ │ ├── 001018.txt │ │ ├── 001019.txt │ │ ├── 001021.txt │ │ ├── 001022.txt │ │ ├── 001025.txt │ │ ├── 001026.txt │ │ ├── 001027.txt │ │ ├── 001035.txt │ │ ├── 001037.txt │ │ ├── 001039.txt │ │ ├── 001042.txt │ │ ├── 001043.txt │ │ ├── 001046.txt │ │ ├── 001050.txt │ │ ├── 001051.txt │ │ ├── 001053.txt │ │ ├── 001054.txt │ │ ├── 001055.txt │ │ ├── 001058.txt │ │ ├── 001063.txt │ │ ├── 001065.txt │ │ ├── 001066.txt │ │ ├── 001067.txt │ │ ├── 001068.txt │ │ ├── 001069.txt │ │ ├── 001070.txt │ │ ├── 001071.txt │ │ ├── 001075.txt │ │ ├── 001076.txt │ │ ├── 001077.txt │ │ ├── 001078.txt │ │ ├── 001083.txt │ │ ├── 001084.txt │ │ ├── 001086.txt │ │ ├── 001088.txt │ │ ├── 001089.txt │ │ ├── 001094.txt │ │ ├── 001095.txt │ │ ├── 001096.txt │ │ ├── 001097.txt │ │ ├── 001099.txt │ │ ├── 001101.txt │ │ ├── 001102.txt │ │ ├── 001104.txt │ │ ├── 001106.txt │ │ ├── 001107.txt │ │ ├── 001108.txt │ │ ├── 001111.txt │ │ ├── 001113.txt │ │ ├── 001114.txt │ │ ├── 001115.txt │ │ ├── 001116.txt │ │ ├── 001118.txt │ │ ├── 001120.txt │ │ ├── 001123.txt │ │ ├── 001125.txt │ │ ├── 001127.txt │ │ ├── 001129.txt │ │ ├── 001131.txt │ │ ├── 001132.txt │ │ ├── 001133.txt │ │ ├── 001134.txt │ │ ├── 001135.txt │ │ ├── 001136.txt │ │ ├── 001138.txt │ │ ├── 001139.txt │ │ ├── 001140.txt │ │ ├── 001141.txt │ │ ├── 001143.txt │ │ ├── 001144.txt │ │ ├── 001145.txt │ │ ├── 001147.txt │ │ ├── 001148.txt │ │ ├── 001149.txt │ │ ├── 001150.txt │ │ ├── 001152.txt │ │ ├── 001153.txt │ │ ├── 001154.txt │ │ ├── 001155.txt │ │ ├── 001158.txt │ │ ├── 001162.txt │ │ ├── 001163.txt │ │ ├── 001167.txt │ │ ├── 001172.txt │ │ ├── 001173.txt │ │ ├── 001176.txt │ │ ├── 001177.txt │ │ ├── 001178.txt │ │ ├── 001179.txt │ │ ├── 001180.txt │ │ ├── 001182.txt │ │ ├── 001183.txt │ │ ├── 001187.txt │ │ ├── 001188.txt │ │ ├── 001189.txt │ │ ├── 001191.txt │ │ ├── 001192.txt │ │ ├── 001193.txt │ │ ├── 001194.txt │ │ ├── 001195.txt │ │ ├── 001198.txt │ │ ├── 001199.txt │ │ ├── 001203.txt │ │ ├── 001206.txt │ │ ├── 001207.txt │ │ ├── 001213.txt │ │ ├── 001214.txt │ │ ├── 001216.txt │ │ ├── 001217.txt │ │ ├── 001218.txt │ │ ├── 001221.txt │ │ ├── 001222.txt │ │ ├── 001224.txt │ │ ├── 001225.txt │ │ ├── 001226.txt │ │ ├── 001228.txt │ │ ├── 001230.txt │ │ ├── 001232.txt │ │ ├── 001234.txt │ │ ├── 001235.txt │ │ ├── 001236.txt │ │ ├── 001237.txt │ │ ├── 001239.txt │ │ ├── 001241.txt │ │ ├── 001242.txt │ │ ├── 001243.txt │ │ ├── 001244.txt │ │ ├── 001245.txt │ │ ├── 001246.txt │ │ ├── 001249.txt │ │ ├── 001251.txt │ │ ├── 001252.txt │ │ ├── 001253.txt │ │ ├── 001254.txt │ │ ├── 001255.txt │ │ ├── 001257.txt │ │ ├── 001259.txt │ │ ├── 001260.txt │ │ ├── 001261.txt │ │ ├── 001263.txt │ │ ├── 001265.txt │ │ ├── 001266.txt │ │ ├── 001267.txt │ │ ├── 001268.txt │ │ ├── 001269.txt │ │ ├── 001270.txt │ │ ├── 001271.txt │ │ ├── 001272.txt │ │ ├── 001273.txt │ │ ├── 001274.txt │ │ ├── 001275.txt │ │ ├── 001281.txt │ │ ├── 001284.txt │ │ ├── 001286.txt │ │ ├── 001287.txt │ │ ├── 001289.txt │ │ ├── 001291.txt │ │ ├── 001292.txt │ │ ├── 001294.txt │ │ ├── 001295.txt │ │ ├── 001296.txt │ │ ├── 001303.txt │ │ ├── 001304.txt │ │ ├── 001305.txt │ │ ├── 001306.txt │ │ ├── 001307.txt │ │ ├── 001308.txt │ │ ├── 001314.txt │ │ ├── 001317.txt │ │ ├── 001318.txt │ │ ├── 001329.txt │ │ ├── 001330.txt │ │ ├── 001331.txt │ │ ├── 001332.txt │ │ ├── 001333.txt │ │ ├── 001334.txt │ │ ├── 001336.txt │ │ ├── 001337.txt │ │ ├── 001339.txt │ │ ├── 001342.txt │ │ ├── 001344.txt │ │ ├── 001345.txt │ │ ├── 001346.txt │ │ ├── 001347.txt │ │ ├── 001350.txt │ │ ├── 001352.txt │ │ ├── 001353.txt │ │ ├── 001355.txt │ │ ├── 001356.txt │ │ ├── 001359.txt │ │ ├── 001363.txt │ │ ├── 001365.txt │ │ ├── 001372.txt │ │ ├── 001374.txt │ │ ├── 001375.txt │ │ ├── 001376.txt │ │ ├── 001377.txt │ │ ├── 001380.txt │ │ ├── 001381.txt │ │ ├── 001382.txt │ │ ├── 001384.txt │ │ ├── 001386.txt │ │ ├── 001387.txt │ │ ├── 001388.txt │ │ ├── 001389.txt │ │ ├── 001391.txt │ │ ├── 001395.txt │ │ ├── 001397.txt │ │ ├── 001398.txt │ │ ├── 001407.txt │ │ ├── 001410.txt │ │ ├── 001411.txt │ │ ├── 001412.txt │ │ ├── 001415.txt │ │ ├── 001416.txt │ │ ├── 001419.txt │ │ ├── 001421.txt │ │ ├── 001424.txt │ │ ├── 001427.txt │ │ ├── 001431.txt │ │ ├── 001432.txt │ │ ├── 001435.txt │ │ ├── 001437.txt │ │ ├── 001438.txt │ │ ├── 001439.txt │ │ ├── 001441.txt │ │ ├── 001442.txt │ │ ├── 001443.txt │ │ ├── 001445.txt │ │ ├── 001446.txt │ │ ├── 001448.txt │ │ ├── 001450.txt │ │ ├── 001451.txt │ │ ├── 001458.txt │ │ ├── 001461.txt │ │ ├── 001463.txt │ │ ├── 001466.txt │ │ ├── 001469.txt │ │ ├── 001471.txt │ │ ├── 001477.txt │ │ ├── 001478.txt │ │ ├── 001480.txt │ │ ├── 001481.txt │ │ ├── 001485.txt │ │ ├── 001487.txt │ │ ├── 001488.txt │ │ ├── 001489.txt │ │ ├── 001495.txt │ │ ├── 001497.txt │ │ ├── 001501.txt │ │ ├── 001502.txt │ │ ├── 001507.txt │ │ ├── 001508.txt │ │ ├── 001511.txt │ │ ├── 001513.txt │ │ ├── 001514.txt │ │ ├── 001516.txt │ │ ├── 001517.txt │ │ ├── 001521.txt │ │ ├── 001522.txt │ │ ├── 001524.txt │ │ ├── 001525.txt │ │ ├── 001526.txt │ │ ├── 001527.txt │ │ ├── 001528.txt │ │ ├── 001533.txt │ │ ├── 001535.txt │ │ ├── 001536.txt │ │ ├── 001537.txt │ │ ├── 001538.txt │ │ ├── 001542.txt │ │ ├── 001545.txt │ │ ├── 001546.txt │ │ ├── 001547.txt │ │ ├── 001549.txt │ │ ├── 001552.txt │ │ ├── 001555.txt │ │ ├── 001557.txt │ │ ├── 001560.txt │ │ ├── 001562.txt │ │ ├── 001564.txt │ │ ├── 001565.txt │ │ ├── 001567.txt │ │ ├── 001569.txt │ │ ├── 001573.txt │ │ ├── 001574.txt │ │ ├── 001576.txt │ │ ├── 001577.txt │ │ ├── 001579.txt │ │ ├── 001582.txt │ │ ├── 001583.txt │ │ ├── 001585.txt │ │ ├── 001586.txt │ │ ├── 001587.txt │ │ ├── 001588.txt │ │ ├── 001589.txt │ │ ├── 001590.txt │ │ ├── 001591.txt │ │ ├── 001592.txt │ │ ├── 001594.txt │ │ ├── 001596.txt │ │ ├── 001597.txt │ │ ├── 001600.txt │ │ ├── 001602.txt │ │ ├── 001603.txt │ │ ├── 001605.txt │ │ ├── 001606.txt │ │ ├── 001610.txt │ │ ├── 001613.txt │ │ ├── 001615.txt │ │ ├── 001616.txt │ │ ├── 001617.txt │ │ ├── 001619.txt │ │ ├── 001621.txt │ │ ├── 001625.txt │ │ ├── 001627.txt │ │ ├── 001629.txt │ │ ├── 001631.txt │ │ ├── 001633.txt │ │ ├── 001634.txt │ │ ├── 001635.txt │ │ ├── 001640.txt │ │ ├── 001643.txt │ │ ├── 001645.txt │ │ ├── 001647.txt │ │ ├── 001650.txt │ │ ├── 001654.txt │ │ ├── 001656.txt │ │ ├── 001658.txt │ │ ├── 001660.txt │ │ ├── 001662.txt │ │ ├── 001664.txt │ │ ├── 001665.txt │ │ ├── 001666.txt │ │ ├── 001667.txt │ │ ├── 001670.txt │ │ ├── 001675.txt │ │ ├── 001680.txt │ │ ├── 001682.txt │ │ ├── 001683.txt │ │ ├── 001684.txt │ │ ├── 001689.txt │ │ ├── 001693.txt │ │ ├── 001694.txt │ │ ├── 001697.txt │ │ ├── 001699.txt │ │ ├── 001701.txt │ │ ├── 001702.txt │ │ ├── 001704.txt │ │ ├── 001705.txt │ │ ├── 001706.txt │ │ ├── 001707.txt │ │ ├── 001709.txt │ │ ├── 001710.txt │ │ ├── 001711.txt │ │ ├── 001712.txt │ │ ├── 001713.txt │ │ ├── 001714.txt │ │ ├── 001717.txt │ │ ├── 001718.txt │ │ ├── 001719.txt │ │ ├── 001721.txt │ │ ├── 001722.txt │ │ ├── 001726.txt │ │ ├── 001727.txt │ │ ├── 001729.txt │ │ ├── 001732.txt │ │ ├── 001733.txt │ │ ├── 001740.txt │ │ ├── 001741.txt │ │ ├── 001742.txt │ │ ├── 001745.txt │ │ ├── 001746.txt │ │ ├── 001749.txt │ │ ├── 001750.txt │ │ ├── 001751.txt │ │ ├── 001752.txt │ │ ├── 001755.txt │ │ ├── 001758.txt │ │ ├── 001762.txt │ │ ├── 001764.txt │ │ ├── 001765.txt │ │ ├── 001768.txt │ │ ├── 001771.txt │ │ ├── 001772.txt │ │ ├── 001774.txt │ │ ├── 001776.txt │ │ ├── 001778.txt │ │ ├── 001780.txt │ │ ├── 001781.txt │ │ ├── 001782.txt │ │ ├── 001783.txt │ │ ├── 001786.txt │ │ ├── 001787.txt │ │ ├── 001794.txt │ │ ├── 001795.txt │ │ ├── 001797.txt │ │ ├── 001800.txt │ │ ├── 001801.txt │ │ ├── 001802.txt │ │ ├── 001804.txt │ │ ├── 001807.txt │ │ ├── 001808.txt │ │ ├── 001813.txt │ │ ├── 001814.txt │ │ ├── 001817.txt │ │ ├── 001818.txt │ │ ├── 001820.txt │ │ ├── 001822.txt │ │ ├── 001823.txt │ │ ├── 001824.txt │ │ ├── 001825.txt │ │ ├── 001828.txt │ │ ├── 001831.txt │ │ ├── 001835.txt │ │ ├── 001840.txt │ │ ├── 001844.txt │ │ ├── 001846.txt │ │ ├── 001848.txt │ │ ├── 001851.txt │ │ ├── 001852.txt │ │ ├── 001853.txt │ │ ├── 001854.txt │ │ ├── 001855.txt │ │ ├── 001856.txt │ │ ├── 001858.txt │ │ ├── 001859.txt │ │ ├── 001861.txt │ │ ├── 001862.txt │ │ ├── 001863.txt │ │ ├── 001867.txt │ │ ├── 001868.txt │ │ ├── 001869.txt │ │ ├── 001872.txt │ │ ├── 001875.txt │ │ ├── 001877.txt │ │ ├── 001878.txt │ │ ├── 001880.txt │ │ ├── 001881.txt │ │ ├── 001884.txt │ │ ├── 001885.txt │ │ ├── 001886.txt │ │ ├── 001887.txt │ │ ├── 001888.txt │ │ ├── 001890.txt │ │ ├── 001892.txt │ │ ├── 001893.txt │ │ ├── 001897.txt │ │ ├── 001898.txt │ │ ├── 001900.txt │ │ ├── 001904.txt │ │ ├── 001905.txt │ │ ├── 001909.txt │ │ ├── 001919.txt │ │ ├── 001920.txt │ │ ├── 001923.txt │ │ ├── 001924.txt │ │ ├── 001925.txt │ │ ├── 001926.txt │ │ ├── 001927.txt │ │ ├── 001928.txt │ │ ├── 001929.txt │ │ ├── 001931.txt │ │ ├── 001932.txt │ │ ├── 001933.txt │ │ ├── 001934.txt │ │ ├── 001936.txt │ │ ├── 001937.txt │ │ ├── 001940.txt │ │ ├── 001941.txt │ │ ├── 001942.txt │ │ ├── 001943.txt │ │ ├── 001945.txt │ │ ├── 001946.txt │ │ ├── 001952.txt │ │ ├── 001954.txt │ │ ├── 001959.txt │ │ ├── 001960.txt │ │ ├── 001966.txt │ │ ├── 001967.txt │ │ ├── 001969.txt │ │ ├── 001972.txt │ │ ├── 001977.txt │ │ ├── 001978.txt │ │ ├── 001979.txt │ │ ├── 001980.txt │ │ ├── 001982.txt │ │ ├── 001983.txt │ │ ├── 001984.txt │ │ ├── 001985.txt │ │ ├── 001986.txt │ │ ├── 001989.txt │ │ ├── 001991.txt │ │ ├── 001995.txt │ │ ├── 001996.txt │ │ ├── 001997.txt │ │ ├── 001999.txt │ │ ├── 002000.txt │ │ ├── 002001.txt │ │ ├── 002002.txt │ │ ├── 002004.txt │ │ ├── 002008.txt │ │ ├── 002010.txt │ │ ├── 002011.txt │ │ ├── 002012.txt │ │ ├── 002013.txt │ │ ├── 002014.txt │ │ ├── 002017.txt │ │ ├── 002019.txt │ │ ├── 002021.txt │ │ ├── 002022.txt │ │ ├── 002025.txt │ │ ├── 002027.txt │ │ ├── 002028.txt │ │ ├── 002029.txt │ │ ├── 002034.txt │ │ ├── 002035.txt │ │ ├── 002036.txt │ │ ├── 002037.txt │ │ ├── 002038.txt │ │ ├── 002042.txt │ │ ├── 002043.txt │ │ ├── 002044.txt │ │ ├── 002045.txt │ │ ├── 002046.txt │ │ ├── 002048.txt │ │ ├── 002049.txt │ │ ├── 002050.txt │ │ ├── 002052.txt │ │ ├── 002054.txt │ │ ├── 002056.txt │ │ ├── 002057.txt │ │ ├── 002058.txt │ │ ├── 002062.txt │ │ ├── 002068.txt │ │ ├── 002071.txt │ │ ├── 002073.txt │ │ ├── 002074.txt │ │ ├── 002075.txt │ │ ├── 002076.txt │ │ ├── 002078.txt │ │ ├── 002079.txt │ │ ├── 002081.txt │ │ ├── 002082.txt │ │ ├── 002085.txt │ │ ├── 002086.txt │ │ ├── 002087.txt │ │ ├── 002089.txt │ │ ├── 002091.txt │ │ ├── 002093.txt │ │ ├── 002094.txt │ │ ├── 002100.txt │ │ ├── 002101.txt │ │ ├── 002102.txt │ │ ├── 002103.txt │ │ ├── 002107.txt │ │ ├── 002108.txt │ │ ├── 002111.txt │ │ ├── 002112.txt │ │ ├── 002113.txt │ │ ├── 002115.txt │ │ ├── 002118.txt │ │ ├── 002120.txt │ │ ├── 002121.txt │ │ ├── 002123.txt │ │ ├── 002124.txt │ │ ├── 002127.txt │ │ ├── 002128.txt │ │ ├── 002130.txt │ │ ├── 002131.txt │ │ ├── 002135.txt │ │ ├── 002136.txt │ │ ├── 002137.txt │ │ ├── 002138.txt │ │ ├── 002139.txt │ │ ├── 002140.txt │ │ ├── 002142.txt │ │ ├── 002151.txt │ │ ├── 002152.txt │ │ ├── 002153.txt │ │ ├── 002158.txt │ │ ├── 002159.txt │ │ ├── 002160.txt │ │ ├── 002161.txt │ │ ├── 002163.txt │ │ ├── 002165.txt │ │ ├── 002166.txt │ │ ├── 002168.txt │ │ ├── 002169.txt │ │ ├── 002170.txt │ │ ├── 002173.txt │ │ ├── 002177.txt │ │ ├── 002179.txt │ │ ├── 002182.txt │ │ ├── 002183.txt │ │ ├── 002185.txt │ │ ├── 002187.txt │ │ ├── 002188.txt │ │ ├── 002193.txt │ │ ├── 002196.txt │ │ ├── 002200.txt │ │ ├── 002201.txt │ │ ├── 002202.txt │ │ ├── 002206.txt │ │ ├── 002207.txt │ │ ├── 002209.txt │ │ ├── 002215.txt │ │ ├── 002216.txt │ │ ├── 002218.txt │ │ ├── 002219.txt │ │ ├── 002220.txt │ │ ├── 002224.txt │ │ ├── 002225.txt │ │ ├── 002228.txt │ │ ├── 002229.txt │ │ ├── 002232.txt │ │ ├── 002233.txt │ │ ├── 002234.txt │ │ ├── 002239.txt │ │ ├── 002243.txt │ │ ├── 002245.txt │ │ ├── 002246.txt │ │ ├── 002248.txt │ │ ├── 002250.txt │ │ ├── 002251.txt │ │ ├── 002254.txt │ │ ├── 002255.txt │ │ ├── 002257.txt │ │ ├── 002258.txt │ │ ├── 002260.txt │ │ ├── 002262.txt │ │ ├── 002266.txt │ │ ├── 002272.txt │ │ ├── 002276.txt │ │ ├── 002277.txt │ │ ├── 002279.txt │ │ ├── 002280.txt │ │ ├── 002282.txt │ │ ├── 002283.txt │ │ ├── 002284.txt │ │ ├── 002286.txt │ │ ├── 002287.txt │ │ ├── 002290.txt │ │ ├── 002291.txt │ │ ├── 002292.txt │ │ ├── 002293.txt │ │ ├── 002294.txt │ │ ├── 002295.txt │ │ ├── 002298.txt │ │ ├── 002299.txt │ │ ├── 002300.txt │ │ ├── 002303.txt │ │ ├── 002304.txt │ │ ├── 002306.txt │ │ ├── 002307.txt │ │ ├── 002308.txt │ │ ├── 002310.txt │ │ ├── 002314.txt │ │ ├── 002315.txt │ │ ├── 002319.txt │ │ ├── 002320.txt │ │ ├── 002325.txt │ │ ├── 002327.txt │ │ ├── 002329.txt │ │ ├── 002330.txt │ │ ├── 002332.txt │ │ ├── 002334.txt │ │ ├── 002336.txt │ │ ├── 002337.txt │ │ ├── 002338.txt │ │ ├── 002340.txt │ │ ├── 002341.txt │ │ ├── 002344.txt │ │ ├── 002345.txt │ │ ├── 002346.txt │ │ ├── 002347.txt │ │ ├── 002348.txt │ │ ├── 002353.txt │ │ ├── 002356.txt │ │ ├── 002357.txt │ │ ├── 002359.txt │ │ ├── 002362.txt │ │ ├── 002365.txt │ │ ├── 002366.txt │ │ ├── 002367.txt │ │ ├── 002369.txt │ │ ├── 002370.txt │ │ ├── 002372.txt │ │ ├── 002376.txt │ │ ├── 002378.txt │ │ ├── 002380.txt │ │ ├── 002382.txt │ │ ├── 002383.txt │ │ ├── 002384.txt │ │ ├── 002385.txt │ │ ├── 002386.txt │ │ ├── 002387.txt │ │ ├── 002391.txt │ │ ├── 002392.txt │ │ ├── 002393.txt │ │ ├── 002397.txt │ │ ├── 002398.txt │ │ ├── 002399.txt │ │ ├── 002404.txt │ │ ├── 002405.txt │ │ ├── 002411.txt │ │ ├── 002414.txt │ │ ├── 002415.txt │ │ ├── 002418.txt │ │ ├── 002419.txt │ │ ├── 002420.txt │ │ ├── 002422.txt │ │ ├── 002423.txt │ │ ├── 002424.txt │ │ ├── 002425.txt │ │ ├── 002428.txt │ │ ├── 002429.txt │ │ ├── 002432.txt │ │ ├── 002433.txt │ │ ├── 002434.txt │ │ ├── 002439.txt │ │ ├── 002440.txt │ │ ├── 002442.txt │ │ ├── 002446.txt │ │ ├── 002450.txt │ │ ├── 002454.txt │ │ ├── 002455.txt │ │ ├── 002457.txt │ │ ├── 002458.txt │ │ ├── 002460.txt │ │ ├── 002461.txt │ │ ├── 002462.txt │ │ ├── 002463.txt │ │ ├── 002473.txt │ │ ├── 002474.txt │ │ ├── 002476.txt │ │ ├── 002477.txt │ │ ├── 002478.txt │ │ ├── 002479.txt │ │ ├── 002483.txt │ │ ├── 002486.txt │ │ ├── 002488.txt │ │ ├── 002490.txt │ │ ├── 002492.txt │ │ ├── 002495.txt │ │ ├── 002497.txt │ │ ├── 002499.txt │ │ ├── 002500.txt │ │ ├── 002502.txt │ │ ├── 002503.txt │ │ ├── 002504.txt │ │ ├── 002505.txt │ │ ├── 002506.txt │ │ ├── 002509.txt │ │ ├── 002511.txt │ │ ├── 002516.txt │ │ ├── 002519.txt │ │ ├── 002520.txt │ │ ├── 002521.txt │ │ ├── 002525.txt │ │ ├── 002526.txt │ │ ├── 002528.txt │ │ ├── 002529.txt │ │ ├── 002530.txt │ │ ├── 002531.txt │ │ ├── 002532.txt │ │ ├── 002534.txt │ │ ├── 002538.txt │ │ ├── 002539.txt │ │ ├── 002540.txt │ │ ├── 002541.txt │ │ ├── 002543.txt │ │ ├── 002546.txt │ │ ├── 002548.txt │ │ ├── 002552.txt │ │ ├── 002556.txt │ │ ├── 002557.txt │ │ ├── 002558.txt │ │ ├── 002562.txt │ │ ├── 002563.txt │ │ ├── 002564.txt │ │ ├── 002565.txt │ │ ├── 002568.txt │ │ ├── 002569.txt │ │ ├── 002570.txt │ │ ├── 002572.txt │ │ ├── 002574.txt │ │ ├── 002575.txt │ │ ├── 002577.txt │ │ ├── 002580.txt │ │ ├── 002581.txt │ │ ├── 002583.txt │ │ ├── 002584.txt │ │ ├── 002585.txt │ │ ├── 002586.txt │ │ ├── 002590.txt │ │ ├── 002594.txt │ │ ├── 002598.txt │ │ ├── 002599.txt │ │ ├── 002600.txt │ │ ├── 002601.txt │ │ ├── 002602.txt │ │ ├── 002603.txt │ │ ├── 002604.txt │ │ ├── 002606.txt │ │ ├── 002612.txt │ │ ├── 002613.txt │ │ ├── 002615.txt │ │ ├── 002619.txt │ │ ├── 002621.txt │ │ ├── 002625.txt │ │ ├── 002626.txt │ │ ├── 002628.txt │ │ ├── 002630.txt │ │ ├── 002631.txt │ │ ├── 002633.txt │ │ ├── 002635.txt │ │ ├── 002636.txt │ │ ├── 002638.txt │ │ ├── 002640.txt │ │ ├── 002641.txt │ │ ├── 002644.txt │ │ ├── 002645.txt │ │ ├── 002646.txt │ │ ├── 002651.txt │ │ ├── 002653.txt │ │ ├── 002656.txt │ │ ├── 002657.txt │ │ ├── 002661.txt │ │ ├── 002663.txt │ │ ├── 002666.txt │ │ ├── 002669.txt │ │ ├── 002673.txt │ │ ├── 002674.txt │ │ ├── 002675.txt │ │ ├── 002677.txt │ │ ├── 002680.txt │ │ ├── 002681.txt │ │ ├── 002685.txt │ │ ├── 002686.txt │ │ ├── 002690.txt │ │ ├── 002692.txt │ │ ├── 002693.txt │ │ ├── 002694.txt │ │ ├── 002695.txt │ │ ├── 002696.txt │ │ ├── 002699.txt │ │ ├── 002702.txt │ │ ├── 002706.txt │ │ ├── 002707.txt │ │ ├── 002709.txt │ │ ├── 002710.txt │ │ ├── 002711.txt │ │ ├── 002712.txt │ │ ├── 002713.txt │ │ ├── 002715.txt │ │ ├── 002717.txt │ │ ├── 002720.txt │ │ ├── 002721.txt │ │ ├── 002722.txt │ │ ├── 002724.txt │ │ ├── 002725.txt │ │ ├── 002726.txt │ │ ├── 002727.txt │ │ ├── 002728.txt │ │ ├── 002729.txt │ │ ├── 002730.txt │ │ ├── 002735.txt │ │ ├── 002737.txt │ │ ├── 002740.txt │ │ ├── 002742.txt │ │ ├── 002744.txt │ │ ├── 002745.txt │ │ ├── 002746.txt │ │ ├── 002747.txt │ │ ├── 002748.txt │ │ ├── 002749.txt │ │ ├── 002752.txt │ │ ├── 002753.txt │ │ ├── 002755.txt │ │ ├── 002757.txt │ │ ├── 002758.txt │ │ ├── 002760.txt │ │ ├── 002761.txt │ │ ├── 002763.txt │ │ ├── 002764.txt │ │ ├── 002765.txt │ │ ├── 002767.txt │ │ ├── 002772.txt │ │ ├── 002773.txt │ │ ├── 002775.txt │ │ ├── 002783.txt │ │ ├── 002786.txt │ │ ├── 002787.txt │ │ ├── 002789.txt │ │ ├── 002793.txt │ │ ├── 002794.txt │ │ ├── 002796.txt │ │ ├── 002797.txt │ │ ├── 002800.txt │ │ ├── 002801.txt │ │ ├── 002804.txt │ │ ├── 002805.txt │ │ ├── 002806.txt │ │ ├── 002809.txt │ │ ├── 002810.txt │ │ ├── 002811.txt │ │ ├── 002812.txt │ │ ├── 002814.txt │ │ ├── 002815.txt │ │ ├── 002818.txt │ │ ├── 002820.txt │ │ ├── 002826.txt │ │ ├── 002827.txt │ │ ├── 002828.txt │ │ ├── 002830.txt │ │ ├── 002831.txt │ │ ├── 002833.txt │ │ ├── 002836.txt │ │ ├── 002839.txt │ │ ├── 002840.txt │ │ ├── 002841.txt │ │ ├── 002844.txt │ │ ├── 002845.txt │ │ ├── 002846.txt │ │ ├── 002847.txt │ │ ├── 002848.txt │ │ ├── 002853.txt │ │ ├── 002856.txt │ │ ├── 002858.txt │ │ ├── 002861.txt │ │ ├── 002863.txt │ │ ├── 002866.txt │ │ ├── 002867.txt │ │ ├── 002875.txt │ │ ├── 002876.txt │ │ ├── 002877.txt │ │ ├── 002878.txt │ │ ├── 002879.txt │ │ ├── 002880.txt │ │ ├── 002881.txt │ │ ├── 002883.txt │ │ ├── 002885.txt │ │ ├── 002889.txt │ │ ├── 002890.txt │ │ ├── 002891.txt │ │ ├── 002892.txt │ │ ├── 002893.txt │ │ ├── 002894.txt │ │ ├── 002895.txt │ │ ├── 002896.txt │ │ ├── 002900.txt │ │ ├── 002901.txt │ │ ├── 002902.txt │ │ ├── 002903.txt │ │ ├── 002905.txt │ │ ├── 002908.txt │ │ ├── 002911.txt │ │ ├── 002914.txt │ │ ├── 002916.txt │ │ ├── 002917.txt │ │ ├── 002919.txt │ │ ├── 002924.txt │ │ ├── 002925.txt │ │ ├── 002928.txt │ │ ├── 002930.txt │ │ ├── 002934.txt │ │ ├── 002935.txt │ │ ├── 002937.txt │ │ ├── 002942.txt │ │ ├── 002944.txt │ │ ├── 002945.txt │ │ ├── 002947.txt │ │ ├── 002948.txt │ │ ├── 002951.txt │ │ ├── 002953.txt │ │ ├── 002955.txt │ │ ├── 002957.txt │ │ ├── 002958.txt │ │ ├── 002959.txt │ │ ├── 002960.txt │ │ ├── 002961.txt │ │ ├── 002962.txt │ │ ├── 002963.txt │ │ ├── 002964.txt │ │ ├── 002966.txt │ │ ├── 002971.txt │ │ ├── 002974.txt │ │ ├── 002976.txt │ │ ├── 002977.txt │ │ ├── 002978.txt │ │ ├── 002979.txt │ │ ├── 002982.txt │ │ ├── 002984.txt │ │ ├── 002985.txt │ │ ├── 002988.txt │ │ ├── 002991.txt │ │ ├── 002993.txt │ │ ├── 002994.txt │ │ ├── 002995.txt │ │ ├── 002997.txt │ │ ├── 002999.txt │ │ ├── 003000.txt │ │ ├── 003001.txt │ │ ├── 003003.txt │ │ ├── 003004.txt │ │ ├── 003005.txt │ │ ├── 003006.txt │ │ ├── 003007.txt │ │ ├── 003010.txt │ │ ├── 003011.txt │ │ ├── 003019.txt │ │ ├── 003022.txt │ │ ├── 003024.txt │ │ ├── 003025.txt │ │ ├── 003027.txt │ │ ├── 003029.txt │ │ ├── 003030.txt │ │ ├── 003031.txt │ │ ├── 003032.txt │ │ ├── 003033.txt │ │ ├── 003034.txt │ │ ├── 003035.txt │ │ ├── 003038.txt │ │ ├── 003042.txt │ │ ├── 003043.txt │ │ ├── 003046.txt │ │ ├── 003047.txt │ │ ├── 003048.txt │ │ ├── 003050.txt │ │ ├── 003052.txt │ │ ├── 003053.txt │ │ ├── 003054.txt │ │ ├── 003055.txt │ │ ├── 003056.txt │ │ ├── 003058.txt │ │ ├── 003061.txt │ │ ├── 003062.txt │ │ ├── 003065.txt │ │ ├── 003066.txt │ │ ├── 003067.txt │ │ ├── 003071.txt │ │ ├── 003073.txt │ │ ├── 003074.txt │ │ ├── 003076.txt │ │ ├── 003080.txt │ │ ├── 003082.txt │ │ ├── 003087.txt │ │ ├── 003088.txt │ │ ├── 003090.txt │ │ ├── 003094.txt │ │ ├── 003096.txt │ │ ├── 003099.txt │ │ ├── 003101.txt │ │ ├── 003102.txt │ │ ├── 003103.txt │ │ ├── 003106.txt │ │ ├── 003107.txt │ │ ├── 003109.txt │ │ ├── 003110.txt │ │ ├── 003112.txt │ │ ├── 003114.txt │ │ ├── 003116.txt │ │ ├── 003118.txt │ │ ├── 003124.txt │ │ ├── 003126.txt │ │ ├── 003127.txt │ │ ├── 003129.txt │ │ ├── 003131.txt │ │ ├── 003133.txt │ │ ├── 003134.txt │ │ ├── 003135.txt │ │ ├── 003136.txt │ │ ├── 003137.txt │ │ ├── 003141.txt │ │ ├── 003142.txt │ │ ├── 003144.txt │ │ ├── 003145.txt │ │ ├── 003146.txt │ │ ├── 003148.txt │ │ ├── 003150.txt │ │ ├── 003153.txt │ │ ├── 003156.txt │ │ ├── 003159.txt │ │ ├── 003161.txt │ │ ├── 003162.txt │ │ ├── 003165.txt │ │ ├── 003167.txt │ │ ├── 003170.txt │ │ ├── 003172.txt │ │ ├── 003174.txt │ │ ├── 003175.txt │ │ ├── 003177.txt │ │ ├── 003179.txt │ │ ├── 003180.txt │ │ ├── 003181.txt │ │ ├── 003182.txt │ │ ├── 003183.txt │ │ ├── 003187.txt │ │ ├── 003190.txt │ │ ├── 003192.txt │ │ ├── 003194.txt │ │ ├── 003197.txt │ │ ├── 003199.txt │ │ ├── 003202.txt │ │ ├── 003203.txt │ │ ├── 003204.txt │ │ ├── 003207.txt │ │ ├── 003210.txt │ │ ├── 003211.txt │ │ ├── 003214.txt │ │ ├── 003216.txt │ │ ├── 003217.txt │ │ ├── 003219.txt │ │ ├── 003221.txt │ │ ├── 003222.txt │ │ ├── 003224.txt │ │ ├── 003225.txt │ │ ├── 003226.txt │ │ ├── 003228.txt │ │ ├── 003229.txt │ │ ├── 003231.txt │ │ ├── 003232.txt │ │ ├── 003233.txt │ │ ├── 003236.txt │ │ ├── 003239.txt │ │ ├── 003240.txt │ │ ├── 003242.txt │ │ ├── 003247.txt │ │ ├── 003250.txt │ │ ├── 003251.txt │ │ ├── 003252.txt │ │ ├── 003254.txt │ │ ├── 003255.txt │ │ ├── 003257.txt │ │ ├── 003259.txt │ │ ├── 003265.txt │ │ ├── 003266.txt │ │ ├── 003269.txt │ │ ├── 003272.txt │ │ ├── 003275.txt │ │ ├── 003276.txt │ │ ├── 003280.txt │ │ ├── 003281.txt │ │ ├── 003283.txt │ │ ├── 003288.txt │ │ ├── 003292.txt │ │ ├── 003295.txt │ │ ├── 003296.txt │ │ ├── 003298.txt │ │ ├── 003300.txt │ │ ├── 003301.txt │ │ ├── 003302.txt │ │ ├── 003304.txt │ │ ├── 003305.txt │ │ ├── 003306.txt │ │ ├── 003308.txt │ │ ├── 003310.txt │ │ ├── 003312.txt │ │ ├── 003313.txt │ │ ├── 003315.txt │ │ ├── 003316.txt │ │ ├── 003318.txt │ │ ├── 003319.txt │ │ ├── 003322.txt │ │ ├── 003323.txt │ │ ├── 003324.txt │ │ ├── 003325.txt │ │ ├── 003330.txt │ │ ├── 003331.txt │ │ ├── 003337.txt │ │ ├── 003338.txt │ │ ├── 003341.txt │ │ ├── 003343.txt │ │ ├── 003346.txt │ │ ├── 003347.txt │ │ ├── 003350.txt │ │ ├── 003351.txt │ │ ├── 003352.txt │ │ ├── 003353.txt │ │ ├── 003355.txt │ │ ├── 003357.txt │ │ ├── 003358.txt │ │ ├── 003364.txt │ │ ├── 003365.txt │ │ ├── 003366.txt │ │ ├── 003367.txt │ │ ├── 003368.txt │ │ ├── 003370.txt │ │ ├── 003373.txt │ │ ├── 003375.txt │ │ ├── 003379.txt │ │ ├── 003385.txt │ │ ├── 003386.txt │ │ ├── 003393.txt │ │ ├── 003394.txt │ │ ├── 003395.txt │ │ ├── 003396.txt │ │ ├── 003397.txt │ │ ├── 003399.txt │ │ ├── 003401.txt │ │ ├── 003402.txt │ │ ├── 003403.txt │ │ ├── 003404.txt │ │ ├── 003405.txt │ │ ├── 003406.txt │ │ ├── 003407.txt │ │ ├── 003408.txt │ │ ├── 003409.txt │ │ ├── 003410.txt │ │ ├── 003411.txt │ │ ├── 003412.txt │ │ ├── 003417.txt │ │ ├── 003419.txt │ │ ├── 003421.txt │ │ ├── 003422.txt │ │ ├── 003425.txt │ │ ├── 003426.txt │ │ ├── 003428.txt │ │ ├── 003429.txt │ │ ├── 003430.txt │ │ ├── 003432.txt │ │ ├── 003434.txt │ │ ├── 003435.txt │ │ ├── 003443.txt │ │ ├── 003447.txt │ │ ├── 003448.txt │ │ ├── 003449.txt │ │ ├── 003450.txt │ │ ├── 003453.txt │ │ ├── 003456.txt │ │ ├── 003461.txt │ │ ├── 003464.txt │ │ ├── 003465.txt │ │ ├── 003466.txt │ │ ├── 003467.txt │ │ ├── 003469.txt │ │ ├── 003470.txt │ │ ├── 003471.txt │ │ ├── 003474.txt │ │ ├── 003478.txt │ │ ├── 003480.txt │ │ ├── 003481.txt │ │ ├── 003482.txt │ │ ├── 003483.txt │ │ ├── 003484.txt │ │ ├── 003487.txt │ │ ├── 003488.txt │ │ ├── 003489.txt │ │ ├── 003490.txt │ │ ├── 003491.txt │ │ ├── 003492.txt │ │ ├── 003495.txt │ │ ├── 003496.txt │ │ ├── 003497.txt │ │ ├── 003502.txt │ │ ├── 003503.txt │ │ ├── 003504.txt │ │ ├── 003506.txt │ │ ├── 003511.txt │ │ ├── 003515.txt │ │ ├── 003517.txt │ │ ├── 003519.txt │ │ ├── 003520.txt │ │ ├── 003521.txt │ │ ├── 003524.txt │ │ ├── 003527.txt │ │ ├── 003528.txt │ │ ├── 003529.txt │ │ ├── 003530.txt │ │ ├── 003531.txt │ │ ├── 003535.txt │ │ ├── 003539.txt │ │ ├── 003543.txt │ │ ├── 003544.txt │ │ ├── 003547.txt │ │ ├── 003550.txt │ │ ├── 003552.txt │ │ ├── 003553.txt │ │ ├── 003554.txt │ │ ├── 003557.txt │ │ ├── 003558.txt │ │ ├── 003559.txt │ │ ├── 003562.txt │ │ ├── 003563.txt │ │ ├── 003568.txt │ │ ├── 003571.txt │ │ ├── 003573.txt │ │ ├── 003574.txt │ │ ├── 003580.txt │ │ ├── 003582.txt │ │ ├── 003583.txt │ │ ├── 003584.txt │ │ ├── 003588.txt │ │ ├── 003600.txt │ │ ├── 003601.txt │ │ ├── 003604.txt │ │ ├── 003605.txt │ │ ├── 003607.txt │ │ ├── 003608.txt │ │ ├── 003609.txt │ │ ├── 003611.txt │ │ ├── 003614.txt │ │ ├── 003616.txt │ │ ├── 003618.txt │ │ ├── 003620.txt │ │ ├── 003621.txt │ │ ├── 003622.txt │ │ ├── 003623.txt │ │ ├── 003624.txt │ │ ├── 003627.txt │ │ ├── 003629.txt │ │ ├── 003630.txt │ │ ├── 003631.txt │ │ ├── 003632.txt │ │ ├── 003633.txt │ │ ├── 003634.txt │ │ ├── 003635.txt │ │ ├── 003643.txt │ │ ├── 003645.txt │ │ ├── 003647.txt │ │ ├── 003649.txt │ │ ├── 003652.txt │ │ ├── 003653.txt │ │ ├── 003655.txt │ │ ├── 003658.txt │ │ ├── 003659.txt │ │ ├── 003661.txt │ │ ├── 003662.txt │ │ ├── 003667.txt │ │ ├── 003668.txt │ │ ├── 003669.txt │ │ ├── 003671.txt │ │ ├── 003676.txt │ │ ├── 003677.txt │ │ ├── 003678.txt │ │ ├── 003679.txt │ │ ├── 003682.txt │ │ ├── 003683.txt │ │ ├── 003684.txt │ │ ├── 003688.txt │ │ ├── 003689.txt │ │ ├── 003690.txt │ │ ├── 003691.txt │ │ ├── 003692.txt │ │ ├── 003702.txt │ │ ├── 003703.txt │ │ ├── 003705.txt │ │ ├── 003707.txt │ │ ├── 003708.txt │ │ ├── 003711.txt │ │ ├── 003712.txt │ │ ├── 003715.txt │ │ ├── 003716.txt │ │ ├── 003718.txt │ │ ├── 003719.txt │ │ ├── 003723.txt │ │ ├── 003726.txt │ │ ├── 003728.txt │ │ ├── 003735.txt │ │ ├── 003736.txt │ │ ├── 003737.txt │ │ ├── 003738.txt │ │ ├── 003739.txt │ │ ├── 003746.txt │ │ ├── 003747.txt │ │ ├── 003748.txt │ │ ├── 003750.txt │ │ ├── 003751.txt │ │ ├── 003753.txt │ │ ├── 003755.txt │ │ ├── 003756.txt │ │ ├── 003762.txt │ │ ├── 003763.txt │ │ ├── 003764.txt │ │ ├── 003769.txt │ │ ├── 003771.txt │ │ ├── 003775.txt │ │ ├── 003777.txt │ │ ├── 003778.txt │ │ ├── 003779.txt │ │ ├── 003781.txt │ │ ├── 003782.txt │ │ ├── 003787.txt │ │ ├── 003788.txt │ │ ├── 003793.txt │ │ ├── 003794.txt │ │ ├── 003798.txt │ │ ├── 003800.txt │ │ ├── 003802.txt │ │ ├── 003804.txt │ │ ├── 003805.txt │ │ ├── 003807.txt │ │ ├── 003808.txt │ │ ├── 003809.txt │ │ ├── 003811.txt │ │ ├── 003812.txt │ │ ├── 003814.txt │ │ ├── 003820.txt │ │ ├── 003822.txt │ │ ├── 003826.txt │ │ ├── 003827.txt │ │ ├── 003828.txt │ │ ├── 003830.txt │ │ ├── 003834.txt │ │ ├── 003835.txt │ │ ├── 003837.txt │ │ ├── 003841.txt │ │ ├── 003847.txt │ │ ├── 003852.txt │ │ ├── 003854.txt │ │ ├── 003856.txt │ │ ├── 003859.txt │ │ ├── 003860.txt │ │ ├── 003864.txt │ │ ├── 003866.txt │ │ ├── 003869.txt │ │ ├── 003870.txt │ │ ├── 003872.txt │ │ ├── 003873.txt │ │ ├── 003874.txt │ │ ├── 003878.txt │ │ ├── 003879.txt │ │ ├── 003880.txt │ │ ├── 003881.txt │ │ ├── 003883.txt │ │ ├── 003885.txt │ │ ├── 003886.txt │ │ ├── 003890.txt │ │ ├── 003891.txt │ │ ├── 003892.txt │ │ ├── 003894.txt │ │ ├── 003897.txt │ │ ├── 003898.txt │ │ ├── 003899.txt │ │ ├── 003901.txt │ │ ├── 003902.txt │ │ ├── 003905.txt │ │ ├── 003907.txt │ │ ├── 003909.txt │ │ ├── 003914.txt │ │ ├── 003915.txt │ │ ├── 003916.txt │ │ ├── 003920.txt │ │ ├── 003923.txt │ │ ├── 003924.txt │ │ ├── 003926.txt │ │ ├── 003931.txt │ │ ├── 003932.txt │ │ ├── 003934.txt │ │ ├── 003937.txt │ │ ├── 003938.txt │ │ ├── 003943.txt │ │ ├── 003945.txt │ │ ├── 003946.txt │ │ ├── 003948.txt │ │ ├── 003950.txt │ │ ├── 003956.txt │ │ ├── 003958.txt │ │ ├── 003961.txt │ │ ├── 003962.txt │ │ ├── 003964.txt │ │ ├── 003965.txt │ │ ├── 003969.txt │ │ ├── 003970.txt │ │ ├── 003972.txt │ │ ├── 003975.txt │ │ ├── 003977.txt │ │ ├── 003980.txt │ │ ├── 003981.txt │ │ ├── 003982.txt │ │ ├── 003984.txt │ │ ├── 003986.txt │ │ ├── 003992.txt │ │ ├── 003996.txt │ │ ├── 003998.txt │ │ ├── 004000.txt │ │ ├── 004001.txt │ │ ├── 004002.txt │ │ ├── 004003.txt │ │ ├── 004004.txt │ │ ├── 004007.txt │ │ ├── 004008.txt │ │ ├── 004009.txt │ │ ├── 004010.txt │ │ ├── 004011.txt │ │ ├── 004016.txt │ │ ├── 004021.txt │ │ ├── 004026.txt │ │ ├── 004027.txt │ │ ├── 004028.txt │ │ ├── 004032.txt │ │ ├── 004033.txt │ │ ├── 004034.txt │ │ ├── 004036.txt │ │ ├── 004038.txt │ │ ├── 004040.txt │ │ ├── 004041.txt │ │ ├── 004042.txt │ │ ├── 004045.txt │ │ ├── 004048.txt │ │ ├── 004049.txt │ │ ├── 004051.txt │ │ ├── 004055.txt │ │ ├── 004059.txt │ │ ├── 004061.txt │ │ ├── 004063.txt │ │ ├── 004064.txt │ │ ├── 004065.txt │ │ ├── 004068.txt │ │ ├── 004072.txt │ │ ├── 004074.txt │ │ ├── 004077.txt │ │ ├── 004079.txt │ │ ├── 004081.txt │ │ ├── 004082.txt │ │ ├── 004083.txt │ │ ├── 004085.txt │ │ ├── 004087.txt │ │ ├── 004089.txt │ │ ├── 004091.txt │ │ ├── 004092.txt │ │ ├── 004095.txt │ │ ├── 004096.txt │ │ ├── 004098.txt │ │ ├── 004100.txt │ │ ├── 004101.txt │ │ ├── 004104.txt │ │ ├── 004105.txt │ │ ├── 004107.txt │ │ ├── 004108.txt │ │ ├── 004109.txt │ │ ├── 004110.txt │ │ ├── 004111.txt │ │ ├── 004113.txt │ │ ├── 004116.txt │ │ ├── 004117.txt │ │ ├── 004118.txt │ │ ├── 004119.txt │ │ ├── 004120.txt │ │ ├── 004121.txt │ │ ├── 004122.txt │ │ ├── 004124.txt │ │ ├── 004125.txt │ │ ├── 004126.txt │ │ ├── 004128.txt │ │ ├── 004129.txt │ │ ├── 004130.txt │ │ ├── 004131.txt │ │ ├── 004132.txt │ │ ├── 004136.txt │ │ ├── 004137.txt │ │ ├── 004138.txt │ │ ├── 004140.txt │ │ ├── 004142.txt │ │ ├── 004143.txt │ │ ├── 004148.txt │ │ ├── 004149.txt │ │ ├── 004150.txt │ │ ├── 004152.txt │ │ ├── 004153.txt │ │ ├── 004154.txt │ │ ├── 004155.txt │ │ ├── 004156.txt │ │ ├── 004157.txt │ │ ├── 004158.txt │ │ ├── 004160.txt │ │ ├── 004161.txt │ │ ├── 004162.txt │ │ ├── 004163.txt │ │ ├── 004164.txt │ │ ├── 004168.txt │ │ ├── 004171.txt │ │ ├── 004172.txt │ │ ├── 004173.txt │ │ ├── 004174.txt │ │ ├── 004175.txt │ │ ├── 004185.txt │ │ ├── 004187.txt │ │ ├── 004188.txt │ │ ├── 004189.txt │ │ ├── 004190.txt │ │ ├── 004191.txt │ │ ├── 004195.txt │ │ ├── 004196.txt │ │ ├── 004202.txt │ │ ├── 004205.txt │ │ ├── 004206.txt │ │ ├── 004207.txt │ │ ├── 004209.txt │ │ ├── 004210.txt │ │ ├── 004213.txt │ │ ├── 004214.txt │ │ ├── 004215.txt │ │ ├── 004220.txt │ │ ├── 004221.txt │ │ ├── 004222.txt │ │ ├── 004223.txt │ │ ├── 004224.txt │ │ ├── 004226.txt │ │ ├── 004228.txt │ │ ├── 004232.txt │ │ ├── 004237.txt │ │ ├── 004239.txt │ │ ├── 004241.txt │ │ ├── 004242.txt │ │ ├── 004243.txt │ │ ├── 004246.txt │ │ ├── 004248.txt │ │ ├── 004249.txt │ │ ├── 004250.txt │ │ ├── 004251.txt │ │ ├── 004254.txt │ │ ├── 004255.txt │ │ ├── 004256.txt │ │ ├── 004259.txt │ │ ├── 004260.txt │ │ ├── 004263.txt │ │ ├── 004270.txt │ │ ├── 004271.txt │ │ ├── 004275.txt │ │ ├── 004277.txt │ │ ├── 004278.txt │ │ ├── 004280.txt │ │ ├── 004281.txt │ │ ├── 004282.txt │ │ ├── 004284.txt │ │ ├── 004285.txt │ │ ├── 004288.txt │ │ ├── 004289.txt │ │ ├── 004290.txt │ │ ├── 004291.txt │ │ ├── 004293.txt │ │ ├── 004294.txt │ │ ├── 004295.txt │ │ ├── 004298.txt │ │ ├── 004299.txt │ │ ├── 004300.txt │ │ ├── 004301.txt │ │ ├── 004303.txt │ │ ├── 004305.txt │ │ ├── 004306.txt │ │ ├── 004307.txt │ │ ├── 004309.txt │ │ ├── 004311.txt │ │ ├── 004312.txt │ │ ├── 004314.txt │ │ ├── 004318.txt │ │ ├── 004319.txt │ │ ├── 004321.txt │ │ ├── 004323.txt │ │ ├── 004324.txt │ │ ├── 004326.txt │ │ ├── 004327.txt │ │ ├── 004329.txt │ │ ├── 004330.txt │ │ ├── 004335.txt │ │ ├── 004336.txt │ │ ├── 004337.txt │ │ ├── 004338.txt │ │ ├── 004340.txt │ │ ├── 004342.txt │ │ ├── 004343.txt │ │ ├── 004345.txt │ │ ├── 004348.txt │ │ ├── 004349.txt │ │ ├── 004350.txt │ │ ├── 004352.txt │ │ ├── 004353.txt │ │ ├── 004360.txt │ │ ├── 004362.txt │ │ ├── 004363.txt │ │ ├── 004364.txt │ │ ├── 004367.txt │ │ ├── 004368.txt │ │ ├── 004369.txt │ │ ├── 004370.txt │ │ ├── 004373.txt │ │ ├── 004374.txt │ │ ├── 004377.txt │ │ ├── 004383.txt │ │ ├── 004384.txt │ │ ├── 004385.txt │ │ ├── 004388.txt │ │ ├── 004391.txt │ │ ├── 004392.txt │ │ ├── 004393.txt │ │ ├── 004396.txt │ │ ├── 004397.txt │ │ ├── 004398.txt │ │ ├── 004401.txt │ │ ├── 004402.txt │ │ ├── 004403.txt │ │ ├── 004404.txt │ │ ├── 004406.txt │ │ ├── 004407.txt │ │ ├── 004414.txt │ │ ├── 004415.txt │ │ ├── 004418.txt │ │ ├── 004419.txt │ │ ├── 004420.txt │ │ ├── 004421.txt │ │ ├── 004422.txt │ │ ├── 004423.txt │ │ ├── 004424.txt │ │ ├── 004425.txt │ │ ├── 004426.txt │ │ ├── 004429.txt │ │ ├── 004430.txt │ │ ├── 004433.txt │ │ ├── 004434.txt │ │ ├── 004435.txt │ │ ├── 004437.txt │ │ ├── 004438.txt │ │ ├── 004439.txt │ │ ├── 004440.txt │ │ ├── 004443.txt │ │ ├── 004444.txt │ │ ├── 004447.txt │ │ ├── 004450.txt │ │ ├── 004452.txt │ │ ├── 004454.txt │ │ ├── 004456.txt │ │ ├── 004458.txt │ │ ├── 004460.txt │ │ ├── 004462.txt │ │ ├── 004465.txt │ │ ├── 004469.txt │ │ ├── 004470.txt │ │ ├── 004472.txt │ │ ├── 004474.txt │ │ ├── 004475.txt │ │ ├── 004480.txt │ │ ├── 004481.txt │ │ ├── 004482.txt │ │ ├── 004483.txt │ │ ├── 004485.txt │ │ ├── 004486.txt │ │ ├── 004487.txt │ │ ├── 004489.txt │ │ ├── 004490.txt │ │ ├── 004491.txt │ │ ├── 004493.txt │ │ ├── 004494.txt │ │ ├── 004496.txt │ │ ├── 004501.txt │ │ ├── 004502.txt │ │ ├── 004508.txt │ │ ├── 004511.txt │ │ ├── 004513.txt │ │ ├── 004516.txt │ │ ├── 004517.txt │ │ ├── 004519.txt │ │ ├── 004520.txt │ │ ├── 004521.txt │ │ ├── 004526.txt │ │ ├── 004527.txt │ │ ├── 004528.txt │ │ ├── 004529.txt │ │ ├── 004530.txt │ │ ├── 004531.txt │ │ ├── 004532.txt │ │ ├── 004534.txt │ │ ├── 004540.txt │ │ ├── 004541.txt │ │ ├── 004542.txt │ │ ├── 004547.txt │ │ ├── 004548.txt │ │ ├── 004549.txt │ │ ├── 004551.txt │ │ ├── 004553.txt │ │ ├── 004556.txt │ │ ├── 004557.txt │ │ ├── 004562.txt │ │ ├── 004566.txt │ │ ├── 004567.txt │ │ ├── 004568.txt │ │ ├── 004569.txt │ │ ├── 004570.txt │ │ ├── 004573.txt │ │ ├── 004574.txt │ │ ├── 004576.txt │ │ ├── 004578.txt │ │ ├── 004581.txt │ │ ├── 004582.txt │ │ ├── 004585.txt │ │ ├── 004587.txt │ │ ├── 004588.txt │ │ ├── 004589.txt │ │ ├── 004591.txt │ │ ├── 004596.txt │ │ ├── 004598.txt │ │ ├── 004599.txt │ │ ├── 004603.txt │ │ ├── 004608.txt │ │ ├── 004609.txt │ │ ├── 004610.txt │ │ ├── 004611.txt │ │ ├── 004612.txt │ │ ├── 004615.txt │ │ ├── 004618.txt │ │ ├── 004620.txt │ │ ├── 004622.txt │ │ ├── 004624.txt │ │ ├── 004626.txt │ │ ├── 004629.txt │ │ ├── 004630.txt │ │ ├── 004632.txt │ │ ├── 004633.txt │ │ ├── 004634.txt │ │ ├── 004636.txt │ │ ├── 004638.txt │ │ ├── 004640.txt │ │ ├── 004644.txt │ │ ├── 004647.txt │ │ ├── 004648.txt │ │ ├── 004649.txt │ │ ├── 004650.txt │ │ ├── 004651.txt │ │ ├── 004652.txt │ │ ├── 004655.txt │ │ ├── 004657.txt │ │ ├── 004658.txt │ │ ├── 004660.txt │ │ ├── 004665.txt │ │ ├── 004666.txt │ │ ├── 004667.txt │ │ ├── 004668.txt │ │ ├── 004669.txt │ │ ├── 004672.txt │ │ ├── 004673.txt │ │ ├── 004679.txt │ │ ├── 004680.txt │ │ ├── 004682.txt │ │ ├── 004683.txt │ │ ├── 004685.txt │ │ ├── 004686.txt │ │ ├── 004687.txt │ │ ├── 004688.txt │ │ ├── 004689.txt │ │ ├── 004691.txt │ │ ├── 004692.txt │ │ ├── 004693.txt │ │ ├── 004694.txt │ │ ├── 004695.txt │ │ ├── 004697.txt │ │ ├── 004698.txt │ │ ├── 004699.txt │ │ ├── 004700.txt │ │ ├── 004705.txt │ │ ├── 004706.txt │ │ ├── 004708.txt │ │ ├── 004709.txt │ │ ├── 004710.txt │ │ ├── 004711.txt │ │ ├── 004713.txt │ │ ├── 004714.txt │ │ ├── 004715.txt │ │ ├── 004716.txt │ │ ├── 004717.txt │ │ ├── 004718.txt │ │ ├── 004720.txt │ │ ├── 004721.txt │ │ ├── 004722.txt │ │ ├── 004724.txt │ │ ├── 004725.txt │ │ ├── 004726.txt │ │ ├── 004730.txt │ │ ├── 004732.txt │ │ ├── 004734.txt │ │ ├── 004735.txt │ │ ├── 004737.txt │ │ ├── 004738.txt │ │ ├── 004739.txt │ │ ├── 004740.txt │ │ ├── 004742.txt │ │ ├── 004743.txt │ │ ├── 004744.txt │ │ ├── 004745.txt │ │ ├── 004746.txt │ │ ├── 004748.txt │ │ ├── 004752.txt │ │ ├── 004753.txt │ │ ├── 004756.txt │ │ ├── 004759.txt │ │ ├── 004762.txt │ │ ├── 004763.txt │ │ ├── 004764.txt │ │ ├── 004766.txt │ │ ├── 004768.txt │ │ ├── 004769.txt │ │ ├── 004770.txt │ │ ├── 004773.txt │ │ ├── 004776.txt │ │ ├── 004777.txt │ │ ├── 004782.txt │ │ ├── 004783.txt │ │ ├── 004787.txt │ │ ├── 004788.txt │ │ ├── 004790.txt │ │ ├── 004791.txt │ │ ├── 004792.txt │ │ ├── 004797.txt │ │ ├── 004799.txt │ │ ├── 004800.txt │ │ ├── 004804.txt │ │ ├── 004806.txt │ │ ├── 004807.txt │ │ ├── 004810.txt │ │ ├── 004811.txt │ │ ├── 004813.txt │ │ ├── 004814.txt │ │ ├── 004815.txt │ │ ├── 004816.txt │ │ ├── 004817.txt │ │ ├── 004821.txt │ │ ├── 004822.txt │ │ ├── 004825.txt │ │ ├── 004829.txt │ │ ├── 004830.txt │ │ ├── 004831.txt │ │ ├── 004832.txt │ │ ├── 004835.txt │ │ ├── 004839.txt │ │ ├── 004843.txt │ │ ├── 004846.txt │ │ ├── 004848.txt │ │ ├── 004849.txt │ │ ├── 004850.txt │ │ ├── 004851.txt │ │ ├── 004852.txt │ │ ├── 004858.txt │ │ ├── 004859.txt │ │ ├── 004860.txt │ │ ├── 004861.txt │ │ ├── 004862.txt │ │ ├── 004863.txt │ │ ├── 004864.txt │ │ ├── 004867.txt │ │ ├── 004868.txt │ │ ├── 004871.txt │ │ ├── 004873.txt │ │ ├── 004874.txt │ │ ├── 004875.txt │ │ ├── 004881.txt │ │ ├── 004885.txt │ │ ├── 004887.txt │ │ ├── 004888.txt │ │ ├── 004891.txt │ │ ├── 004892.txt │ │ ├── 004893.txt │ │ ├── 004895.txt │ │ ├── 004896.txt │ │ ├── 004898.txt │ │ ├── 004902.txt │ │ ├── 004903.txt │ │ ├── 004904.txt │ │ ├── 004905.txt │ │ ├── 004907.txt │ │ ├── 004909.txt │ │ ├── 004914.txt │ │ ├── 004917.txt │ │ ├── 004918.txt │ │ ├── 004920.txt │ │ ├── 004921.txt │ │ ├── 004924.txt │ │ ├── 004926.txt │ │ ├── 004927.txt │ │ ├── 004928.txt │ │ ├── 004929.txt │ │ ├── 004931.txt │ │ ├── 004932.txt │ │ ├── 004934.txt │ │ ├── 004935.txt │ │ ├── 004938.txt │ │ ├── 004941.txt │ │ ├── 004942.txt │ │ ├── 004943.txt │ │ ├── 004944.txt │ │ ├── 004946.txt │ │ ├── 004947.txt │ │ ├── 004948.txt │ │ ├── 004949.txt │ │ ├── 004953.txt │ │ ├── 004954.txt │ │ ├── 004956.txt │ │ ├── 004958.txt │ │ ├── 004959.txt │ │ ├── 004960.txt │ │ ├── 004962.txt │ │ ├── 004963.txt │ │ ├── 004966.txt │ │ ├── 004974.txt │ │ ├── 004976.txt │ │ ├── 004979.txt │ │ ├── 004981.txt │ │ ├── 004983.txt │ │ ├── 004985.txt │ │ ├── 004986.txt │ │ ├── 004988.txt │ │ ├── 004989.txt │ │ ├── 004990.txt │ │ ├── 004993.txt │ │ ├── 004994.txt │ │ ├── 004995.txt │ │ ├── 004996.txt │ │ ├── 004998.txt │ │ ├── 004999.txt │ │ ├── 005001.txt │ │ ├── 005002.txt │ │ ├── 005004.txt │ │ ├── 005008.txt │ │ ├── 005010.txt │ │ ├── 005013.txt │ │ ├── 005014.txt │ │ ├── 005015.txt │ │ ├── 005017.txt │ │ ├── 005019.txt │ │ ├── 005021.txt │ │ ├── 005024.txt │ │ ├── 005026.txt │ │ ├── 005028.txt │ │ ├── 005032.txt │ │ ├── 005034.txt │ │ ├── 005036.txt │ │ ├── 005037.txt │ │ ├── 005038.txt │ │ ├── 005040.txt │ │ ├── 005041.txt │ │ ├── 005045.txt │ │ ├── 005049.txt │ │ ├── 005050.txt │ │ ├── 005052.txt │ │ ├── 005053.txt │ │ ├── 005054.txt │ │ ├── 005055.txt │ │ ├── 005056.txt │ │ ├── 005057.txt │ │ ├── 005058.txt │ │ ├── 005062.txt │ │ ├── 005063.txt │ │ ├── 005064.txt │ │ ├── 005065.txt │ │ ├── 005067.txt │ │ ├── 005068.txt │ │ ├── 005070.txt │ │ ├── 005072.txt │ │ ├── 005073.txt │ │ ├── 005074.txt │ │ ├── 005075.txt │ │ ├── 005077.txt │ │ ├── 005078.txt │ │ ├── 005079.txt │ │ ├── 005080.txt │ │ ├── 005081.txt │ │ ├── 005082.txt │ │ ├── 005086.txt │ │ ├── 005090.txt │ │ ├── 005093.txt │ │ ├── 005094.txt │ │ ├── 005095.txt │ │ ├── 005101.txt │ │ ├── 005103.txt │ │ ├── 005105.txt │ │ ├── 005108.txt │ │ ├── 005109.txt │ │ ├── 005110.txt │ │ ├── 005112.txt │ │ ├── 005113.txt │ │ ├── 005120.txt │ │ ├── 005121.txt │ │ ├── 005122.txt │ │ ├── 005124.txt │ │ ├── 005125.txt │ │ ├── 005127.txt │ │ ├── 005128.txt │ │ ├── 005133.txt │ │ ├── 005135.txt │ │ ├── 005136.txt │ │ ├── 005138.txt │ │ ├── 005139.txt │ │ ├── 005140.txt │ │ ├── 005141.txt │ │ ├── 005143.txt │ │ ├── 005144.txt │ │ ├── 005145.txt │ │ ├── 005147.txt │ │ ├── 005149.txt │ │ ├── 005153.txt │ │ ├── 005155.txt │ │ ├── 005156.txt │ │ ├── 005157.txt │ │ ├── 005158.txt │ │ ├── 005161.txt │ │ ├── 005162.txt │ │ ├── 005163.txt │ │ ├── 005164.txt │ │ ├── 005166.txt │ │ ├── 005167.txt │ │ ├── 005168.txt │ │ ├── 005170.txt │ │ ├── 005172.txt │ │ ├── 005174.txt │ │ ├── 005175.txt │ │ ├── 005176.txt │ │ ├── 005179.txt │ │ ├── 005180.txt │ │ ├── 005181.txt │ │ ├── 005182.txt │ │ ├── 005184.txt │ │ ├── 005185.txt │ │ ├── 005188.txt │ │ ├── 005189.txt │ │ ├── 005190.txt │ │ ├── 005191.txt │ │ ├── 005194.txt │ │ ├── 005197.txt │ │ ├── 005198.txt │ │ ├── 005199.txt │ │ ├── 005201.txt │ │ ├── 005206.txt │ │ ├── 005213.txt │ │ ├── 005214.txt │ │ ├── 005217.txt │ │ ├── 005218.txt │ │ ├── 005219.txt │ │ ├── 005221.txt │ │ ├── 005222.txt │ │ ├── 005226.txt │ │ ├── 005227.txt │ │ ├── 005229.txt │ │ ├── 005230.txt │ │ ├── 005233.txt │ │ ├── 005234.txt │ │ ├── 005236.txt │ │ ├── 005237.txt │ │ ├── 005240.txt │ │ ├── 005241.txt │ │ ├── 005242.txt │ │ ├── 005244.txt │ │ ├── 005246.txt │ │ ├── 005249.txt │ │ ├── 005251.txt │ │ ├── 005255.txt │ │ ├── 005256.txt │ │ ├── 005260.txt │ │ ├── 005262.txt │ │ ├── 005267.txt │ │ ├── 005268.txt │ │ ├── 005271.txt │ │ ├── 005273.txt │ │ ├── 005274.txt │ │ ├── 005275.txt │ │ ├── 005276.txt │ │ ├── 005279.txt │ │ ├── 005280.txt │ │ ├── 005282.txt │ │ ├── 005284.txt │ │ ├── 005287.txt │ │ ├── 005289.txt │ │ ├── 005292.txt │ │ ├── 005296.txt │ │ ├── 005297.txt │ │ ├── 005298.txt │ │ ├── 005299.txt │ │ ├── 005304.txt │ │ ├── 005307.txt │ │ ├── 005308.txt │ │ ├── 005309.txt │ │ ├── 005311.txt │ │ ├── 005312.txt │ │ ├── 005313.txt │ │ ├── 005315.txt │ │ ├── 005316.txt │ │ ├── 005318.txt │ │ ├── 005319.txt │ │ ├── 005321.txt │ │ ├── 005322.txt │ │ ├── 005323.txt │ │ ├── 005325.txt │ │ ├── 005328.txt │ │ ├── 005329.txt │ │ ├── 005330.txt │ │ ├── 005333.txt │ │ ├── 005334.txt │ │ ├── 005335.txt │ │ ├── 005336.txt │ │ ├── 005337.txt │ │ ├── 005338.txt │ │ ├── 005341.txt │ │ ├── 005342.txt │ │ ├── 005343.txt │ │ ├── 005345.txt │ │ ├── 005347.txt │ │ ├── 005349.txt │ │ ├── 005350.txt │ │ ├── 005359.txt │ │ ├── 005360.txt │ │ ├── 005363.txt │ │ ├── 005365.txt │ │ ├── 005366.txt │ │ ├── 005368.txt │ │ ├── 005369.txt │ │ ├── 005371.txt │ │ ├── 005372.txt │ │ ├── 005375.txt │ │ ├── 005377.txt │ │ ├── 005378.txt │ │ ├── 005379.txt │ │ ├── 005381.txt │ │ ├── 005385.txt │ │ ├── 005386.txt │ │ ├── 005389.txt │ │ ├── 005390.txt │ │ ├── 005391.txt │ │ ├── 005404.txt │ │ ├── 005405.txt │ │ ├── 005413.txt │ │ ├── 005415.txt │ │ ├── 005422.txt │ │ ├── 005423.txt │ │ ├── 005426.txt │ │ ├── 005427.txt │ │ ├── 005429.txt │ │ ├── 005430.txt │ │ ├── 005431.txt │ │ ├── 005434.txt │ │ ├── 005437.txt │ │ ├── 005441.txt │ │ ├── 005443.txt │ │ ├── 005444.txt │ │ ├── 005445.txt │ │ ├── 005447.txt │ │ ├── 005448.txt │ │ ├── 005449.txt │ │ ├── 005450.txt │ │ ├── 005452.txt │ │ ├── 005453.txt │ │ ├── 005458.txt │ │ ├── 005459.txt │ │ ├── 005460.txt │ │ ├── 005461.txt │ │ ├── 005465.txt │ │ ├── 005466.txt │ │ ├── 005467.txt │ │ ├── 005471.txt │ │ ├── 005472.txt │ │ ├── 005473.txt │ │ ├── 005474.txt │ │ ├── 005476.txt │ │ ├── 005477.txt │ │ ├── 005479.txt │ │ ├── 005481.txt │ │ ├── 005482.txt │ │ ├── 005484.txt │ │ ├── 005486.txt │ │ ├── 005487.txt │ │ ├── 005489.txt │ │ ├── 005494.txt │ │ ├── 005495.txt │ │ ├── 005498.txt │ │ ├── 005505.txt │ │ ├── 005510.txt │ │ ├── 005511.txt │ │ ├── 005514.txt │ │ ├── 005515.txt │ │ ├── 005523.txt │ │ ├── 005525.txt │ │ ├── 005528.txt │ │ ├── 005531.txt │ │ ├── 005532.txt │ │ ├── 005534.txt │ │ ├── 005536.txt │ │ ├── 005538.txt │ │ ├── 005540.txt │ │ ├── 005542.txt │ │ ├── 005544.txt │ │ ├── 005545.txt │ │ ├── 005546.txt │ │ ├── 005551.txt │ │ ├── 005552.txt │ │ ├── 005555.txt │ │ ├── 005556.txt │ │ ├── 005557.txt │ │ ├── 005558.txt │ │ ├── 005559.txt │ │ ├── 005560.txt │ │ ├── 005565.txt │ │ ├── 005566.txt │ │ ├── 005570.txt │ │ ├── 005571.txt │ │ ├── 005572.txt │ │ ├── 005573.txt │ │ ├── 005576.txt │ │ ├── 005577.txt │ │ ├── 005580.txt │ │ ├── 005581.txt │ │ ├── 005582.txt │ │ ├── 005584.txt │ │ ├── 005586.txt │ │ ├── 005587.txt │ │ ├── 005588.txt │ │ ├── 005589.txt │ │ ├── 005590.txt │ │ ├── 005595.txt │ │ ├── 005596.txt │ │ ├── 005600.txt │ │ ├── 005601.txt │ │ ├── 005602.txt │ │ ├── 005603.txt │ │ ├── 005610.txt │ │ ├── 005613.txt │ │ ├── 005616.txt │ │ ├── 005617.txt │ │ ├── 005618.txt │ │ ├── 005619.txt │ │ ├── 005623.txt │ │ ├── 005625.txt │ │ ├── 005630.txt │ │ ├── 005631.txt │ │ ├── 005633.txt │ │ ├── 005634.txt │ │ ├── 005635.txt │ │ ├── 005638.txt │ │ ├── 005639.txt │ │ ├── 005640.txt │ │ ├── 005642.txt │ │ ├── 005643.txt │ │ ├── 005649.txt │ │ ├── 005650.txt │ │ ├── 005652.txt │ │ ├── 005653.txt │ │ ├── 005656.txt │ │ ├── 005658.txt │ │ ├── 005659.txt │ │ ├── 005660.txt │ │ ├── 005662.txt │ │ ├── 005664.txt │ │ ├── 005668.txt │ │ ├── 005669.txt │ │ ├── 005672.txt │ │ ├── 005673.txt │ │ ├── 005676.txt │ │ ├── 005677.txt │ │ ├── 005680.txt │ │ ├── 005683.txt │ │ ├── 005685.txt │ │ ├── 005687.txt │ │ ├── 005689.txt │ │ ├── 005695.txt │ │ ├── 005698.txt │ │ ├── 005699.txt │ │ ├── 005700.txt │ │ ├── 005703.txt │ │ ├── 005704.txt │ │ ├── 005706.txt │ │ ├── 005707.txt │ │ ├── 005708.txt │ │ ├── 005709.txt │ │ ├── 005712.txt │ │ ├── 005713.txt │ │ ├── 005714.txt │ │ ├── 005717.txt │ │ ├── 005724.txt │ │ ├── 005725.txt │ │ ├── 005727.txt │ │ ├── 005728.txt │ │ ├── 005729.txt │ │ ├── 005731.txt │ │ ├── 005735.txt │ │ ├── 005736.txt │ │ ├── 005739.txt │ │ ├── 005740.txt │ │ ├── 005741.txt │ │ ├── 005743.txt │ │ ├── 005744.txt │ │ ├── 005745.txt │ │ ├── 005746.txt │ │ ├── 005747.txt │ │ ├── 005751.txt │ │ ├── 005754.txt │ │ ├── 005757.txt │ │ ├── 005760.txt │ │ ├── 005762.txt │ │ ├── 005763.txt │ │ ├── 005765.txt │ │ ├── 005777.txt │ │ ├── 005782.txt │ │ ├── 005783.txt │ │ ├── 005784.txt │ │ ├── 005785.txt │ │ ├── 005786.txt │ │ ├── 005787.txt │ │ ├── 005790.txt │ │ ├── 005793.txt │ │ ├── 005794.txt │ │ ├── 005796.txt │ │ ├── 005800.txt │ │ ├── 005801.txt │ │ ├── 005803.txt │ │ ├── 005805.txt │ │ ├── 005806.txt │ │ ├── 005807.txt │ │ ├── 005811.txt │ │ ├── 005812.txt │ │ ├── 005818.txt │ │ ├── 005819.txt │ │ ├── 005820.txt │ │ ├── 005821.txt │ │ ├── 005822.txt │ │ ├── 005826.txt │ │ ├── 005827.txt │ │ ├── 005829.txt │ │ ├── 005834.txt │ │ ├── 005839.txt │ │ ├── 005840.txt │ │ ├── 005841.txt │ │ ├── 005843.txt │ │ ├── 005852.txt │ │ ├── 005854.txt │ │ ├── 005855.txt │ │ ├── 005856.txt │ │ ├── 005857.txt │ │ ├── 005859.txt │ │ ├── 005864.txt │ │ ├── 005869.txt │ │ ├── 005873.txt │ │ ├── 005876.txt │ │ ├── 005878.txt │ │ ├── 005879.txt │ │ ├── 005881.txt │ │ ├── 005882.txt │ │ ├── 005883.txt │ │ ├── 005885.txt │ │ ├── 005887.txt │ │ ├── 005889.txt │ │ ├── 005892.txt │ │ ├── 005893.txt │ │ ├── 005894.txt │ │ ├── 005899.txt │ │ ├── 005900.txt │ │ ├── 005901.txt │ │ ├── 005903.txt │ │ ├── 005905.txt │ │ ├── 005906.txt │ │ ├── 005907.txt │ │ ├── 005909.txt │ │ ├── 005910.txt │ │ ├── 005911.txt │ │ ├── 005912.txt │ │ ├── 005913.txt │ │ ├── 005914.txt │ │ ├── 005916.txt │ │ ├── 005917.txt │ │ ├── 005918.txt │ │ ├── 005919.txt │ │ ├── 005921.txt │ │ ├── 005922.txt │ │ ├── 005923.txt │ │ ├── 005925.txt │ │ ├── 005926.txt │ │ ├── 005927.txt │ │ ├── 005931.txt │ │ ├── 005933.txt │ │ ├── 005935.txt │ │ ├── 005938.txt │ │ ├── 005939.txt │ │ ├── 005944.txt │ │ ├── 005947.txt │ │ ├── 005948.txt │ │ ├── 005949.txt │ │ ├── 005952.txt │ │ ├── 005955.txt │ │ ├── 005958.txt │ │ ├── 005961.txt │ │ ├── 005962.txt │ │ ├── 005963.txt │ │ ├── 005965.txt │ │ ├── 005969.txt │ │ ├── 005970.txt │ │ ├── 005972.txt │ │ ├── 005975.txt │ │ ├── 005978.txt │ │ ├── 005981.txt │ │ ├── 005982.txt │ │ ├── 005984.txt │ │ ├── 005985.txt │ │ ├── 005986.txt │ │ ├── 005988.txt │ │ ├── 005994.txt │ │ ├── 005996.txt │ │ ├── 005997.txt │ │ ├── 005999.txt │ │ ├── 006001.txt │ │ ├── 006002.txt │ │ ├── 006003.txt │ │ ├── 006005.txt │ │ ├── 006008.txt │ │ ├── 006009.txt │ │ ├── 006010.txt │ │ ├── 006012.txt │ │ ├── 006013.txt │ │ ├── 006014.txt │ │ ├── 006016.txt │ │ ├── 006023.txt │ │ ├── 006024.txt │ │ ├── 006026.txt │ │ ├── 006027.txt │ │ ├── 006028.txt │ │ ├── 006029.txt │ │ ├── 006030.txt │ │ ├── 006031.txt │ │ ├── 006033.txt │ │ ├── 006034.txt │ │ ├── 006036.txt │ │ ├── 006038.txt │ │ ├── 006039.txt │ │ ├── 006041.txt │ │ ├── 006042.txt │ │ ├── 006043.txt │ │ ├── 006044.txt │ │ ├── 006045.txt │ │ ├── 006046.txt │ │ ├── 006047.txt │ │ ├── 006048.txt │ │ ├── 006050.txt │ │ ├── 006052.txt │ │ ├── 006054.txt │ │ ├── 006057.txt │ │ ├── 006058.txt │ │ ├── 006060.txt │ │ ├── 006061.txt │ │ ├── 006062.txt │ │ ├── 006063.txt │ │ ├── 006066.txt │ │ ├── 006067.txt │ │ ├── 006068.txt │ │ ├── 006070.txt │ │ ├── 006071.txt │ │ ├── 006074.txt │ │ ├── 006075.txt │ │ ├── 006077.txt │ │ ├── 006078.txt │ │ ├── 006083.txt │ │ ├── 006085.txt │ │ ├── 006086.txt │ │ ├── 006087.txt │ │ ├── 006088.txt │ │ ├── 006093.txt │ │ ├── 006095.txt │ │ ├── 006096.txt │ │ ├── 006097.txt │ │ ├── 006098.txt │ │ ├── 006100.txt │ │ ├── 006102.txt │ │ ├── 006103.txt │ │ ├── 006106.txt │ │ ├── 006107.txt │ │ ├── 006110.txt │ │ ├── 006114.txt │ │ ├── 006115.txt │ │ ├── 006116.txt │ │ ├── 006117.txt │ │ ├── 006118.txt │ │ ├── 006121.txt │ │ ├── 006122.txt │ │ ├── 006123.txt │ │ ├── 006125.txt │ │ ├── 006126.txt │ │ ├── 006127.txt │ │ ├── 006130.txt │ │ ├── 006133.txt │ │ ├── 006136.txt │ │ ├── 006139.txt │ │ ├── 006144.txt │ │ ├── 006146.txt │ │ ├── 006148.txt │ │ ├── 006151.txt │ │ ├── 006152.txt │ │ ├── 006154.txt │ │ ├── 006156.txt │ │ ├── 006161.txt │ │ ├── 006163.txt │ │ ├── 006165.txt │ │ ├── 006167.txt │ │ ├── 006168.txt │ │ ├── 006169.txt │ │ ├── 006173.txt │ │ ├── 006176.txt │ │ ├── 006177.txt │ │ ├── 006182.txt │ │ ├── 006185.txt │ │ ├── 006186.txt │ │ ├── 006187.txt │ │ ├── 006190.txt │ │ ├── 006194.txt │ │ ├── 006195.txt │ │ ├── 006196.txt │ │ ├── 006198.txt │ │ ├── 006202.txt │ │ ├── 006204.txt │ │ ├── 006208.txt │ │ ├── 006210.txt │ │ ├── 006213.txt │ │ ├── 006215.txt │ │ ├── 006219.txt │ │ ├── 006222.txt │ │ ├── 006227.txt │ │ ├── 006228.txt │ │ ├── 006229.txt │ │ ├── 006232.txt │ │ ├── 006233.txt │ │ ├── 006238.txt │ │ ├── 006240.txt │ │ ├── 006244.txt │ │ ├── 006246.txt │ │ ├── 006247.txt │ │ ├── 006249.txt │ │ ├── 006250.txt │ │ ├── 006258.txt │ │ ├── 006263.txt │ │ ├── 006265.txt │ │ ├── 006266.txt │ │ ├── 006267.txt │ │ ├── 006269.txt │ │ ├── 006270.txt │ │ ├── 006272.txt │ │ ├── 006273.txt │ │ ├── 006274.txt │ │ ├── 006275.txt │ │ ├── 006276.txt │ │ ├── 006278.txt │ │ ├── 006280.txt │ │ ├── 006282.txt │ │ ├── 006286.txt │ │ ├── 006287.txt │ │ ├── 006288.txt │ │ ├── 006297.txt │ │ ├── 006300.txt │ │ ├── 006301.txt │ │ ├── 006302.txt │ │ ├── 006305.txt │ │ ├── 006306.txt │ │ ├── 006312.txt │ │ ├── 006314.txt │ │ ├── 006315.txt │ │ ├── 006316.txt │ │ ├── 006317.txt │ │ ├── 006321.txt │ │ ├── 006322.txt │ │ ├── 006324.txt │ │ ├── 006331.txt │ │ ├── 006332.txt │ │ ├── 006333.txt │ │ ├── 006334.txt │ │ ├── 006338.txt │ │ ├── 006339.txt │ │ ├── 006340.txt │ │ ├── 006342.txt │ │ ├── 006343.txt │ │ ├── 006344.txt │ │ ├── 006345.txt │ │ ├── 006348.txt │ │ ├── 006349.txt │ │ ├── 006351.txt │ │ ├── 006353.txt │ │ ├── 006354.txt │ │ ├── 006355.txt │ │ ├── 006356.txt │ │ ├── 006357.txt │ │ ├── 006360.txt │ │ ├── 006364.txt │ │ ├── 006366.txt │ │ ├── 006368.txt │ │ ├── 006369.txt │ │ ├── 006370.txt │ │ ├── 006371.txt │ │ ├── 006372.txt │ │ ├── 006377.txt │ │ ├── 006379.txt │ │ ├── 006380.txt │ │ ├── 006381.txt │ │ ├── 006385.txt │ │ ├── 006386.txt │ │ ├── 006388.txt │ │ ├── 006391.txt │ │ ├── 006393.txt │ │ ├── 006394.txt │ │ ├── 006395.txt │ │ ├── 006396.txt │ │ ├── 006403.txt │ │ ├── 006405.txt │ │ ├── 006406.txt │ │ ├── 006407.txt │ │ ├── 006409.txt │ │ ├── 006410.txt │ │ ├── 006411.txt │ │ ├── 006415.txt │ │ ├── 006416.txt │ │ ├── 006417.txt │ │ ├── 006420.txt │ │ ├── 006423.txt │ │ ├── 006424.txt │ │ ├── 006425.txt │ │ ├── 006426.txt │ │ ├── 006427.txt │ │ ├── 006433.txt │ │ ├── 006434.txt │ │ ├── 006435.txt │ │ ├── 006436.txt │ │ ├── 006437.txt │ │ ├── 006439.txt │ │ ├── 006440.txt │ │ ├── 006441.txt │ │ ├── 006442.txt │ │ ├── 006444.txt │ │ ├── 006445.txt │ │ ├── 006446.txt │ │ ├── 006451.txt │ │ ├── 006452.txt │ │ ├── 006453.txt │ │ ├── 006454.txt │ │ ├── 006462.txt │ │ ├── 006464.txt │ │ ├── 006465.txt │ │ ├── 006468.txt │ │ ├── 006469.txt │ │ ├── 006470.txt │ │ ├── 006472.txt │ │ ├── 006473.txt │ │ ├── 006474.txt │ │ ├── 006475.txt │ │ ├── 006477.txt │ │ ├── 006478.txt │ │ ├── 006481.txt │ │ ├── 006482.txt │ │ ├── 006483.txt │ │ ├── 006484.txt │ │ ├── 006486.txt │ │ ├── 006488.txt │ │ ├── 006491.txt │ │ ├── 006493.txt │ │ ├── 006496.txt │ │ ├── 006497.txt │ │ ├── 006498.txt │ │ ├── 006503.txt │ │ ├── 006505.txt │ │ ├── 006506.txt │ │ ├── 006507.txt │ │ ├── 006508.txt │ │ ├── 006512.txt │ │ ├── 006514.txt │ │ ├── 006515.txt │ │ ├── 006516.txt │ │ ├── 006517.txt │ │ ├── 006519.txt │ │ ├── 006520.txt │ │ ├── 006521.txt │ │ ├── 006524.txt │ │ ├── 006525.txt │ │ ├── 006529.txt │ │ ├── 006530.txt │ │ ├── 006531.txt │ │ ├── 006532.txt │ │ ├── 006533.txt │ │ ├── 006534.txt │ │ ├── 006535.txt │ │ ├── 006537.txt │ │ ├── 006540.txt │ │ ├── 006542.txt │ │ ├── 006548.txt │ │ ├── 006549.txt │ │ ├── 006551.txt │ │ ├── 006553.txt │ │ ├── 006555.txt │ │ ├── 006556.txt │ │ ├── 006558.txt │ │ ├── 006560.txt │ │ ├── 006561.txt │ │ ├── 006563.txt │ │ ├── 006565.txt │ │ ├── 006568.txt │ │ ├── 006569.txt │ │ ├── 006570.txt │ │ ├── 006574.txt │ │ ├── 006576.txt │ │ ├── 006577.txt │ │ ├── 006578.txt │ │ ├── 006581.txt │ │ ├── 006582.txt │ │ ├── 006583.txt │ │ ├── 006586.txt │ │ ├── 006588.txt │ │ ├── 006590.txt │ │ ├── 006592.txt │ │ ├── 006593.txt │ │ ├── 006595.txt │ │ ├── 006596.txt │ │ ├── 006597.txt │ │ ├── 006602.txt │ │ ├── 006603.txt │ │ ├── 006604.txt │ │ ├── 006611.txt │ │ ├── 006612.txt │ │ ├── 006613.txt │ │ ├── 006614.txt │ │ ├── 006618.txt │ │ ├── 006623.txt │ │ ├── 006624.txt │ │ ├── 006625.txt │ │ ├── 006626.txt │ │ ├── 006628.txt │ │ ├── 006629.txt │ │ ├── 006632.txt │ │ ├── 006633.txt │ │ ├── 006634.txt │ │ ├── 006636.txt │ │ ├── 006637.txt │ │ ├── 006638.txt │ │ ├── 006641.txt │ │ ├── 006643.txt │ │ ├── 006647.txt │ │ ├── 006649.txt │ │ ├── 006650.txt │ │ ├── 006651.txt │ │ ├── 006655.txt │ │ ├── 006656.txt │ │ ├── 006658.txt │ │ ├── 006659.txt │ │ ├── 006660.txt │ │ ├── 006664.txt │ │ ├── 006666.txt │ │ ├── 006667.txt │ │ ├── 006669.txt │ │ ├── 006670.txt │ │ ├── 006674.txt │ │ ├── 006676.txt │ │ ├── 006677.txt │ │ ├── 006678.txt │ │ ├── 006679.txt │ │ ├── 006682.txt │ │ ├── 006685.txt │ │ ├── 006686.txt │ │ ├── 006692.txt │ │ ├── 006693.txt │ │ ├── 006694.txt │ │ ├── 006695.txt │ │ ├── 006696.txt │ │ ├── 006698.txt │ │ ├── 006701.txt │ │ ├── 006703.txt │ │ ├── 006709.txt │ │ ├── 006710.txt │ │ ├── 006711.txt │ │ ├── 006712.txt │ │ ├── 006713.txt │ │ ├── 006714.txt │ │ ├── 006715.txt │ │ ├── 006719.txt │ │ ├── 006720.txt │ │ ├── 006723.txt │ │ ├── 006725.txt │ │ ├── 006726.txt │ │ ├── 006729.txt │ │ ├── 006731.txt │ │ ├── 006732.txt │ │ ├── 006733.txt │ │ ├── 006734.txt │ │ ├── 006737.txt │ │ ├── 006738.txt │ │ ├── 006741.txt │ │ ├── 006744.txt │ │ ├── 006745.txt │ │ ├── 006747.txt │ │ ├── 006751.txt │ │ ├── 006752.txt │ │ ├── 006753.txt │ │ ├── 006754.txt │ │ ├── 006755.txt │ │ ├── 006756.txt │ │ ├── 006758.txt │ │ ├── 006759.txt │ │ ├── 006760.txt │ │ ├── 006761.txt │ │ ├── 006762.txt │ │ ├── 006764.txt │ │ ├── 006765.txt │ │ ├── 006767.txt │ │ ├── 006768.txt │ │ ├── 006770.txt │ │ ├── 006771.txt │ │ ├── 006772.txt │ │ ├── 006773.txt │ │ ├── 006777.txt │ │ ├── 006778.txt │ │ ├── 006780.txt │ │ ├── 006781.txt │ │ ├── 006782.txt │ │ ├── 006783.txt │ │ ├── 006785.txt │ │ ├── 006786.txt │ │ ├── 006789.txt │ │ ├── 006791.txt │ │ ├── 006792.txt │ │ ├── 006794.txt │ │ ├── 006796.txt │ │ ├── 006797.txt │ │ ├── 006798.txt │ │ ├── 006800.txt │ │ ├── 006803.txt │ │ ├── 006804.txt │ │ ├── 006806.txt │ │ ├── 006807.txt │ │ ├── 006808.txt │ │ ├── 006811.txt │ │ ├── 006812.txt │ │ ├── 006813.txt │ │ ├── 006815.txt │ │ ├── 006816.txt │ │ ├── 006818.txt │ │ ├── 006819.txt │ │ ├── 006822.txt │ │ ├── 006828.txt │ │ ├── 006829.txt │ │ ├── 006832.txt │ │ ├── 006833.txt │ │ ├── 006836.txt │ │ ├── 006837.txt │ │ ├── 006841.txt │ │ ├── 006843.txt │ │ ├── 006844.txt │ │ ├── 006847.txt │ │ ├── 006849.txt │ │ ├── 006850.txt │ │ ├── 006852.txt │ │ ├── 006853.txt │ │ ├── 006854.txt │ │ ├── 006855.txt │ │ ├── 006856.txt │ │ ├── 006858.txt │ │ ├── 006860.txt │ │ ├── 006862.txt │ │ ├── 006863.txt │ │ ├── 006866.txt │ │ ├── 006868.txt │ │ ├── 006870.txt │ │ ├── 006872.txt │ │ ├── 006873.txt │ │ ├── 006874.txt │ │ ├── 006876.txt │ │ ├── 006879.txt │ │ ├── 006881.txt │ │ ├── 006882.txt │ │ ├── 006884.txt │ │ ├── 006885.txt │ │ ├── 006887.txt │ │ ├── 006889.txt │ │ ├── 006891.txt │ │ ├── 006895.txt │ │ ├── 006897.txt │ │ ├── 006898.txt │ │ ├── 006899.txt │ │ ├── 006900.txt │ │ ├── 006901.txt │ │ ├── 006903.txt │ │ ├── 006906.txt │ │ ├── 006907.txt │ │ ├── 006908.txt │ │ ├── 006910.txt │ │ ├── 006913.txt │ │ ├── 006914.txt │ │ ├── 006917.txt │ │ ├── 006922.txt │ │ ├── 006925.txt │ │ ├── 006928.txt │ │ ├── 006930.txt │ │ ├── 006936.txt │ │ ├── 006937.txt │ │ ├── 006938.txt │ │ ├── 006942.txt │ │ ├── 006943.txt │ │ ├── 006944.txt │ │ ├── 006945.txt │ │ ├── 006948.txt │ │ ├── 006950.txt │ │ ├── 006953.txt │ │ ├── 006954.txt │ │ ├── 006955.txt │ │ ├── 006956.txt │ │ ├── 006959.txt │ │ ├── 006960.txt │ │ ├── 006962.txt │ │ ├── 006964.txt │ │ ├── 006968.txt │ │ ├── 006971.txt │ │ ├── 006973.txt │ │ ├── 006977.txt │ │ ├── 006978.txt │ │ ├── 006980.txt │ │ ├── 006981.txt │ │ ├── 006982.txt │ │ ├── 006987.txt │ │ ├── 006989.txt │ │ ├── 006990.txt │ │ ├── 006992.txt │ │ ├── 006994.txt │ │ ├── 006997.txt │ │ ├── 006999.txt │ │ ├── 007000.txt │ │ ├── 007003.txt │ │ ├── 007005.txt │ │ ├── 007006.txt │ │ ├── 007008.txt │ │ ├── 007010.txt │ │ ├── 007011.txt │ │ ├── 007012.txt │ │ ├── 007014.txt │ │ ├── 007015.txt │ │ ├── 007016.txt │ │ ├── 007019.txt │ │ ├── 007022.txt │ │ ├── 007023.txt │ │ ├── 007026.txt │ │ ├── 007027.txt │ │ ├── 007028.txt │ │ ├── 007029.txt │ │ ├── 007030.txt │ │ ├── 007031.txt │ │ ├── 007032.txt │ │ ├── 007033.txt │ │ ├── 007034.txt │ │ ├── 007037.txt │ │ ├── 007038.txt │ │ ├── 007042.txt │ │ ├── 007043.txt │ │ ├── 007047.txt │ │ ├── 007048.txt │ │ ├── 007049.txt │ │ ├── 007052.txt │ │ ├── 007053.txt │ │ ├── 007055.txt │ │ ├── 007056.txt │ │ ├── 007059.txt │ │ ├── 007061.txt │ │ ├── 007063.txt │ │ ├── 007065.txt │ │ ├── 007067.txt │ │ ├── 007068.txt │ │ ├── 007069.txt │ │ ├── 007071.txt │ │ ├── 007072.txt │ │ ├── 007074.txt │ │ ├── 007076.txt │ │ ├── 007078.txt │ │ ├── 007079.txt │ │ ├── 007080.txt │ │ ├── 007081.txt │ │ ├── 007082.txt │ │ ├── 007083.txt │ │ ├── 007084.txt │ │ ├── 007085.txt │ │ ├── 007087.txt │ │ ├── 007088.txt │ │ ├── 007089.txt │ │ ├── 007091.txt │ │ ├── 007095.txt │ │ ├── 007098.txt │ │ ├── 007100.txt │ │ ├── 007103.txt │ │ ├── 007109.txt │ │ ├── 007110.txt │ │ ├── 007112.txt │ │ ├── 007115.txt │ │ ├── 007117.txt │ │ ├── 007119.txt │ │ ├── 007120.txt │ │ ├── 007122.txt │ │ ├── 007125.txt │ │ ├── 007130.txt │ │ ├── 007131.txt │ │ ├── 007132.txt │ │ ├── 007133.txt │ │ ├── 007135.txt │ │ ├── 007136.txt │ │ ├── 007138.txt │ │ ├── 007139.txt │ │ ├── 007144.txt │ │ ├── 007145.txt │ │ ├── 007146.txt │ │ ├── 007149.txt │ │ ├── 007154.txt │ │ ├── 007157.txt │ │ ├── 007158.txt │ │ ├── 007161.txt │ │ ├── 007162.txt │ │ ├── 007163.txt │ │ ├── 007164.txt │ │ ├── 007165.txt │ │ ├── 007166.txt │ │ ├── 007168.txt │ │ ├── 007169.txt │ │ ├── 007172.txt │ │ ├── 007174.txt │ │ ├── 007176.txt │ │ ├── 007177.txt │ │ ├── 007178.txt │ │ ├── 007180.txt │ │ ├── 007182.txt │ │ ├── 007183.txt │ │ ├── 007187.txt │ │ ├── 007194.txt │ │ ├── 007198.txt │ │ ├── 007199.txt │ │ ├── 007200.txt │ │ ├── 007201.txt │ │ ├── 007202.txt │ │ ├── 007204.txt │ │ ├── 007205.txt │ │ ├── 007207.txt │ │ ├── 007208.txt │ │ ├── 007210.txt │ │ ├── 007212.txt │ │ ├── 007214.txt │ │ ├── 007215.txt │ │ ├── 007217.txt │ │ ├── 007219.txt │ │ ├── 007221.txt │ │ ├── 007225.txt │ │ ├── 007227.txt │ │ ├── 007229.txt │ │ ├── 007230.txt │ │ ├── 007232.txt │ │ ├── 007233.txt │ │ ├── 007235.txt │ │ ├── 007238.txt │ │ ├── 007240.txt │ │ ├── 007242.txt │ │ ├── 007244.txt │ │ ├── 007246.txt │ │ ├── 007247.txt │ │ ├── 007252.txt │ │ ├── 007253.txt │ │ ├── 007255.txt │ │ ├── 007256.txt │ │ ├── 007258.txt │ │ ├── 007260.txt │ │ ├── 007261.txt │ │ ├── 007262.txt │ │ ├── 007265.txt │ │ ├── 007266.txt │ │ ├── 007267.txt │ │ ├── 007271.txt │ │ ├── 007272.txt │ │ ├── 007273.txt │ │ ├── 007274.txt │ │ ├── 007275.txt │ │ ├── 007277.txt │ │ ├── 007278.txt │ │ ├── 007279.txt │ │ ├── 007280.txt │ │ ├── 007283.txt │ │ ├── 007284.txt │ │ ├── 007287.txt │ │ ├── 007288.txt │ │ ├── 007289.txt │ │ ├── 007290.txt │ │ ├── 007291.txt │ │ ├── 007292.txt │ │ ├── 007294.txt │ │ ├── 007299.txt │ │ ├── 007300.txt │ │ ├── 007302.txt │ │ ├── 007303.txt │ │ ├── 007304.txt │ │ ├── 007309.txt │ │ ├── 007310.txt │ │ ├── 007311.txt │ │ ├── 007315.txt │ │ ├── 007318.txt │ │ ├── 007319.txt │ │ ├── 007322.txt │ │ ├── 007323.txt │ │ ├── 007325.txt │ │ ├── 007326.txt │ │ ├── 007327.txt │ │ ├── 007329.txt │ │ ├── 007330.txt │ │ ├── 007331.txt │ │ ├── 007336.txt │ │ ├── 007337.txt │ │ ├── 007339.txt │ │ ├── 007342.txt │ │ ├── 007343.txt │ │ ├── 007344.txt │ │ ├── 007345.txt │ │ ├── 007347.txt │ │ ├── 007349.txt │ │ ├── 007350.txt │ │ ├── 007351.txt │ │ ├── 007352.txt │ │ ├── 007353.txt │ │ ├── 007359.txt │ │ ├── 007360.txt │ │ ├── 007364.txt │ │ ├── 007369.txt │ │ ├── 007371.txt │ │ ├── 007374.txt │ │ ├── 007375.txt │ │ ├── 007376.txt │ │ ├── 007377.txt │ │ ├── 007380.txt │ │ ├── 007381.txt │ │ ├── 007382.txt │ │ ├── 007383.txt │ │ ├── 007384.txt │ │ ├── 007385.txt │ │ ├── 007389.txt │ │ ├── 007391.txt │ │ ├── 007395.txt │ │ ├── 007396.txt │ │ ├── 007397.txt │ │ ├── 007398.txt │ │ ├── 007401.txt │ │ ├── 007402.txt │ │ ├── 007403.txt │ │ ├── 007405.txt │ │ ├── 007407.txt │ │ ├── 007409.txt │ │ ├── 007410.txt │ │ ├── 007411.txt │ │ ├── 007412.txt │ │ ├── 007413.txt │ │ ├── 007415.txt │ │ ├── 007416.txt │ │ ├── 007419.txt │ │ ├── 007420.txt │ │ ├── 007421.txt │ │ ├── 007422.txt │ │ ├── 007423.txt │ │ ├── 007424.txt │ │ ├── 007426.txt │ │ ├── 007430.txt │ │ ├── 007433.txt │ │ ├── 007434.txt │ │ ├── 007435.txt │ │ ├── 007436.txt │ │ ├── 007437.txt │ │ ├── 007439.txt │ │ ├── 007440.txt │ │ ├── 007442.txt │ │ ├── 007445.txt │ │ ├── 007447.txt │ │ ├── 007448.txt │ │ ├── 007449.txt │ │ ├── 007450.txt │ │ ├── 007453.txt │ │ ├── 007456.txt │ │ ├── 007458.txt │ │ ├── 007462.txt │ │ ├── 007463.txt │ │ ├── 007464.txt │ │ ├── 007466.txt │ │ ├── 007467.txt │ │ ├── 007468.txt │ │ ├── 007469.txt │ │ ├── 007470.txt │ │ ├── 007473.txt │ │ ├── 007475.txt │ │ ├── 007477.txt │ │ ├── 007478.txt │ │ └── 007480.txt │ │ ├── plot │ │ ├── car_detection.eps │ │ ├── car_detection.gp │ │ ├── car_detection.pdf │ │ ├── car_detection.png │ │ ├── car_detection.txt │ │ ├── car_detection_3d.eps │ │ ├── car_detection_3d.gp │ │ ├── car_detection_3d.pdf │ │ ├── car_detection_3d.png │ │ ├── car_detection_3d.txt │ │ ├── car_detection_ground.eps │ │ ├── car_detection_ground.gp │ │ ├── car_detection_ground.pdf │ │ ├── car_detection_ground.png │ │ ├── car_detection_ground.txt │ │ ├── car_orientation.eps │ │ ├── car_orientation.gp │ │ ├── car_orientation.pdf │ │ ├── car_orientation.png │ │ └── car_orientation.txt │ │ ├── stats_car_detection.txt │ │ ├── stats_car_detection_3d.txt │ │ ├── stats_car_detection_ground.txt │ │ ├── stats_car_orientation.txt │ │ ├── stats_cyclist_detection.txt │ │ ├── stats_cyclist_detection_ground.txt │ │ ├── stats_pedestrian_detection.txt │ │ └── stats_pedestrian_detection_ground.txt ├── lesson6.md ├── readme.md └── 运行结果目录.png ├── lesson7_ISS ├── ISS.py ├── evaluate_object_3d_offline.cpp ├── image │ ├── 3.PNG │ ├── 墙面.PNG │ ├── 椅子.PNG │ └── 飞机.PNG └── readme.md ├── lesson8_description ├── FPFH.py ├── ISS.py ├── SHOT.py ├── image │ ├── air_plane.png │ ├── air_plane_FPFH.png │ └── air_plane_FPFH_similarity.png └── readme.md ├── lesson9_registration.7z └── lesson9_registration ├── FPFH.py ├── ICP.py ├── ICPOpen3d.py └── ISS.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 3D-point-cloud-course 2 | -------------------------------------------------------------------------------- /data0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/data0.txt -------------------------------------------------------------------------------- /data1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/data1.txt -------------------------------------------------------------------------------- /lesson1/0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson1/0.jpg -------------------------------------------------------------------------------- /lesson1/image_pca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson1/image_pca.py -------------------------------------------------------------------------------- /lesson1/output_image/range_hood_0001_normals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson1/output_image/range_hood_0001_normals.png -------------------------------------------------------------------------------- /lesson1/output_image/range_hood_0001_original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson1/output_image/range_hood_0001_original.png -------------------------------------------------------------------------------- /lesson1/output_image/range_hood_0001_pca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson1/output_image/range_hood_0001_pca.png -------------------------------------------------------------------------------- /lesson1/output_image/range_hood_0001_sampled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson1/output_image/range_hood_0001_sampled.png -------------------------------------------------------------------------------- /lesson1/output_image/sofa_0001_normals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson1/output_image/sofa_0001_normals.png -------------------------------------------------------------------------------- /lesson1/output_image/sofa_0001_original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson1/output_image/sofa_0001_original.png -------------------------------------------------------------------------------- /lesson1/output_image/sofa_0001_pca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson1/output_image/sofa_0001_pca.png -------------------------------------------------------------------------------- /lesson1/output_image/sofa_0001_sampled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson1/output_image/sofa_0001_sampled.png -------------------------------------------------------------------------------- /lesson1/pca_normal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson1/pca_normal.py -------------------------------------------------------------------------------- /lesson1/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson1/readme.txt -------------------------------------------------------------------------------- /lesson1/unsample_bilateral.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson1/unsample_bilateral.py -------------------------------------------------------------------------------- /lesson1/voxel_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson1/voxel_filter.py -------------------------------------------------------------------------------- /lesson1/voxel_grid_downsampling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson1/voxel_grid_downsampling.py -------------------------------------------------------------------------------- /lesson2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson2/.gitignore -------------------------------------------------------------------------------- /lesson2/000000.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson2/000000.bin -------------------------------------------------------------------------------- /lesson2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson2/LICENSE -------------------------------------------------------------------------------- /lesson2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson2/README.md -------------------------------------------------------------------------------- /lesson2/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson2/benchmark.py -------------------------------------------------------------------------------- /lesson2/kdtree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson2/kdtree.py -------------------------------------------------------------------------------- /lesson2/octree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson2/octree.py -------------------------------------------------------------------------------- /lesson2/picture/kdtree_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson2/picture/kdtree_result.png -------------------------------------------------------------------------------- /lesson2/picture/octree_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson2/picture/octree_result.png -------------------------------------------------------------------------------- /lesson2/result_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson2/result_set.py -------------------------------------------------------------------------------- /lesson3_cluster/GMM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson3_cluster/GMM.py -------------------------------------------------------------------------------- /lesson3_cluster/KMeans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson3_cluster/KMeans.py -------------------------------------------------------------------------------- /lesson3_cluster/Spectral.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson3_cluster/Spectral.py -------------------------------------------------------------------------------- /lesson3_cluster/compare_cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson3_cluster/compare_cluster.py -------------------------------------------------------------------------------- /lesson3_cluster/image/compare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson3_cluster/image/compare.png -------------------------------------------------------------------------------- /lesson3_cluster/image/gmm_scatter after gmm.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson3_cluster/image/gmm_scatter after gmm.PNG -------------------------------------------------------------------------------- /lesson3_cluster/image/gmm_scatter before gmm.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson3_cluster/image/gmm_scatter before gmm.PNG -------------------------------------------------------------------------------- /lesson4_remove_ground/clustering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson4_remove_ground/clustering.py -------------------------------------------------------------------------------- /lesson5_deepLearning/code/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson5_deepLearning/code/dataset.py -------------------------------------------------------------------------------- /lesson5_deepLearning/code/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson5_deepLearning/code/model.py -------------------------------------------------------------------------------- /lesson5_deepLearning/code/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson5_deepLearning/code/test.py -------------------------------------------------------------------------------- /lesson5_deepLearning/code/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson5_deepLearning/code/train.py -------------------------------------------------------------------------------- /lesson5_deepLearning/output/latest.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson5_deepLearning/output/latest.pth -------------------------------------------------------------------------------- /lesson5_deepLearning/output/traced_model.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson5_deepLearning/output/traced_model.pt -------------------------------------------------------------------------------- /lesson5_deepLearning/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson5_deepLearning/readme.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/PointRCNN.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/PointRCNN.pth -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/CMakeLists.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/README.md -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/mail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/mail.h -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000001.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000002.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000002.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000004.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000004.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000005.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000005.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000006.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000006.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000008.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000008.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000015.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000015.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000019.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000019.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000020.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000020.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000021.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000021.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000023.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000023.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000024.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000024.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000025.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000025.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000027.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000027.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000028.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000031.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000031.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000033.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000033.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000035.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000035.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000037.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000037.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000039.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000039.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000040.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000040.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000042.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000042.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000047.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000047.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000048.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000048.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000050.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000050.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000052.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000052.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000053.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000053.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000058.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000059.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000059.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000061.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000061.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000062.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000062.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000063.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000063.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000065.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000065.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000066.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000066.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000076.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000076.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000077.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000077.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000078.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000078.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000081.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000081.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000089.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000089.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000090.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000090.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000093.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000093.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000094.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000094.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000098.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000098.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000102.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000102.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000104.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000104.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000106.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000106.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000107.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000107.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000108.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000108.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000116.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000116.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000117.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000117.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000118.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000118.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000122.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000122.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000124.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000124.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000126.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000126.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000128.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000128.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000132.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000132.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000134.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000134.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000135.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000135.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000137.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000137.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000139.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000139.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000140.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000140.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000143.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000143.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000147.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000147.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000151.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000151.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000152.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000152.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000153.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000153.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000156.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000156.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000159.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000159.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000161.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000161.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000167.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000167.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000168.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000168.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000169.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000169.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000170.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000170.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000173.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000173.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000174.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000174.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000175.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000175.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000181.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000181.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000182.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000182.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000183.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000183.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000186.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000186.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000187.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000187.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000188.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000188.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000190.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000190.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000191.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000191.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000192.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000192.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000194.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000194.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000195.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000195.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000196.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000196.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000197.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000197.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000199.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000199.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000201.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000201.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000203.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000203.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000204.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000204.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000207.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000207.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000211.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000211.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000212.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000212.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000213.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000213.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000216.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000216.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000218.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000218.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000223.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000223.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000224.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000224.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000226.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000226.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000229.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000229.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000230.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000230.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000231.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000231.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000234.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000234.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000235.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000235.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000236.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000236.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000237.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000237.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000239.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000239.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000242.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000242.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000246.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000246.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000247.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000247.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000248.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000248.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000249.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000249.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000250.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000250.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000251.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000251.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000252.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000252.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000260.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000260.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000262.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000262.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000263.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000265.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000265.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000266.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000266.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000268.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000268.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000269.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000269.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000270.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000270.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000272.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000272.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000273.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000273.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000278.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000278.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000279.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000279.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000281.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000281.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000283.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000283.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000284.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000284.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000289.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000289.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000290.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000290.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000291.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000291.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000293.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000293.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000297.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000297.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000301.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000301.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000302.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000302.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000305.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000305.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000307.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000307.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000308.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000308.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000309.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000309.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000311.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000311.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000312.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000312.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000314.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000314.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000315.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000315.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000319.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000319.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000320.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000320.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000321.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000321.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000323.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000323.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000324.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000324.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000327.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000328.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000328.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000329.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000329.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000332.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000332.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000333.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000333.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000335.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000335.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000336.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000336.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000340.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000340.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000341.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000341.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000343.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000343.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000345.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000345.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000346.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000346.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000347.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000347.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000350.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000350.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000351.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000351.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000352.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000352.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000354.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000354.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000355.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000355.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000356.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000356.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000357.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000357.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000359.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000359.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000360.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000360.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000361.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000361.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000362.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000362.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000365.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000365.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000366.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000366.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000369.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000369.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000370.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000370.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000372.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000372.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000373.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000373.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000376.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000376.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000377.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000377.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000378.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000378.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000379.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000379.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000381.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000381.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000382.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000382.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000383.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000383.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000385.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000385.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000386.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000386.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000388.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000388.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000391.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000391.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000392.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000392.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000393.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000393.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000394.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000394.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000395.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000395.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000396.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000396.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000397.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000397.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000398.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000399.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000399.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000401.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000401.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000402.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000402.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000403.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000403.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000404.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000404.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000407.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000407.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000408.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000408.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000409.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000409.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000413.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000413.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000414.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000414.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000415.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000415.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000419.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000419.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000420.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000420.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000422.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000422.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000427.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000427.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000428.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000428.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000429.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000429.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000430.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000430.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000436.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000436.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000437.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000437.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000440.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000440.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000443.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000443.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000446.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000446.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000448.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000448.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000450.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000450.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000451.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000451.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000452.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000452.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000453.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000453.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000454.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000454.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000455.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000455.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000457.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000457.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000459.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000459.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000463.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000463.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000468.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000468.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000469.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000469.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000472.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000472.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000473.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000473.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000475.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000475.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000476.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000476.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000477.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000478.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000478.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000479.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000479.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000480.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000480.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000481.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000481.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000485.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000485.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000486.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000486.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000489.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000489.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000491.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000491.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000492.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000492.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000493.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000493.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000494.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000494.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000495.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000495.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000496.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000496.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000498.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000499.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000499.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000503.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000503.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000504.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000504.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000506.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000506.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000508.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000508.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000509.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000509.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000510.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000510.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000512.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000512.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000515.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000515.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000517.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000517.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000519.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000519.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000521.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000521.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000524.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000524.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000527.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000527.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000528.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000528.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000530.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000530.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000533.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000533.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000536.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000536.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000541.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000541.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000542.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000542.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000543.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000543.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000545.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000545.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000546.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000546.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000548.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000548.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000551.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000551.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000554.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000554.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000555.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000555.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000558.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000558.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000559.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000559.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000560.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000560.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000561.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000561.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000564.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000564.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000566.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000566.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000567.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000567.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000568.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000568.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000569.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000569.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000571.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000571.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000572.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000572.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000581.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000581.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000583.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000583.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000588.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000588.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000589.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000589.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000590.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000590.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000591.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000591.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000595.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000595.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000600.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000600.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000601.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000601.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000604.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000604.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000610.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000610.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000611.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000611.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000612.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000612.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000613.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000613.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000614.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000614.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000615.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000615.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000618.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000618.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000619.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000619.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000620.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000620.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000624.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000624.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000625.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000626.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000626.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000628.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000628.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000630.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000630.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000634.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000634.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000635.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000635.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000636.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000636.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000639.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000639.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000642.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000642.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000644.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000644.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000645.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000645.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000647.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000647.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000648.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000648.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000650.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000650.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000655.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000655.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000657.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000657.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000658.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000658.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000659.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000659.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000660.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000660.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000667.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000667.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000669.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000669.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000670.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000670.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000674.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000674.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000677.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000677.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000679.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000679.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000682.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000682.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000683.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000683.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000684.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000684.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000691.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000691.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000692.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000692.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000694.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000694.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000696.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000696.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000698.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000698.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000699.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000699.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000700.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000700.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000702.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000702.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000704.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000704.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000706.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000706.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000708.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000708.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000716.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000716.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000717.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000717.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000718.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000718.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000721.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000721.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000722.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000722.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000725.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000725.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000727.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000727.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000728.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000728.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000729.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000729.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000731.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000731.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000734.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000734.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000736.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000736.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000737.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000737.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000740.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000740.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000741.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000741.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000745.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000745.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000746.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000746.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000748.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000748.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000750.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000750.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000751.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000751.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000752.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000752.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000754.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000754.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000756.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000756.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000761.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000761.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000765.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000765.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000766.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000766.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000767.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000767.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000768.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000768.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000769.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000771.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000771.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000772.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000772.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000773.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000773.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000774.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000774.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000778.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000778.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000779.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000779.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000782.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000782.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000790.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000790.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000792.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000792.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000795.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000795.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000798.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000798.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000800.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000800.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000801.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000801.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000802.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000802.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000803.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000803.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000804.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000804.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000805.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000805.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000806.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000806.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000807.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000807.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000809.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000809.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000810.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000810.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000811.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000811.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000812.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000812.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000816.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000816.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000819.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000819.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000823.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000823.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000826.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000831.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000831.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000837.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000837.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000838.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000838.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000840.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000840.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000841.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000843.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000843.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000844.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000844.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000847.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000847.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000848.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000848.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000849.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000849.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000850.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000850.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000852.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000852.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000854.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000854.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000859.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000859.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000862.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000862.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000863.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000863.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000869.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000869.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000873.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000873.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000874.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000874.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000875.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000875.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000876.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000876.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000877.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000877.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000878.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000878.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000879.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000879.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000881.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000881.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000884.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000884.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000885.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000885.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000889.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000889.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000893.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000893.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000894.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000894.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000897.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000897.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000899.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000899.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000904.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000904.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000907.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000907.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000909.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000909.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000911.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000911.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000912.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000912.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000915.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000915.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000916.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000916.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000917.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000917.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000920.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000920.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000922.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000922.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000923.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000923.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000926.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000926.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000928.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000928.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000930.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000930.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000931.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000931.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000932.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000932.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000938.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000938.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000939.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000939.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000940.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000940.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000942.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000942.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000943.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000943.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000944.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000944.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000948.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000948.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000949.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000949.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000952.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000952.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000953.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000953.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000956.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000956.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000958.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000958.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000961.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000961.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000963.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000963.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000964.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000964.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000966.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000967.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000967.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000969.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000969.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000970.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000970.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000971.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000971.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000973.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000973.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000974.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000974.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000976.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000976.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000979.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000979.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000981.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000981.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000983.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000983.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000984.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000984.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000985.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000985.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000986.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000986.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000988.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000988.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000991.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000991.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/000999.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/000999.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001002.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001002.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001006.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001006.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001007.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001007.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001008.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001008.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001010.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001010.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001011.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001011.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001012.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001012.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001013.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001013.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001014.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001014.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001015.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001015.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001018.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001018.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001019.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001019.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001021.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001021.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001022.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001022.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001025.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001025.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001026.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001026.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001027.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001027.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001035.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001035.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001037.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001039.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001039.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001042.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001042.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001043.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001043.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001046.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001046.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001050.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001050.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001051.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001051.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001053.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001053.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001054.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001054.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001055.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001055.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001058.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001058.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001063.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001063.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001065.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001065.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001066.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001066.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001067.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001067.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001068.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001068.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001069.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001069.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001070.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001070.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001071.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001071.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001075.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001075.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001076.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001076.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001077.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001077.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001078.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001078.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001083.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001083.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001084.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001084.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001086.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001086.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001088.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001088.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001089.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001089.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001094.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001094.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001095.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001095.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001096.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001096.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001097.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001097.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001099.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001099.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001101.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001101.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001102.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001102.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001104.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001104.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001106.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001106.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001107.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001107.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001108.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001108.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001111.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001111.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001113.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001114.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001114.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001115.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001115.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001116.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001116.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001118.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001118.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001120.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001120.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001123.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001123.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001125.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001125.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001127.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001127.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001129.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001129.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001131.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001131.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001132.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001132.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001133.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001133.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001134.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001134.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001135.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001135.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001136.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001136.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001138.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001138.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001139.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001139.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001140.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001140.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001141.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001141.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001143.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001143.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001144.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001144.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001145.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001145.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001147.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001147.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001148.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001148.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001149.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001149.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001150.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001150.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001152.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001152.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001153.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001153.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001154.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001154.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001155.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001155.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001158.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001158.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001162.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001162.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001163.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001163.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001167.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001167.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001172.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001172.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001173.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001173.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001176.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001176.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001177.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001177.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001178.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001178.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001179.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001179.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001180.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001180.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001182.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001182.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001183.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001183.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001187.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001187.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001188.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001188.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001189.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001191.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001191.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001192.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001192.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001193.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001193.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001194.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001194.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001195.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001195.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001198.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001198.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001199.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001199.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001203.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001203.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001206.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001206.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001207.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001207.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001213.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001213.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001214.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001214.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001216.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001216.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001217.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001217.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001218.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001218.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001221.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001221.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001222.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001222.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001224.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001224.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001225.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001225.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001226.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001226.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001228.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001228.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001230.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001230.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001232.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001232.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001234.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001234.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001235.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001235.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001236.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001236.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001237.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001237.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001239.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001239.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001241.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001241.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001242.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001243.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001243.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001244.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001244.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001245.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001245.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001246.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001246.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001249.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001249.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001251.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001251.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001252.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001252.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001253.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001253.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001254.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001254.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001255.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001255.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001257.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001257.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001259.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001259.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001260.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001260.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001261.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001261.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001263.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001263.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001265.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001265.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001266.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/kitti_eval/pred/data/001266.txt -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001441.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001477.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001654.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001667.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/001984.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/002036.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/002159.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/002287.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/002299.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/002310.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/002334.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/002613.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/002686.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/002693.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/002735.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/002761.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/002811.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/002875.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/002881.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/003054.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/003221.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/003232.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/003247.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/003269.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/003295.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/003315.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/003421.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/003571.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/004021.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/004323.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/004429.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/004469.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/004508.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/004588.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/004591.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/004679.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/004724.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/004797.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/005218.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/005226.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/005341.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/005429.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/005683.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/005735.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/005743.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/005744.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/005746.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/005801.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/005806.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/005812.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/005931.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/005958.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/006151.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/006152.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/006240.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/006411.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/006583.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/006656.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/006741.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/006804.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/006807.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/006819.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/006832.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/007072.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/007084.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/007110.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/007272.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/007278.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/007288.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/007310.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/007351.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/007381.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/007448.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/kitti_eval/pred/data/007477.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lesson6_pointRCNN/lesson6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/lesson6.md -------------------------------------------------------------------------------- /lesson6_pointRCNN/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/readme.md -------------------------------------------------------------------------------- /lesson6_pointRCNN/运行结果目录.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson6_pointRCNN/运行结果目录.png -------------------------------------------------------------------------------- /lesson7_ISS/ISS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson7_ISS/ISS.py -------------------------------------------------------------------------------- /lesson7_ISS/evaluate_object_3d_offline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson7_ISS/evaluate_object_3d_offline.cpp -------------------------------------------------------------------------------- /lesson7_ISS/image/3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson7_ISS/image/3.PNG -------------------------------------------------------------------------------- /lesson7_ISS/image/墙面.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson7_ISS/image/墙面.PNG -------------------------------------------------------------------------------- /lesson7_ISS/image/椅子.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson7_ISS/image/椅子.PNG -------------------------------------------------------------------------------- /lesson7_ISS/image/飞机.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson7_ISS/image/飞机.PNG -------------------------------------------------------------------------------- /lesson7_ISS/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson7_ISS/readme.md -------------------------------------------------------------------------------- /lesson8_description/FPFH.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson8_description/FPFH.py -------------------------------------------------------------------------------- /lesson8_description/ISS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson8_description/ISS.py -------------------------------------------------------------------------------- /lesson8_description/SHOT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson8_description/SHOT.py -------------------------------------------------------------------------------- /lesson8_description/image/air_plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson8_description/image/air_plane.png -------------------------------------------------------------------------------- /lesson8_description/image/air_plane_FPFH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson8_description/image/air_plane_FPFH.png -------------------------------------------------------------------------------- /lesson8_description/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson8_description/readme.md -------------------------------------------------------------------------------- /lesson9_registration.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson9_registration.7z -------------------------------------------------------------------------------- /lesson9_registration/FPFH.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson9_registration/FPFH.py -------------------------------------------------------------------------------- /lesson9_registration/ICP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson9_registration/ICP.py -------------------------------------------------------------------------------- /lesson9_registration/ICPOpen3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson9_registration/ICPOpen3d.py -------------------------------------------------------------------------------- /lesson9_registration/ISS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZC413074/course_of_3d_points/HEAD/lesson9_registration/ISS.py --------------------------------------------------------------------------------