Skip to content

Commit

Permalink
Revert "[jsk_perception] change dual_fisheye_to_panorama to use senso…
Browse files Browse the repository at this point in the history
…r_msgs/PanoramaInfo"

This reverts commit 6fd5dae , until ros/common_msgs#171 has merged
  • Loading branch information
sktometometo authored and k-okada committed Jul 11, 2021
1 parent e62e4a2 commit 8fd2d65
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
#include <jsk_topic_tools/diagnostic_nodelet.h>
#include <sensor_msgs/Image.h>
#include <sensor_msgs/CameraInfo.h>
#include <sensor_msgs/PanoramaInfo.h>
#include <jsk_recognition_msgs/PanoramaInfo.h>

#include <message_filters/subscriber.h>
#include <message_filters/synchronizer.h>
Expand Down Expand Up @@ -80,7 +80,7 @@ namespace jsk_perception
ros::Publisher pub_panorama_image_;
ros::Publisher pub_panorama_info_;

sensor_msgs::PanoramaInfo msg_panorama_info_;
jsk_recognition_msgs::PanoramaInfo msg_panorama_info_;

bool enb_lc_;
bool enb_ra_;
Expand Down
4 changes: 2 additions & 2 deletions jsk_perception/src/dual_fisheye_to_panorama.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
#include <cv_bridge/cv_bridge.h>
#include <sensor_msgs/Image.h>
#include <sensor_msgs/image_encodings.h>
#include <sensor_msgs/PanoramaInfo.h>
#include <jsk_recognition_msgs/PanoramaInfo.h>
#include <algorithm>
#include <math.h>
#include <boost/assign.hpp>
Expand All @@ -61,7 +61,7 @@ namespace jsk_perception
ROS_INFO("save_unwarped: %7.3f", save_unwarped_?"true":"false");
ROS_INFO("mls_map_path : %s", mls_map_path_.c_str());
pub_panorama_image_ = advertise<sensor_msgs::Image>(*pnh_, "output", 1);
pub_panorama_info_ = advertise<sensor_msgs::PanoramaInfo>(*pnh_, "panorama_info", 1);
pub_panorama_info_ = advertise<jsk_recognition_msgs::PanoramaInfo>(*pnh_, "panorama_info", 1);

sticher_initialized_ = false;
srv_ = boost::make_shared <dynamic_reconfigure::Server<Config> > (*pnh_);
Expand Down

0 comments on commit 8fd2d65

Please sign in to comment.