Skip to content
This repository has been archived by the owner on Aug 7, 2024. It is now read-only.

Replace 'person_reid_msg_ptr_' with 'person_reid_topic_' [issue #125] #126

Merged
merged 4 commits into from
Mar 15, 2021
Merged
Changes from 1 commit
Commits
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
6 changes: 3 additions & 3 deletions dynamic_vino_lib/src/outputs/ros_service_output.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ void Outputs::RosServiceOutput::setServiceResponse(
boost::shared_ptr<people_msgs::ReidentificationSrv::Response> response)
{
slog::info << "in Reidentification service::Response ...";
if (person_reid_topic_ != nullptr)
if (person_reid_msg_ptr_ != nullptr)
LewisLiuPub marked this conversation as resolved.
Show resolved Hide resolved
{
response->reidentification.reidentified_vector = person_reid_msg_ptr_->reidentified_vector;
}
Expand Down Expand Up @@ -130,6 +130,6 @@ void Outputs::RosServiceOutput::clearData()
age_gender_topic_ = nullptr;
emotions_topic_ = nullptr;
headpose_topic_ = nullptr;
segmented_object_topic_ = nullptr;
person_reid_topic_ = nullptr;
// segmented_object_topic_ = nullptr;
person_reid_msg_ptr_ = nullptr;
}