Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
714732e9
Commit
714732e9
authored
Aug 27, 2011
by
Vadim Pisarevsky
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed some more hybrid tracker build problems on Windows
parent
1bae6413
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
hybridtracker.hpp
modules/contrib/include/opencv2/contrib/hybridtracker.hpp
+3
-3
featuretracker.cpp
modules/contrib/src/featuretracker.cpp
+1
-0
No files found.
modules/contrib/include/opencv2/contrib/hybridtracker.hpp
View file @
714732e9
...
...
@@ -134,7 +134,7 @@ public:
CvMeanShiftTrackerParams
params
;
CvMeanShiftTracker
();
CvMeanShiftTracker
(
CvMeanShiftTrackerParams
_params
=
CvMeanShiftTrackerParams
()
);
explicit
CvMeanShiftTracker
(
CvMeanShiftTrackerParams
_params
);
~
CvMeanShiftTracker
();
void
newTrackingWindow
(
Mat
image
,
Rect
selection
);
RotatedRect
updateTrackingWindow
(
Mat
image
);
...
...
@@ -167,7 +167,7 @@ public:
CvFeatureTrackerParams
params
;
CvFeatureTracker
();
CvFeatureTracker
(
CvFeatureTrackerParams
params
=
CvFeatureTrackerParams
(
0
,
0
)
);
explicit
CvFeatureTracker
(
CvFeatureTrackerParams
params
);
~
CvFeatureTracker
();
void
newTrackingWindow
(
Mat
image
,
Rect
selection
);
Rect
updateTrackingWindow
(
Mat
image
);
...
...
@@ -206,7 +206,7 @@ private:
public
:
CvHybridTrackerParams
params
;
CvHybridTracker
();
CvHybridTracker
(
CvHybridTrackerParams
params
=
CvHybridTrackerParams
()
);
explicit
CvHybridTracker
(
CvHybridTrackerParams
params
);
~
CvHybridTracker
();
void
newTracker
(
Mat
image
,
Rect
selection
);
...
...
modules/contrib/src/featuretracker.cpp
View file @
714732e9
...
...
@@ -197,6 +197,7 @@ Rect CvFeatureTracker::updateTrackingWindowWithFlow(Mat image)
swap
(
features
[
0
],
features
[
1
]);
image
.
copyTo
(
prev_image
);
return
prev_trackwindow
;
}
void
CvFeatureTracker
::
setTrackingWindow
(
Rect
_window
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment