We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc9c2ac commit cd38cd3Copy full SHA for cd38cd3
src/capture.cpp
@@ -132,7 +132,14 @@ void acquisition::Capture::init_variables_register_to_ros() {
132
// Retrieve singleton reference to system object
133
ROS_INFO_STREAM("Creating system instance...");
134
system_ = System::GetInstance();
135
-
+
136
+ const LibraryVersion spinnakerLibraryVersion = system_->GetLibraryVersion();
137
+ ROS_INFO_STREAM("Spinnaker library version: "
138
+ << spinnakerLibraryVersion.major << "."
139
+ << spinnakerLibraryVersion.minor << "."
140
+ << spinnakerLibraryVersion.type << "."
141
+ << spinnakerLibraryVersion.build);
142
143
load_cameras();
144
145
//initializing the ros publisher
0 commit comments