This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Faster R-CNN Results | |
| --------------------- | |
| --------------------- | |
| Pure VOC2007: | |
| ----------------------------------------------------------- | |
| Overlap_Coef:0, Top_300, 0.334 secs/image, car mAP: 0.7618 | |
| Overlap_Coef:0, Top_50, 0.260 secs/image, car mAP: 0.7624 | |
| ------------------------------------------------------------ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import numpy as np | |
| Z_ROT = lambda theta: np.array([[np.cos(theta), -np.sin(theta), 0], | |
| [np.sin(theta), np.cos(theta), 0], | |
| [0, 0, 1]]) | |
| def ConstructHomogeneousMatrices(phi_z, dx, dy, dz): | |
| Rot_Mat = Z_ROT(phi_z) | |
| Lidar_Camera_Base_Change = np.zeros(shape=(3, 3)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| adastec-oyucedag@adastec-oyucedag:~$ rosrun trafficlight_recognizer region_tlr_ssd _image_raw_topic:=/avt_camera/image_raw _network_definition_file:=/home/adastec-oyucedag/ssdcaffe/models/models_VGGNet_VOC0712Plus_SSD_512x512_ft/models/VGGNet/VOC0712Plus/SSD_512x512_ft/deploy.prototxt _pretrained_model_file:=/home/adastec-oyucedag/ssdcaffe/models/models_VGGNet_VOC0712Plus_SSD_512x512_ft/models/VGGNet/VOC0712Plus/SSD_512x512_ft/VGG_VOC0712Plus_SSD_512x512_ft_iter_160000.caffemodel _use_gpu:=true | |
| WARNING: Logging before InitGoogleLogging() is written to STDERR | |
| I0316 11:36:55.824791 15369 upgrade_proto.cpp:67] Attempting to upgrade input file specified using deprecated input fields: /home/adastec-oyucedag/ssdcaffe/models/models_VGGNet_VOC0712Plus_SSD_512x512_ft/models/VGGNet/VOC0712Plus/SSD_512x512_ft/deploy.prototxt | |
| I0316 11:36:55.824843 15369 upgrade_proto.cpp:70] Successfully upgraded file specified using deprecated input fields. | |
| W0316 11:36:55.824848 15369 upgrade_proto.cpp:72] Note that future Caffe release |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ## Refer to http://caffe.berkeleyvision.org/installation.html | |
| # Contributions simplifying and improving our build system are welcome! | |
| # cuDNN acceleration switch (uncomment to build with cuDNN). | |
| USE_CUDNN := 1 | |
| # CPU-only switch (uncomment to build without GPU support). | |
| # CPU_ONLY := 1 | |
| # uncomment to disable IO dependencies and corresponding data layers |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| After running this command: roslaunch runtime_manager runtime_manager.launch | |
| Newly opened terminal can display the following error: | |
| top: bad delay interval '0.1' | |
| Exception in thread Thread-8: | |
| Traceback (most recent call last): | |
| File "/usr/lib/python2.7/threading.py", line 801, in __bootstrap_inner | |
| self.run() | |
| File "/usr/lib/python2.7/threading.py", line 754, in run | |
| self.__target(*self.__args, **self.__kwargs) | |
| File "/home/aw2/autoware.ai/install/runtime_manager/lib/runtime_manager/runtime_manager_dialog.py", line 1408, in top_cmd_th |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| aw2@aw2:~/autoware.ai$ AUTOWARE_COMPILE_WITH_CUDA=1 colcon build --cmake-args -DCMAKE_BUILD_TYPE=Release | |
| [0.195s] ERROR:colcon.colcon_core.entry_point:Exception loading extension 'colcon_core.package_identification.python': No module named 'setuptools.config', 'setuptools' needs to be at least version 30.3.0, if a newer version is not available from the package manager use 'pip3 install -U setuptools' to update to the latest version | |
| Traceback (most recent call last): | |
| File "/usr/lib/python3/dist-packages/colcon_core/entry_point.py", line 98, in load_entry_points | |
| extension_type = load_entry_point(entry_point) | |
| File "/usr/lib/python3/dist-packages/colcon_core/entry_point.py", line 140, in load_entry_point | |
| return entry_point.load() | |
| File "/usr/lib/python3/dist-packages/pkg_resources/__init__.py", line 2229, in load | |
| return self.resolve() | |
| File "/usr/lib/python3/dist-packages/pkg_resources/__init__.py", line 2235, in resolve |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from selenium import webdriver | |
| from selenium.webdriver.common.keys import Keys | |
| from bs4 import BeautifulSoup | |
| import re | |
| import pandas as pd | |
| import os | |
| import time | |
| import requests as req | |
| import cv2 | |
| import json |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function exportToJsonFile(jsonData) { | |
| let dataStr = JSON.stringify(jsonData); | |
| let dataUri = | |
| "data:application/json;charset=utf-8," + encodeURIComponent(dataStr); | |
| let exportFileDefaultName = "data.json"; | |
| let linkElement = document.createElement("a"); | |
| linkElement.setAttribute("href", dataUri); | |
| linkElement.setAttribute("download", exportFileDefaultName); |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.