#include <ros/ros.h>
#include <boost/thread.hpp>
#include <image_transport/image_transport.h>
#include <omronsentech_camera/GetSDKInfo.h>
#include <omronsentech_camera/GetLastError.h>
#include <omronsentech_camera/GetDeviceList.h>
#include <omronsentech_camera/WriteNodeFloat.h>
#include <omronsentech_camera/GetGenICamNodeInfo.h>
#include <omronsentech_camera/GetImageAcquisitionStatus.h>
#include <omronsentech_camera/EnableImageAcquisition.h>
#include <omronsentech_camera/EnableTrigger.h>
#include <omronsentech_camera/SendSoftTrigger.h>
Go to the source code of this file.
|
void | displaySDKInfo (ros::NodeHandle &n) |
|
std::string | getConnectedDeviceNamespace (ros::NodeHandle &n) |
|
int | getGain (ros::NodeHandle &n, std::string dev_ns, double &value, double &value_min, double &value_max) |
|
int | getLastError (ros::NodeHandle &n, std::string dev_ns) |
|
void | imageCallback (const sensor_msgs::ImageConstPtr &msg) |
|
bool | isImageAcquisitionEnabled (ros::NodeHandle &n, std::string dev_ns) |
|
int | main (int argc, char **argv) |
|
int | sendTrigger (ros::NodeHandle &n, std::string dev_ns) |
|
int | setGain (ros::NodeHandle &n, std::string dev_ns, double value) |
|
int | setImageAcquisition (ros::NodeHandle &n, std::string dev_ns, bool enabled) |
|
int | setTrigger (ros::NodeHandle &n, std::string dev_ns, bool enabled) |
|
#define SERVER_NODE "stcamera_node" |
#define TRIGGER_SELECTOR "FrameStart" |
#define TRIGGER_SOURCE "Software" |
int getGain |
( |
ros::NodeHandle & |
n, |
|
|
std::string |
dev_ns, |
|
|
double & |
value, |
|
|
double & |
value_min, |
|
|
double & |
value_max |
|
) |
| |
void imageCallback |
( |
const sensor_msgs::ImageConstPtr & |
msg | ) |
|
int main |
( |
int |
argc, |
|
|
char ** |
argv |
|
) |
| |
int setImageAcquisition |
( |
ros::NodeHandle & |
n, |
|
|
std::string |
dev_ns, |
|
|
bool |
enabled |
|
) |
| |