Skip to content

Commit 228be2f

Browse files
feat(autoware_auto_perception_rviz_plugin)!: rename package to autoware_perception_rviz_plugin (#7221)
feat(autoware_auto_perception_rviz_plugin): rename package to autoware_perception_rviz_plugin Signed-off-by: Ryohsuke Mitsudome <ryohsuke.mitsudome@tier4.jp> Co-authored-by: Yukihiro Saito <yukky.saito@gmail.com>
1 parent dfd3c13 commit 228be2f

26 files changed

+132
-132
lines changed

.github/CODEOWNERS

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
### Automatically generated from package.xml ###
22
common/autoware_ad_api_specs/** isamu.takagi@tier4.jp ryohsuke.mitsudome@tier4.jp
33
common/autoware_auto_common/** opensource@apex.ai satoshi.ota@tier4.jp shumpei.wakabayashi@tier4.jp tomoya.kimura@tier4.jp
4-
common/autoware_auto_perception_rviz_plugin/** opensource@apex.ai satoshi.tanaka@tier4.jp shunsuke.miura@tier4.jp taiki.tanaka@tier4.jp takeshi.miura@tier4.jp yoshi.ri@tier4.jp
4+
common/autoware_perception_rviz_plugin/** opensource@apex.ai satoshi.tanaka@tier4.jp shunsuke.miura@tier4.jp taiki.tanaka@tier4.jp takeshi.miura@tier4.jp yoshi.ri@tier4.jp
55
common/autoware_auto_tf2/** jit.ray.c@gmail.com satoshi.ota@tier4.jp shumpei.wakabayashi@tier4.jp tomoya.kimura@tier4.jp
66
common/autoware_overlay_rviz_plugin/autoware_mission_details_overlay_rviz_plugin/** ahmed.ebrahim@leodrive.ai
77
common/autoware_overlay_rviz_plugin/autoware_overlay_rviz_plugin/** khalil@leodrive.ai

common/.pages

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ nav:
3131
- 'Introduction': common/tvm_utility
3232
- 'YOLOv2 Tiny Example': common/tvm_utility/tvm-utility-yolo-v2-tiny-tests
3333
- 'RVIZ2 Plugins':
34-
- 'autoware_auto_perception_rviz_plugin': common/autoware_auto_perception_rviz_plugin
34+
- 'autoware_perception_rviz_plugin': common/autoware_perception_rviz_plugin
3535
- 'autoware_overlay_rviz_plugin': common/autoware_overlay_rviz_plugin/autoware_overlay_rviz_plugin
3636
- 'autoware_mission_details_overlay_rviz_plugin': common/autoware_overlay_rviz_plugin/autoware_mission_details_overlay_rviz_plugin
3737
- 'bag_time_manager_rviz_plugin': common/bag_time_manager_rviz_plugin

common/autoware_auto_perception_rviz_plugin/include/autoware_auto_perception_rviz_plugin/visibility_control.hpp

-43
This file was deleted.

common/autoware_auto_perception_rviz_plugin/CMakeLists.txt common/autoware_perception_rviz_plugin/CMakeLists.txt

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cmake_minimum_required(VERSION 3.14)
2-
project(autoware_auto_perception_rviz_plugin)
2+
project(autoware_perception_rviz_plugin)
33

44
find_package(autoware_cmake REQUIRED)
55
autoware_package()
@@ -13,18 +13,18 @@ set(OD_PLUGIN_LIB_SRC
1313
)
1414

1515
set(OD_PLUGIN_LIB_HEADERS
16-
include/autoware_auto_perception_rviz_plugin/visibility_control.hpp
16+
include/autoware_perception_rviz_plugin/visibility_control.hpp
1717
)
1818
set(OD_PLUGIN_LIB_HEADERS_TO_WRAP
19-
include/autoware_auto_perception_rviz_plugin/object_detection/detected_objects_display.hpp
20-
include/autoware_auto_perception_rviz_plugin/object_detection/tracked_objects_display.hpp
21-
include/autoware_auto_perception_rviz_plugin/object_detection/predicted_objects_display.hpp
19+
include/autoware_perception_rviz_plugin/object_detection/detected_objects_display.hpp
20+
include/autoware_perception_rviz_plugin/object_detection/tracked_objects_display.hpp
21+
include/autoware_perception_rviz_plugin/object_detection/predicted_objects_display.hpp
2222
)
2323

2424
set(COMMON_HEADERS
25-
include/autoware_auto_perception_rviz_plugin/common/color_alpha_property.hpp
26-
include/autoware_auto_perception_rviz_plugin/object_detection/object_polygon_detail.hpp
27-
include/autoware_auto_perception_rviz_plugin/object_detection/object_polygon_display_base.hpp
25+
include/autoware_perception_rviz_plugin/common/color_alpha_property.hpp
26+
include/autoware_perception_rviz_plugin/object_detection/object_polygon_detail.hpp
27+
include/autoware_perception_rviz_plugin/object_detection/object_polygon_display_base.hpp
2828
)
2929

3030
set(COMMON_SRC
+5-5
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
14-
#ifndef AUTOWARE_AUTO_PERCEPTION_RVIZ_PLUGIN__COMMON__COLOR_ALPHA_PROPERTY_HPP_
15-
#define AUTOWARE_AUTO_PERCEPTION_RVIZ_PLUGIN__COMMON__COLOR_ALPHA_PROPERTY_HPP_
14+
#ifndef AUTOWARE_PERCEPTION_RVIZ_PLUGIN__COMMON__COLOR_ALPHA_PROPERTY_HPP_
15+
#define AUTOWARE_PERCEPTION_RVIZ_PLUGIN__COMMON__COLOR_ALPHA_PROPERTY_HPP_
1616

17-
#include "autoware_auto_perception_rviz_plugin/visibility_control.hpp"
17+
#include "autoware_perception_rviz_plugin/visibility_control.hpp"
1818

1919
#include <rviz_common/display.hpp>
2020
#include <rviz_common/properties/color_property.hpp>
@@ -31,7 +31,7 @@ namespace rviz_plugins
3131
namespace common
3232
{
3333
/// \brief Class to define Color and Alpha values as plugin properties
34-
class AUTOWARE_AUTO_PERCEPTION_RVIZ_PLUGIN_PUBLIC ColorAlphaProperty
34+
class AUTOWARE_PERCEPTION_RVIZ_PLUGIN_PUBLIC ColorAlphaProperty
3535
{
3636
public:
3737
/// \brief Constructor
@@ -56,4 +56,4 @@ class AUTOWARE_AUTO_PERCEPTION_RVIZ_PLUGIN_PUBLIC ColorAlphaProperty
5656
} // namespace rviz_plugins
5757
} // namespace autoware
5858

59-
#endif // AUTOWARE_AUTO_PERCEPTION_RVIZ_PLUGIN__COMMON__COLOR_ALPHA_PROPERTY_HPP_
59+
#endif // AUTOWARE_PERCEPTION_RVIZ_PLUGIN__COMMON__COLOR_ALPHA_PROPERTY_HPP_
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
14-
#ifndef AUTOWARE_AUTO_PERCEPTION_RVIZ_PLUGIN__OBJECT_DETECTION__DETECTED_OBJECTS_DISPLAY_HPP_
15-
#define AUTOWARE_AUTO_PERCEPTION_RVIZ_PLUGIN__OBJECT_DETECTION__DETECTED_OBJECTS_DISPLAY_HPP_
14+
#ifndef AUTOWARE_PERCEPTION_RVIZ_PLUGIN__OBJECT_DETECTION__DETECTED_OBJECTS_DISPLAY_HPP_
15+
#define AUTOWARE_PERCEPTION_RVIZ_PLUGIN__OBJECT_DETECTION__DETECTED_OBJECTS_DISPLAY_HPP_
1616

17-
#include "autoware_auto_perception_rviz_plugin/object_detection/object_polygon_display_base.hpp"
17+
#include "autoware_perception_rviz_plugin/object_detection/object_polygon_display_base.hpp"
1818

1919
#include <autoware_auto_perception_msgs/msg/detected_objects.hpp>
2020

@@ -25,7 +25,7 @@ namespace rviz_plugins
2525
namespace object_detection
2626
{
2727
/// \brief Class defining rviz plugin to visualize DetectedObjects
28-
class AUTOWARE_AUTO_PERCEPTION_RVIZ_PLUGIN_PUBLIC DetectedObjectsDisplay
28+
class AUTOWARE_PERCEPTION_RVIZ_PLUGIN_PUBLIC DetectedObjectsDisplay
2929
: public ObjectPolygonDisplayBase<autoware_auto_perception_msgs::msg::DetectedObjects>
3030
{
3131
Q_OBJECT
@@ -43,4 +43,4 @@ class AUTOWARE_AUTO_PERCEPTION_RVIZ_PLUGIN_PUBLIC DetectedObjectsDisplay
4343
} // namespace rviz_plugins
4444
} // namespace autoware
4545

46-
#endif // AUTOWARE_AUTO_PERCEPTION_RVIZ_PLUGIN__OBJECT_DETECTION__DETECTED_OBJECTS_DISPLAY_HPP_
46+
#endif // AUTOWARE_PERCEPTION_RVIZ_PLUGIN__OBJECT_DETECTION__DETECTED_OBJECTS_DISPLAY_HPP_

0 commit comments

Comments
 (0)