Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add lidar apollo instance segmentation package #115

Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
ea00eb5
release v0.4.0
mitsudome-r Sep 18, 2020
d985824
check if gdown command exists (#707)
harihitode Jul 21, 2020
577b8a6
Fix/cublas dependency (#849)
yukkysaito Aug 28, 2020
3641de2
remove ROS1 packages temporarily
mitsudome-r Sep 29, 2020
d857275
Revert "remove ROS1 packages temporarily"
mitsudome-r Oct 8, 2020
6a13768
add COLCON_IGNORE to ros1 packages
mitsudome-r Oct 8, 2020
0744066
Rename launch files to launch.xml (#28)
nnmm Oct 15, 2020
d561a63
Port lidar apollo instance segmentation (#98)
mitsudome-r Nov 19, 2020
c719a1e
Rename h files to hpp (#142)
nnmm Dec 3, 2020
378387a
Adjust copyright notice on 532 out of 699 source files (#143)
nnmm Dec 3, 2020
7113d6d
Use quotes for includes where appropriate (#144)
nnmm Dec 7, 2020
40d3d14
Run uncrustify on the entire Pilot.Auto codebase (#151)
nnmm Dec 8, 2020
7197a56
[tensorrt_yolo3][lidar_apollo_instance_segmentation] fix objection re…
mitsudome-r Dec 15, 2020
697eae8
adding linters to lidar_apollo_instance_segmentation (#173)
nik-tier4 Dec 23, 2020
b55eeb4
Ros2 v0.8.0 lidar apollo instance segmentation (#256)
wep21 Jan 17, 2021
a0eb299
add use_sim-time option (#454)
tkimura4 Mar 26, 2021
487d5cf
Format launch files (#1219)
kenji-miyake Mar 30, 2021
6007d0e
fix reliability (#1222)
tkimura4 Apr 1, 2021
6306688
Unify Apache-2.0 license name (#1242)
kmiya Apr 15, 2021
bc2c48b
Remove use_sim_time for set_parameter (#1260)
wep21 Apr 26, 2021
50110e2
Perception components (#1368)
wep21 May 26, 2021
814fccc
[lidar_apollo_instance_segmentation]: Change subscriber queue size(5 …
wep21 Jul 6, 2021
8f63b47
Add pre-commit (#1560)
KeisukeShima Jul 19, 2021
d2ae4a3
Fix build error with TensorRT v8 (#1612)
wep21 Jul 19, 2021
5b0e31f
Add markdownlint and prettier (#1661)
kenji-miyake Jul 20, 2021
2032d98
Fix MD029 (#1813)
kenji-miyake Aug 9, 2021
45a0eb1
Fix -Wunused-parameter (#1836)
kenji-miyake Aug 14, 2021
0a094ea
suppress warnings in perception directory (#1866)
h-ohta Aug 16, 2021
a946fc1
Ignore -Wdeprecated-declarations in lidar_apollo_instance_segmentatio…
kenji-miyake Aug 17, 2021
ef7fe71
Refactor shape estimation for detection by tracking (#1861)
yukkysaito Aug 30, 2021
9cebdb1
add sort-package-xml hook in pre-commit (#1881)
KeisukeShima Sep 9, 2021
6312820
Detection by tracker (#1910)
yukkysaito Sep 29, 2021
58ffe4d
Change formatter to clang-format and black (#2332)
kenji-miyake Nov 2, 2021
c78382e
Add COLCON_IGNORE (#500)
kenji-miyake Nov 4, 2021
63c9543
Port lidar apollo instance segmentation to .auto (#548)
wep21 Nov 10, 2021
83568cc
Update document for lidar apollo instance segmentation (#597)
wep21 Nov 15, 2021
99ad02c
Sync .auto branch with the latest branch in internal repository (#691)
wep21 Nov 18, 2021
9513dca
Merge branch 'tier4/proposal' into 1-add-lidar-apollo-instance-segmen…
1222-takeshi Dec 6, 2021
3bc0cb0
Merge branch 'tier4/proposal' into 1-add-lidar-apollo-instance-segmen…
1222-takeshi Dec 6, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Use quotes for includes where appropriate (#144)
* Use quotes for includes where appropriate

* Fix lint tests

* Make tests pass hopefully
  • Loading branch information
nnmm authored and YoheiMishina committed Dec 1, 2021
commit 7113d6d1712c8d33d41316eb1d4c588c7efbcd4e
Original file line number Diff line number Diff line change
Expand Up @@ -46,19 +46,19 @@
#ifndef CLUSTER2D_H
#define CLUSTER2D_H

#include <pcl/point_types.h>
#include <pcl/point_cloud.h>
#include <pcl/PointIndices.h>
#include "pcl/point_types.h"
#include "pcl/point_cloud.h"
#include "pcl/PointIndices.h"
#include <memory>
#include <vector>

#include "disjoint_set.h"
#include "util.h"

#include <autoware_perception_msgs/msg/dynamic_object_with_feature.hpp>
#include <autoware_perception_msgs/msg/dynamic_object_with_feature_array.hpp>
#include "autoware_perception_msgs/msg/dynamic_object_with_feature.hpp"
#include "autoware_perception_msgs/msg/dynamic_object_with_feature_array.hpp"

#include <std_msgs/msg/header.hpp>
#include "std_msgs/msg/header.hpp"

enum MetaType {
META_UNKNOWN,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
// limitations under the License.

#pragma once
#include <rclcpp/rclcpp.hpp>
#include "rclcpp/rclcpp.hpp"
#include "autoware_perception_msgs/msg/dynamic_object_with_feature_array.hpp"

class Debugger
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@
#include "feature_generator.h"
#include "lidar_apollo_instance_segmentation/node.hpp"

#include <tf2_ros/buffer_interface.h>
#include <tf2_ros/transform_listener.h>
#include <tf2_eigen/tf2_eigen.h>
#include <pcl/common/transforms.h>
#include "tf2_ros/buffer_interface.h"
#include "tf2_ros/transform_listener.h"
#include "tf2_eigen/tf2_eigen.h"
#include "pcl/common/transforms.h"
#include <memory>

class LidarApolloInstanceSegmentation : public LidarInstanceSegmentationInterface
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
// limitations under the License.

#pragma once
#include <pcl/point_types.h>
#include <pcl/point_cloud.h>
#include "pcl/point_types.h"
#include "pcl/point_cloud.h"
#include <memory>
#include "lidar_apollo_instance_segmentation/feature_map.hpp"
#include "util.h"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#pragma once
#include <rclcpp/rclcpp.hpp>
#include "rclcpp/rclcpp.hpp"

#include <autoware_perception_msgs/msg/dynamic_object_with_feature_array.hpp>
#include <sensor_msgs/msg/point_cloud2.hpp>
#include "autoware_perception_msgs/msg/dynamic_object_with_feature_array.hpp"
#include "sensor_msgs/msg/point_cloud2.hpp"
#include <memory>

#include "lidar_apollo_instance_segmentation/debugger.hpp"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
#ifndef __TRT_UTILS_H_
#define __TRT_UTILS_H_

#include <cudnn.h>
#include "cudnn.h"
#include <algorithm>
#include <iostream>
#include <vector>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
* SOFTWARE.
*/
#include "TrtNet.hpppp"
#include <cublas_v2.h>
#include <cudnn.h>
#include "cublas_v2.h"
#include "cudnn.h"
#include <string.h>
#include <time.h>
#include <cassert>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@
*****************************************************************************/

#include "lidar_apollo_instance_segmentation/cluster2d.hpp"
#include <tf2_geometry_msgs/tf2_geometry_msgs.h>
#include <pcl_conversions/pcl_conversions.h>
#include "tf2_geometry_msgs/tf2_geometry_msgs.h"
#include "pcl_conversions/pcl_conversions.h"

geometry_msgs::msg::Quaternion getQuaternionFromRPY(const double r, const double p, const double y){
tf2::Quaternion q;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@
// limitations under the License.

#include "lidar_apollo_instance_segmentation/debugger.hpp"
#include <pcl/point_types.h>
#include <pcl/point_cloud.h>
#include <pcl_conversions/pcl_conversions.h>
#include <sensor_msgs/msg/point_cloud2.hpp>
#include "pcl/point_types.h"
#include "pcl/point_cloud.h"
#include "pcl_conversions/pcl_conversions.h"
#include "sensor_msgs/msg/point_cloud2.hpp"

Debugger::Debugger(rclcpp::Node * node)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@
// limitations under the License.

#include "lidar_apollo_instance_segmentation/detector.hpp"
#include <NvCaffeParser.h>
#include <NvInfer.h>
#include "NvCaffeParser.h"
#include "NvInfer.h"
#include "lidar_apollo_instance_segmentation/feature_map.hpp"
#include <pcl_conversions/pcl_conversions.h>
#include "pcl_conversions/pcl_conversions.h"

LidarApolloInstanceSegmentation::LidarApolloInstanceSegmentation(rclcpp::Node * node)
: node_(node),
Expand Down