Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv_contrib
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_contrib
Commits
27075d22
Commit
27075d22
authored
Mar 24, 2017
by
Vladislav Sovrasov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tracking: hide getModel() method
parent
38758066
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
7 deletions
+6
-7
tracker.hpp
modules/tracking/include/opencv2/tracking/tracker.hpp
+0
-5
tldTracker.hpp
modules/tracking/src/tldTracker.hpp
+6
-2
No files found.
modules/tracking/include/opencv2/tracking/tracker.hpp
View file @
27075d22
...
@@ -565,11 +565,6 @@ class CV_EXPORTS_W Tracker : public virtual Algorithm
...
@@ -565,11 +565,6 @@ class CV_EXPORTS_W Tracker : public virtual Algorithm
virtual
void
read
(
const
FileNode
&
fn
)
=
0
;
virtual
void
read
(
const
FileNode
&
fn
)
=
0
;
virtual
void
write
(
FileStorage
&
fs
)
const
=
0
;
virtual
void
write
(
FileStorage
&
fs
)
const
=
0
;
Ptr
<
TrackerModel
>
getModel
()
{
return
model
;
}
protected
:
protected
:
virtual
bool
initImpl
(
const
Mat
&
image
,
const
Rect2d
&
boundingBox
)
=
0
;
virtual
bool
initImpl
(
const
Mat
&
image
,
const
Rect2d
&
boundingBox
)
=
0
;
...
...
modules/tracking/src/tldTracker.hpp
View file @
27075d22
...
@@ -122,6 +122,11 @@ public:
...
@@ -122,6 +122,11 @@ public:
void
read
(
const
FileNode
&
fn
);
void
read
(
const
FileNode
&
fn
);
void
write
(
FileStorage
&
fs
)
const
;
void
write
(
FileStorage
&
fs
)
const
;
Ptr
<
TrackerModel
>
getModel
()
{
return
model
;
}
class
Pexpert
class
Pexpert
{
{
public
:
public
:
...
@@ -166,4 +171,4 @@ public:
...
@@ -166,4 +171,4 @@ public:
}
}
}
}
#endif
#endif
\ No newline at end of file
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