robotology / peripersonal-space

This repository deals with the implementation of peripersonal space representations on the iCub humanoid robot.
GNU General Public License v2.0
1 stars 4 forks source link

Fixing feature/WYSIWYD #21

Closed pattacini closed 8 years ago

pattacini commented 8 years ago

The idea is to first merge these fixes into feature/WYSIWYD and then proceed with merging feature/WYSIWYD into master.

@alecive and @matejhof please have a look at this.

#include <cv.h>
#include <highgui.h>

with #include <opencv2/opencv.hpp>. Why didn't you replace them with:

#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>

? A part from that, PR approved.

   

alecive commented 8 years ago

Wow all of these were warning on windows? You should have done the pull request before! A question: you replaced

#include <cv.h>
#include <highgui.h>

with #include <opencv2/opencv.hpp>. Why didn't you replace them with:

#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>

?

A part from that, PR approved.

alecive commented 8 years ago

:shipit:

pattacini commented 8 years ago

The highgui.hpp header file is simply not necessary for the compilation :wink:.

pattacini commented 8 years ago

:+1: