2016-05-03 22:23:18 +00:00
|
|
|
#include "ros/ros.h"
|
|
|
|
#include <image_transport/image_transport.h>
|
|
|
|
#include <cv_bridge/cv_bridge.h>
|
|
|
|
#include <sensor_msgs/image_encodings.h>
|
2016-05-30 13:41:34 +00:00
|
|
|
#include <geometry_msgs/Twist.h>
|
2016-06-01 15:09:28 +00:00
|
|
|
#include <typeinfo>
|
2016-05-03 22:23:18 +00:00
|
|
|
|
|
|
|
#include <opencv/cv.h>
|
|
|
|
|
|
|
|
#include <sstream>
|
|
|
|
|
|
|
|
using namespace cv;
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
class Traite_image {
|
|
|
|
public:
|
2016-06-01 15:45:32 +00:00
|
|
|
const static int THRESHOLD_DETECT_SENSITIVITY = 10;
|
2016-06-01 15:09:28 +00:00
|
|
|
const static int BLUR_SIZE = 5;
|
2016-06-01 23:20:29 +00:00
|
|
|
const static int THRESHOLD_MOV = 5;
|
2016-06-02 16:05:29 +00:00
|
|
|
const static int MOVEMENT_THRES = 0.1;
|
2016-06-01 23:20:29 +00:00
|
|
|
|
|
|
|
|
2016-05-03 22:23:18 +00:00
|
|
|
Mat prev;
|
2016-05-17 22:46:44 +00:00
|
|
|
Mat last_T;
|
2016-05-03 22:23:18 +00:00
|
|
|
bool first = true;
|
2016-06-02 16:05:29 +00:00
|
|
|
|
|
|
|
// Features vectors
|
|
|
|
vector <Point2f> prev_ftr, cur_ftr;
|
|
|
|
|
|
|
|
// Downsize factor
|
2016-06-01 15:45:32 +00:00
|
|
|
int resize_f = 2;
|
2016-05-15 22:27:55 +00:00
|
|
|
|
|
|
|
int theObject[2] = {0,0};
|
|
|
|
Rect objectBoundingRectangle = Rect(0,0,0,0);
|
2016-05-03 22:23:18 +00:00
|
|
|
|
|
|
|
ros::NodeHandle n;
|
|
|
|
|
|
|
|
image_transport::ImageTransport it;
|
2016-05-30 13:41:34 +00:00
|
|
|
image_transport::Publisher pub_img;
|
|
|
|
ros::Publisher pub_cmd;
|
2016-05-03 22:23:18 +00:00
|
|
|
image_transport::Subscriber sub;
|
|
|
|
|
|
|
|
|
|
|
|
Traite_image() : n("~"),it(n) {
|
2016-05-30 13:41:34 +00:00
|
|
|
pub_img = it.advertise("/image_out", 1);
|
|
|
|
pub_cmd = n.advertise<geometry_msgs::Twist>("/vrep/drone/cmd_vel", 1);
|
2016-05-03 22:23:18 +00:00
|
|
|
sub = it.subscribe("/usb_cam/image_raw", 1, [this](const sensor_msgs::ImageConstPtr& img) -> void { this->on_image(img);},ros::VoidPtr(),image_transport::TransportHints("compressed"));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// This processes an image and publishes the result.
|
|
|
|
void on_image(const sensor_msgs::ImageConstPtr& msg) {
|
|
|
|
|
|
|
|
cv_bridge::CvImageConstPtr bridge_input;
|
|
|
|
try {
|
|
|
|
bridge_input = cv_bridge::toCvShare(msg,sensor_msgs::image_encodings::RGB8);
|
|
|
|
}
|
|
|
|
catch (Exception& e) {
|
|
|
|
std::ostringstream errstr;
|
|
|
|
errstr << "cv_bridge exception caught: " << e.what();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
//Mat& input = const_cast<Mat&>(bridge_input->image);
|
|
|
|
const Mat& input = bridge_input->image;
|
|
|
|
Mat next;
|
|
|
|
resize(input, next, Size(input.size().width/resize_f, input.size().height/resize_f));
|
2016-05-17 22:46:44 +00:00
|
|
|
Mat output;// = input.clone(); // (input.rows, input.cols, CV_32FC2);
|
2016-05-15 22:27:55 +00:00
|
|
|
//ROS_INFO("got input");
|
2016-05-03 22:23:18 +00:00
|
|
|
if (first) {
|
|
|
|
prev = next.clone();
|
|
|
|
first = false;
|
|
|
|
ROS_INFO("first done");
|
|
|
|
}
|
|
|
|
|
2016-05-24 09:57:41 +00:00
|
|
|
Mat next_stab;
|
|
|
|
stabiliseImg(prev, next, next_stab);
|
2016-05-30 12:30:13 +00:00
|
|
|
Rect myROI(next_stab.size().width/8, next_stab.size().height/8, next_stab.size().width*3/4, next_stab.size().height*3/4);
|
2016-05-27 16:13:59 +00:00
|
|
|
Mat next_stab_cropped = next_stab(myROI);
|
|
|
|
Mat prev_cropped = prev(myROI);
|
2016-06-02 16:05:29 +00:00
|
|
|
trackingOptFlow(prev_cropped, next_stab_cropped, output);
|
|
|
|
//searchForMovementOptFlow(prev_cropped, next_stab_cropped, output);
|
2016-05-17 22:46:44 +00:00
|
|
|
|
2016-05-03 22:23:18 +00:00
|
|
|
|
2016-05-30 13:41:34 +00:00
|
|
|
pub_img.publish(cv_bridge::CvImage(msg->header, "rgb8", output).toImageMsg());
|
2016-05-03 22:23:18 +00:00
|
|
|
// bridge_input is handled by a smart-pointer. No explicit delete needed.
|
2016-06-01 23:20:29 +00:00
|
|
|
|
2016-05-30 13:41:34 +00:00
|
|
|
droneTracking(Rect(Point(0,0), output.size()));
|
2016-05-03 22:23:18 +00:00
|
|
|
|
2016-05-15 22:27:55 +00:00
|
|
|
//ROS_INFO("pub");
|
2016-05-03 22:23:18 +00:00
|
|
|
|
|
|
|
prev = next.clone();
|
|
|
|
}
|
|
|
|
|
2016-05-15 22:27:55 +00:00
|
|
|
//int to string helper function
|
|
|
|
string intToString(int number){
|
|
|
|
|
|
|
|
//this function has a number input and string output
|
|
|
|
std::stringstream ss;
|
|
|
|
ss << number;
|
|
|
|
return ss.str();
|
|
|
|
}
|
|
|
|
|
2016-05-17 22:46:44 +00:00
|
|
|
void stabiliseImg(Mat prev, Mat cur, Mat &output){
|
2016-05-24 09:57:41 +00:00
|
|
|
Mat cur_grey, prev_grey;
|
2016-05-17 22:46:44 +00:00
|
|
|
cvtColor(cur, cur_grey, COLOR_BGR2GRAY);
|
|
|
|
cvtColor(prev, prev_grey, COLOR_BGR2GRAY);
|
|
|
|
|
|
|
|
// vector from prev to cur
|
|
|
|
vector <Point2f> prev_corner, cur_corner;
|
|
|
|
vector <Point2f> prev_corner2, cur_corner2;
|
|
|
|
vector <uchar> status;
|
|
|
|
vector <float> err;
|
|
|
|
|
|
|
|
goodFeaturesToTrack(prev_grey, prev_corner, 200, 0.01, 30);
|
|
|
|
calcOpticalFlowPyrLK(prev_grey, cur_grey, prev_corner, cur_corner, status, err);
|
|
|
|
|
|
|
|
// weed out bad matches
|
2016-06-02 16:05:29 +00:00
|
|
|
prev_ftr.clear();
|
|
|
|
cur_ftr.clear();
|
2016-05-17 22:46:44 +00:00
|
|
|
for(size_t i=0; i < status.size(); i++) {
|
|
|
|
if(status[i]) {
|
2016-06-02 16:05:29 +00:00
|
|
|
prev_ftr.push_back(prev_corner[i]);
|
|
|
|
cur_ftr.push_back(cur_corner[i]);
|
2016-05-17 22:46:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-02 16:05:29 +00:00
|
|
|
Mat T = estimateRigidTransform(prev_ftr, cur_ftr, true); // false = rigid transform, no scaling/shearing
|
2016-05-24 09:57:41 +00:00
|
|
|
|
|
|
|
if(T.data == NULL) {
|
|
|
|
last_T.copyTo(T);
|
|
|
|
}
|
|
|
|
T.copyTo(last_T);
|
|
|
|
|
|
|
|
Mat cur2;
|
|
|
|
|
|
|
|
warpAffine(cur, cur2, T, cur.size(),INTER_NEAREST|WARP_INVERSE_MAP);
|
|
|
|
|
|
|
|
cur2.copyTo(output);
|
2016-05-17 22:46:44 +00:00
|
|
|
}
|
|
|
|
|
2016-05-24 09:57:41 +00:00
|
|
|
void searchForMovement(Mat prev, Mat cur, Mat &output){
|
|
|
|
Mat cur_grey, prev_grey;
|
|
|
|
cur.copyTo(output);
|
|
|
|
cvtColor(prev, prev_grey, COLOR_BGR2GRAY);
|
|
|
|
cvtColor(cur, cur_grey, COLOR_BGR2GRAY);
|
|
|
|
|
|
|
|
// Subtract the 2 last frames and threshold them
|
|
|
|
Mat thres;
|
|
|
|
absdiff(prev_grey,cur_grey,thres);
|
2016-06-01 15:45:32 +00:00
|
|
|
threshold(thres, thres, THRESHOLD_DETECT_SENSITIVITY, 255, THRESH_BINARY);
|
2016-05-24 09:57:41 +00:00
|
|
|
// Blur to eliminate noise
|
|
|
|
blur(thres, thres, Size(BLUR_SIZE, BLUR_SIZE));
|
2016-06-01 15:45:32 +00:00
|
|
|
threshold(thres, thres, THRESHOLD_DETECT_SENSITIVITY, 255, THRESH_BINARY);
|
2016-05-24 09:57:41 +00:00
|
|
|
|
|
|
|
//notice how we use the '&' operator for objectDetected and output. This is because we wish
|
2016-05-15 22:27:55 +00:00
|
|
|
//to take the values passed into the function and manipulate them, rather than just working with a copy.
|
2016-05-24 09:57:41 +00:00
|
|
|
//eg. we draw to the output to be displayed in the main() function.
|
2016-05-15 22:27:55 +00:00
|
|
|
bool objectDetected = false;
|
|
|
|
Mat temp;
|
2016-05-24 09:57:41 +00:00
|
|
|
thres.copyTo(temp);
|
2016-05-15 22:27:55 +00:00
|
|
|
//these two vectors needed for output of findContours
|
|
|
|
vector< vector<Point> > contours;
|
|
|
|
vector<Vec4i> hierarchy;
|
|
|
|
//find contours of filtered image using openCV findContours function
|
|
|
|
//findContours(temp,contours,hierarchy,CV_RETR_CCOMP,CV_CHAIN_APPROX_SIMPLE );// retrieves all contours
|
|
|
|
findContours(temp,contours,hierarchy,CV_RETR_EXTERNAL,CV_CHAIN_APPROX_SIMPLE );// retrieves external contours
|
|
|
|
|
|
|
|
//if contours vector is not empty, we have found some objects
|
|
|
|
if(contours.size()>0)objectDetected=true;
|
|
|
|
else objectDetected = false;
|
|
|
|
|
|
|
|
if(objectDetected){
|
|
|
|
//the largest contour is found at the end of the contours vector
|
|
|
|
//we will simply assume that the biggest contour is the object we are looking for.
|
|
|
|
vector< vector<Point> > largestContourVec;
|
|
|
|
largestContourVec.push_back(contours.at(contours.size()-1));
|
|
|
|
//make a bounding rectangle around the largest contour then find its centroid
|
|
|
|
//this will be the object's final estimated position.
|
|
|
|
objectBoundingRectangle = boundingRect(largestContourVec.at(0));
|
|
|
|
}
|
|
|
|
//make some temp x and y variables so we dont have to type out so much
|
2016-05-27 17:12:23 +00:00
|
|
|
int x = objectBoundingRectangle.x;
|
|
|
|
int y = objectBoundingRectangle.y;
|
|
|
|
int width = objectBoundingRectangle.width;
|
|
|
|
int height = objectBoundingRectangle.height;
|
|
|
|
|
|
|
|
//draw a rectangle around the object
|
|
|
|
rectangle(output, Point(x,y), Point(x+width, y+height), Scalar(0, 255, 0), 2);
|
2016-05-15 22:27:55 +00:00
|
|
|
|
|
|
|
//write the position of the object to the screen
|
2016-05-24 09:57:41 +00:00
|
|
|
putText(output,"Tracking object at (" + intToString(x)+","+intToString(y)+")",Point(x,y),1,1,Scalar(255,0,0),2);
|
2016-05-15 22:27:55 +00:00
|
|
|
}
|
2016-06-01 23:20:29 +00:00
|
|
|
|
2016-06-01 15:09:28 +00:00
|
|
|
void searchForMovementOptFlow(Mat prev, Mat cur, Mat &output){
|
|
|
|
Mat cur_grey, prev_grey;
|
|
|
|
cur.copyTo(output);
|
|
|
|
cvtColor(prev, prev_grey, COLOR_BGR2GRAY);
|
|
|
|
cvtColor(cur, cur_grey, COLOR_BGR2GRAY);
|
2016-06-01 23:20:29 +00:00
|
|
|
|
2016-06-01 15:09:28 +00:00
|
|
|
Mat flow;
|
|
|
|
calcOpticalFlowFarneback(prev_grey, cur_grey, flow, 0.5, 3, 15, 3, 5, 1.2, 0);
|
2016-06-01 23:20:29 +00:00
|
|
|
vector<Mat> flow_coord(2);
|
2016-06-01 15:09:28 +00:00
|
|
|
Mat flow_norm, angle;
|
|
|
|
split(flow, flow_coord);
|
|
|
|
cartToPolar(flow_coord[0], flow_coord[1], flow_norm, angle);
|
2016-06-01 23:20:29 +00:00
|
|
|
|
2016-06-01 15:45:32 +00:00
|
|
|
//threshold(flow_norm, flow_norm, THRESHOLD_DETECT_SENSITIVITY, 255, THRESH_BINARY);
|
2016-06-01 15:09:28 +00:00
|
|
|
// Blur to eliminate noise
|
|
|
|
blur(flow_norm, flow_norm, Size(BLUR_SIZE, BLUR_SIZE));
|
2016-06-01 15:45:32 +00:00
|
|
|
threshold(flow_norm, flow_norm, THRESHOLD_DETECT_SENSITIVITY, 255, THRESH_BINARY);
|
2016-06-01 15:09:28 +00:00
|
|
|
flow_norm.convertTo(flow_norm, CV_8U);
|
2016-06-01 23:20:29 +00:00
|
|
|
|
2016-06-01 15:09:28 +00:00
|
|
|
bool objectDetected = false;
|
|
|
|
Mat temp;
|
|
|
|
flow_norm.copyTo(temp);
|
|
|
|
//these two vectors needed for output of findContours
|
|
|
|
vector< vector<Point> > contours;
|
|
|
|
vector<Vec4i> hierarchy;
|
|
|
|
//find contours of filtered image using openCV findContours function
|
|
|
|
//findContours(temp,contours,hierarchy,CV_RETR_CCOMP,CV_CHAIN_APPROX_SIMPLE );// retrieves all contours
|
|
|
|
findContours(temp,contours,hierarchy,CV_RETR_EXTERNAL,CV_CHAIN_APPROX_SIMPLE );// retrieves external contours
|
|
|
|
|
|
|
|
//if contours vector is not empty, we have found some objects
|
|
|
|
if(contours.size()>0)objectDetected=true;
|
|
|
|
else objectDetected = false;
|
|
|
|
|
|
|
|
if(objectDetected){
|
|
|
|
//the largest contour is found at the end of the contours vector
|
|
|
|
//we will simply assume that the biggest contour is the object we are looking for.
|
|
|
|
vector< vector<Point> > largestContourVec;
|
|
|
|
largestContourVec.push_back(contours.at(contours.size()-1));
|
|
|
|
//make a bounding rectangle around the largest contour then find its centroid
|
|
|
|
//this will be the object's final estimated position.
|
|
|
|
objectBoundingRectangle = boundingRect(largestContourVec.at(0));
|
|
|
|
}
|
|
|
|
//make some temp x and y variables so we dont have to type out so much
|
|
|
|
int x = objectBoundingRectangle.x;
|
|
|
|
int y = objectBoundingRectangle.y;
|
|
|
|
int width = objectBoundingRectangle.width;
|
|
|
|
int height = objectBoundingRectangle.height;
|
|
|
|
|
|
|
|
//draw a rectangle around the object
|
|
|
|
rectangle(output, Point(x,y), Point(x+width, y+height), Scalar(0, 255, 0), 2);
|
|
|
|
|
|
|
|
//write the position of the object to the screen
|
|
|
|
putText(output,"Tracking object at (" + intToString(x)+","+intToString(y)+")",Point(x,y),1,1,Scalar(255,0,0),2);
|
2016-06-01 23:20:29 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-06-02 16:05:29 +00:00
|
|
|
void warpPoints(vector<Point2f> p, vector<Point2f> &p_warp, Mat T, bool invert=false) {
|
|
|
|
if(invert)
|
|
|
|
invertAffineTransform(T, T);
|
2016-06-01 23:20:29 +00:00
|
|
|
|
2016-06-02 16:05:29 +00:00
|
|
|
p_warp.clear();
|
|
|
|
for(size_t i=0; i < p.size(); ++i) {
|
|
|
|
Mat src(3/*rows*/,1 /* cols */,CV_64F);
|
2016-06-01 23:20:29 +00:00
|
|
|
|
2016-06-02 16:05:29 +00:00
|
|
|
src.at<double>(0,0)=p[i].x;
|
|
|
|
src.at<double>(1,0)=p[i].y;
|
|
|
|
src.at<double>(2,0)=1.0;
|
2016-06-01 23:20:29 +00:00
|
|
|
|
2016-06-02 16:05:29 +00:00
|
|
|
Mat dst = T*src; //USE MATRIX ALGEBRA
|
|
|
|
p_warp.push_back(Point2f(dst.at<double>(0,0),dst.at<double>(1,0)));
|
2016-06-01 23:20:29 +00:00
|
|
|
}
|
2016-06-02 16:05:29 +00:00
|
|
|
}
|
2016-06-01 23:20:29 +00:00
|
|
|
|
2016-06-02 16:05:29 +00:00
|
|
|
void trackingOptFlow(Mat prev, Mat cur, Mat &output) {
|
|
|
|
vector <Point2f> curc_stab;
|
|
|
|
Mat T = estimateRigidTransform(prev_ftr, cur_ftr, true); // false = rigid transform, no scaling/shearing
|
|
|
|
ROS_INFO("ready to warp");
|
|
|
|
warpPoints(cur_ftr, curc_stab, T, true);
|
|
|
|
ROS_INFO("warped");
|
|
|
|
|
|
|
|
vector <Point2f> objects;
|
|
|
|
for(size_t i=0; i < prev_ftr.size(); ++i) {
|
|
|
|
float flow_norm = norm(prev_ftr[i] - cur_ftr[i]) / prev.size().height;
|
|
|
|
if(flow_norm > MOVEMENT_THRES)
|
|
|
|
objects.push_back(cur_ftr[i]);
|
|
|
|
}
|
2016-06-01 23:20:29 +00:00
|
|
|
|
2016-06-02 16:05:29 +00:00
|
|
|
for(size_t i=0; i < objects.size(); ++i) {
|
|
|
|
circle(output, objects[i], 5, Scalar(0, 200, 0), 1);
|
|
|
|
}
|
2016-06-01 23:20:29 +00:00
|
|
|
}
|
2016-05-15 22:27:55 +00:00
|
|
|
|
2016-05-03 22:23:18 +00:00
|
|
|
inline bool isFlowCorrect(Point2f u)
|
|
|
|
{
|
|
|
|
return !cvIsNaN(u.x) && !cvIsNaN(u.y) && fabs(u.x) < 1e9 && fabs(u.y) < 1e9;
|
|
|
|
}
|
|
|
|
|
2016-06-01 23:20:29 +00:00
|
|
|
|
|
|
|
void droneTracking(Rect img_size)
|
2016-05-30 13:41:34 +00:00
|
|
|
{
|
|
|
|
Point2f centre_image = Point2f(img_size.width/2, img_size.height/2);
|
|
|
|
Point2f centre_rect = Point2f(objectBoundingRectangle.x + objectBoundingRectangle.width/2, objectBoundingRectangle.y + objectBoundingRectangle.height/2);
|
2016-06-01 23:20:29 +00:00
|
|
|
|
2016-05-30 13:41:34 +00:00
|
|
|
geometry_msgs::Twist twist = geometry_msgs::Twist();
|
2016-06-01 23:20:29 +00:00
|
|
|
|
2016-06-01 15:45:32 +00:00
|
|
|
if(centre_rect.x < centre_image.x-THRESHOLD_MOV)
|
2016-05-30 13:41:34 +00:00
|
|
|
{
|
|
|
|
twist.angular.z = 0.2;
|
|
|
|
}
|
2016-06-01 15:45:32 +00:00
|
|
|
else if(centre_rect.x > centre_image.x+THRESHOLD_MOV)
|
2016-05-30 13:41:34 +00:00
|
|
|
{
|
|
|
|
twist.angular.z = -0.2;
|
|
|
|
}
|
2016-06-01 23:20:29 +00:00
|
|
|
|
2016-05-30 13:41:34 +00:00
|
|
|
pub_cmd.publish(twist);
|
|
|
|
}
|
2016-05-03 22:23:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
ros::init(argc, argv, "test_opencv");
|
|
|
|
Traite_image dataset=Traite_image();
|
|
|
|
ros::spin();
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|