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
6ba723a8
Commit
6ba723a8
authored
Aug 21, 2015
by
Vladimir
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Untabify VOT dataset code
parent
4bfc2ab8
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
10 deletions
+10
-10
track_vot.hpp
modules/datasets/include/opencv2/datasets/track_vot.hpp
+10
-10
track_vot.cpp
modules/datasets/src/track_vot.cpp
+0
-0
No files found.
modules/datasets/include/opencv2/datasets/track_vot.hpp
View file @
6ba723a8
...
@@ -68,30 +68,30 @@ struct TRACK_votObj : public Object
...
@@ -68,30 +68,30 @@ struct TRACK_votObj : public Object
{
{
int
id
;
int
id
;
std
::
string
imagePath
;
std
::
string
imagePath
;
vector
<
Point2d
>
gtbb
;
vector
<
Point2d
>
gtbb
;
};
};
class
CV_EXPORTS
TRACK_vot
:
public
Dataset
class
CV_EXPORTS
TRACK_vot
:
public
Dataset
{
{
public
:
public
:
static
Ptr
<
TRACK_vot
>
create
();
static
Ptr
<
TRACK_vot
>
create
();
virtual
void
load
(
const
std
::
string
&
path
)
=
0
;
virtual
void
load
(
const
std
::
string
&
path
)
=
0
;
virtual
int
getDatasetsNum
()
=
0
;
virtual
int
getDatasetsNum
()
=
0
;
virtual
int
getDatasetLength
(
int
id
)
=
0
;
virtual
int
getDatasetLength
(
int
id
)
=
0
;
virtual
bool
initDataset
(
int
id
)
=
0
;
virtual
bool
initDataset
(
int
id
)
=
0
;
virtual
bool
getNextFrame
(
Mat
&
frame
)
=
0
;
virtual
bool
getNextFrame
(
Mat
&
frame
)
=
0
;
virtual
vector
<
Point2d
>
getGT
()
=
0
;
virtual
vector
<
Point2d
>
getGT
()
=
0
;
protected
:
protected
:
vector
<
vector
<
Ptr
<
TRACK_votObj
>
>
>
data
;
vector
<
vector
<
Ptr
<
TRACK_votObj
>
>
>
data
;
int
activeDatasetID
;
int
activeDatasetID
;
int
frameCounter
;
int
frameCounter
;
};
};
//! @}
//! @}
...
...
modules/datasets/src/track_vot.cpp
View file @
6ba723a8
This diff is collapsed.
Click to expand it.
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