From f9ba1d99cbc8018e8ecdb5ef5aad84dcb8719b57 Mon Sep 17 00:00:00 2001 From: Patrick Ruoff Date: Sun, 23 Sep 2012 16:16:17 +0000 Subject: PT: added reference to help updated vc9 project files git-svn-id: svn+ssh://svn.code.sf.net/p/facetracknoir/code@161 19e81ba0-9b1a-49c3-bd6c-561e1906d5fb --- FTNoIR_Tracker_PT/FTNoIR_PT_Controls.ui | 13 ++++++++----- FTNoIR_Tracker_PT/FTNoIR_Tracker_PT_vc9.vcproj | 14 +++++++++----- FTNoIR_Tracker_PT/point_extractor.cpp | 8 ++++---- 3 files changed, 21 insertions(+), 14 deletions(-) (limited to 'FTNoIR_Tracker_PT') diff --git a/FTNoIR_Tracker_PT/FTNoIR_PT_Controls.ui b/FTNoIR_Tracker_PT/FTNoIR_PT_Controls.ui index 38909013..77e412af 100644 --- a/FTNoIR_Tracker_PT/FTNoIR_PT_Controls.ui +++ b/FTNoIR_Tracker_PT/FTNoIR_PT_Controls.ui @@ -51,7 +51,7 @@ - 0 + 2 @@ -730,18 +730,21 @@ 30 30 - 131 - 81 + 161 + 111 - <html><head/><body><p><span style=" font-weight:600;">PointTracker Plugin </span></p><p><span style=" font-weight:600;">Version 0.1</span></p><p><span style=" font-weight:600;">by Patrick Ruoff</span></p></body></html> + <html><head/><body><p><span style=" font-weight:600;">FTNoIR PointTracker Plugin<br/>Version 0.1</span></p><p><span style=" font-weight:600;">by Patrick Ruoff</span></p><p><a href="http://ftnoirpt.sourceforge.net/"><span style=" font-weight:600; text-decoration: underline; color:#0000ff;">Manual (external)</span></a></p></body></html> + + + true - 170 + 200 30 141 141 diff --git a/FTNoIR_Tracker_PT/FTNoIR_Tracker_PT_vc9.vcproj b/FTNoIR_Tracker_PT/FTNoIR_Tracker_PT_vc9.vcproj index b938173d..51d2a38a 100644 --- a/FTNoIR_Tracker_PT/FTNoIR_Tracker_PT_vc9.vcproj +++ b/FTNoIR_Tracker_PT/FTNoIR_Tracker_PT_vc9.vcproj @@ -38,6 +38,9 @@ /> @@ -124,8 +128,8 @@ /> & PointExtractor::extract_points(Mat frame, float dt, bool dr // find connected components... // Method 1: contours - //* + /* // find contours vector< vector > contours; findContours(frame_bw.clone(), contours, CV_RETR_EXTERNAL, CV_CHAIN_APPROX_SIMPLE); @@ -64,10 +64,10 @@ const vector& PointExtractor::extract_points(Mat frame, float dt, bool dr c[1] = -(m.m01/m.m00 - frame.rows/2)/frame.cols; points.push_back(c); } - //*/ + */ // Method 2: floodfill - /* + //* // extract blobs struct BlobInfo { @@ -115,7 +115,7 @@ const vector& PointExtractor::extract_points(Mat frame, float dt, bool dr c[1] = -(m.m01/float(m.m00) - frame.rows/2)/frame.cols; points.push_back(c); } - */ + //*/ // draw output image if (draw_output) -- cgit v1.2.3