53 Commits

Author SHA1 Message Date
matlabbe
881f70377f Added CATKIN_ENABLE_TESTING to detect catkin on dev build on ROS buildfarm 2016-05-09 13:45:49 -04:00
matlabbe
a5c25df708 Added CATKIN_SKIP_TESTING to detect catkin on dev build on ROS buildfarm 2016-05-09 12:34:41 -04:00
matlabbe
be29572ed1 Fixed catkin detection by cmake for binary release on Kinetic 2016-05-08 16:34:41 -04:00
matlabbe
52ce5076db Auto find qt version (qt5 has priority) 2016-05-06 16:54:18 -04:00
matlabbe
0a22ed804c Version 0.6.1 2015-11-30 01:15:58 -05:00
matlabbe
164da72169 Added Qt5 support ("cmake -DFINDOBJECT_QT_VERSION=5 ..") 2015-11-29 18:39:20 -05:00
matlabbe
ae7b79629b Removed not used pcl_ros dependency 2015-11-12 15:25:37 -05:00
Mathieu Labbé
028bfcf52e Updated version to 0.6.0 2015-07-10 16:00:34 -04:00
Mathieu Labbé
4b5da36512 Fixed build with OpenCV 3 CUDA (issue #3) 2015-07-10 14:27:11 -04:00
matlabbe
b07239a000 Added OpenCV 3 support (CUDA module not yet tested) 2015-06-23 16:38:47 -04:00
matlabbe
c05b208cde Added auto detection of catkin 2015-05-20 16:55:56 -04:00
matlabbe
cde57a6b22 moved CATKIN_BUILD option on top 2015-05-20 15:21:17 -04:00
matlabbe
77ea44bcbc fixed find_object_2d install targets 2015-05-20 15:13:52 -04:00
matlabbe
84cf6280ac merged catkin build into master branch 2015-05-20 14:50:25 -04:00
matlabbe
58f130fc62 updated version to 0.5.1
git-svn-id: http://find-object.googlecode.com/svn/trunk/find_object@424 620bd6b2-0a58-f614-fd9a-1bd335dccda9
2015-03-02 16:06:06 +00:00
matlabbe
807c8b5b43 Added Version.h.in. When NONFREE module is not detected, disable SIFT/SURF instead of hiding them.
git-svn-id: http://find-object.googlecode.com/svn/trunk/find_object@413 620bd6b2-0a58-f614-fd9a-1bd335dccda9
2014-11-28 21:47:02 +00:00
matlabbe
4d3b9e88b2 Added BruteForce nearest neighbor (with GPU option), which is now the default for binary descriptors
CMake: Detecting if openCV is built with nonfree module, if yes, SIFT and SURF can be used

git-svn-id: http://find-object.googlecode.com/svn/trunk/find_object@411 620bd6b2-0a58-f614-fd9a-1bd335dccda9
2014-10-24 02:46:03 +00:00
matlabbe
b3024cb1dc fixed Find-Object.app not opening on start (it was because OSX adds an argument -psn_0_##### which wasn't recognized by Find-Object... so it immediatly exited with error "LSOpenURLsWithRole() failed with error -10810")
git-svn-id: http://find-object.googlecode.com/svn/trunk/find_object@406 620bd6b2-0a58-f614-fd9a-1bd335dccda9
2014-08-29 01:18:55 +00:00
matlabbe
33baa6e171 fixed not installed icns in mac os x bundle
git-svn-id: http://find-object.googlecode.com/svn/trunk/find_object@404 620bd6b2-0a58-f614-fd9a-1bd335dccda9
2014-08-28 21:36:23 +00:00
matlabbe
2b229dcec2 Building JSONCPP inside Find-Object (easiest integration for Windows)
git-svn-id: http://find-object.googlecode.com/svn/trunk/find_object@390 620bd6b2-0a58-f614-fd9a-1bd335dccda9
2014-08-27 20:30:56 +00:00
matlabbe
6a0136cc16 Added JSON optional output when in console mode (see --json option)
Added --scene option to process a single scene file
Moved some apps in tools subfolder


git-svn-id: http://find-object.googlecode.com/svn/trunk/find_object@362 620bd6b2-0a58-f614-fd9a-1bd335dccda9
2014-08-01 21:11:26 +00:00
matlabbe
43e855e822 fixed 0.5.0 build for Windows
git-svn-id: http://find-object.googlecode.com/svn/trunk/find_object@358 620bd6b2-0a58-f614-fd9a-1bd335dccda9
2014-07-31 20:59:25 +00:00
matlabbe
9bc7c15abc Created a library find_object for convenience
Updated version to 0.5.0

git-svn-id: http://find-object.googlecode.com/svn/trunk/find_object@357 620bd6b2-0a58-f614-fd9a-1bd335dccda9
2014-07-31 20:11:46 +00:00
matlabbe
488c5865fe Added QT_NO_KEYWORDS build compilation to avoid conflicts with boost signals used in the ROS package
git-svn-id: http://find-object.googlecode.com/svn/trunk/find_object@347 620bd6b2-0a58-f614-fd9a-1bd335dccda9
2014-07-08 19:55:03 +00:00
matlabbe
3c36e088d7 updated to version 0.4.6
git-svn-id: http://find-object.googlecode.com/svn/trunk/find_object@345 620bd6b2-0a58-f614-fd9a-1bd335dccda9
2014-06-26 14:56:04 +00:00
matlabbe
8dfe9622b0 Added GPU-SURF support when OpenCV is built with CUDA.
git-svn-id: http://find-object.googlecode.com/svn/trunk/find_object@337 620bd6b2-0a58-f614-fd9a-1bd335dccda9
2014-06-17 21:04:26 +00:00
matlabbe
19b5776ba4 Added "Camera from TCP/IP..." action. Find-Object can connect to a server to receive images over TCP/IP. Look at the "imagesTcpServer" example to know how to send a images. The stream format is [quint64 size, std::vector<unsigned char> data]. The data array is decoded to a cv:Mat image using cv::imdecode(data, cv::IMREAD_UNCHANGED). In the server example, the images are encoded like that: cv::imencode(".png", image, data).
git-svn-id: http://find-object.googlecode.com/svn/trunk/find_object@280 620bd6b2-0a58-f614-fd9a-1bd335dccda9
2014-05-21 21:31:42 +00:00
matlabbe
5492a46f25 updated trunk version to 0.4.4
git-svn-id: http://find-object.googlecode.com/svn/trunk/find_object@272 620bd6b2-0a58-f614-fd9a-1bd335dccda9
2014-05-13 18:06:16 +00:00
matlabbe
d894de50c7 updated version to 0.4.3
git-svn-id: http://find-object.googlecode.com/svn/trunk/find_object@244 620bd6b2-0a58-f614-fd9a-1bd335dccda9
2014-05-06 15:33:16 +00:00
matlabbe
fa07e735a6 Fixed issue 19: Publish detected objects and position on TCP
git-svn-id: http://find-object.googlecode.com/svn/trunk/find_object@243 620bd6b2-0a58-f614-fd9a-1bd335dccda9
2014-05-05 23:08:01 +00:00
matlabbe
6082ab4b63 fixed starting crash on Windows
git-svn-id: http://find-object.googlecode.com/svn/trunk/find_object@239 620bd6b2-0a58-f614-fd9a-1bd335dccda9
2014-04-11 22:30:38 +00:00
matlabbe
3953083517 updated version to 0.4.2
git-svn-id: http://find-object.googlecode.com/svn/trunk/find_object@232 620bd6b2-0a58-f614-fd9a-1bd335dccda9
2014-04-11 21:15:49 +00:00
matlabbe
72106f9654 reactivated build of main app and example
git-svn-id: http://find-object.googlecode.com/svn/trunk/find_object@192 620bd6b2-0a58-f614-fd9a-1bd335dccda9
2013-04-25 00:53:30 +00:00
matlabbe
2ca50933d2 Added console app
git-svn-id: http://find-object.googlecode.com/svn/trunk/find_object@191 620bd6b2-0a58-f614-fd9a-1bd335dccda9
2013-04-25 00:11:56 +00:00
matlabbe
7921affc14 updated to version 0.4.1
git-svn-id: http://find-object.googlecode.com/svn/trunk/find_object@183 620bd6b2-0a58-f614-fd9a-1bd335dccda9
2013-02-07 18:02:04 +00:00
matlabbe
597a137854 Fixed compilation errors (cannot convert const char * to const wchar *) with UNICODE projects (when "-DUNICODE" is set).
Fixed control bar showing -2 when webcam is used.

git-svn-id: http://find-object.googlecode.com/svn/trunk/find_object@174 620bd6b2-0a58-f614-fd9a-1bd335dccda9
2012-09-21 14:59:09 +00:00
matlabbe
e37e06351c Set cmake source package generator on Linux to ZIP
git-svn-id: http://find-object.googlecode.com/svn/trunk/find_object@167 620bd6b2-0a58-f614-fd9a-1bd335dccda9
2012-08-31 14:48:18 +00:00
matlabbe
927d067a9a Updated version to 0.4
git-svn-id: http://find-object.googlecode.com/svn/trunk/find_object@151 620bd6b2-0a58-f614-fd9a-1bd335dccda9
2012-08-30 19:28:11 +00:00
matlabbe
2db740d2a6 Updated version to 0.3.0
git-svn-id: http://find-object.googlecode.com/svn/trunk/find_object@99 620bd6b2-0a58-f614-fd9a-1bd335dccda9
2012-05-08 13:37:07 +00:00
matlabbe
7efb5f4b61 updated version to 0.2.2
git-svn-id: http://find-object.googlecode.com/svn/trunk/find_object@89 620bd6b2-0a58-f614-fd9a-1bd335dccda9
2012-02-05 00:38:06 +00:00
matlabbe
81fb24f5dd updated version to 0.2.1
git-svn-id: http://find-object.googlecode.com/svn/trunk/find_object@68 620bd6b2-0a58-f614-fd9a-1bd335dccda9
2012-01-05 00:41:23 +00:00
matlabbe
658cd6ebcb added uninstall target
git-svn-id: http://find-object.googlecode.com/svn/trunk/find_object@57 620bd6b2-0a58-f614-fd9a-1bd335dccda9
2011-12-02 18:45:19 +00:00
matlabbe
8b12bd8bff Added icons
git-svn-id: http://find-object.googlecode.com/svn/trunk/find_object@50 620bd6b2-0a58-f614-fd9a-1bd335dccda9
2011-11-24 20:45:50 +00:00
matlabbe
a0afad0504 version updated to 0.2
git-svn-id: http://find-object.googlecode.com/svn/trunk/find_object@48 620bd6b2-0a58-f614-fd9a-1bd335dccda9
2011-11-24 19:11:50 +00:00
matlabbe
a1c5be1d5b Fixed some warnings...
git-svn-id: http://find-object.googlecode.com/svn/trunk/find_object@35 620bd6b2-0a58-f614-fd9a-1bd335dccda9
2011-11-23 18:08:33 +00:00
matlabbe
45f6b9fd17 Changed layout of find_object folders... moved main.cpp to app folder (prepare for ros externals...)
git-svn-id: http://find-object.googlecode.com/svn/trunk/find_object@30 620bd6b2-0a58-f614-fd9a-1bd335dccda9
2011-11-23 14:02:53 +00:00
matlabbe
a761af58da Added code example for descriptors extraction
git-svn-id: http://find-object.googlecode.com/svn/trunk/find_object@20 620bd6b2-0a58-f614-fd9a-1bd335dccda9
2011-11-15 16:37:40 +00:00
matlabbe
d71dcd00ea Fixed wrong GUI timing
Updated version to 0.1.1

git-svn-id: http://find-object.googlecode.com/svn/trunk/find_object@19 620bd6b2-0a58-f614-fd9a-1bd335dccda9
2011-11-10 14:29:38 +00:00
matlabbe
f2f1ab037a Windows : now saving config file to user's documents.
git-svn-id: http://find-object.googlecode.com/svn/trunk/find_object@18 620bd6b2-0a58-f614-fd9a-1bd335dccda9
2011-11-10 14:00:20 +00:00
matlabbe
8cd2d70954 Windows package : Removed version in the install directory path
Windows : Object save figure in homePath

git-svn-id: http://find-object.googlecode.com/svn/trunk/find_object@17 620bd6b2-0a58-f614-fd9a-1bd335dccda9
2011-11-09 21:17:52 +00:00