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
1388826c
Commit
1388826c
authored
May 20, 2011
by
Andrey Kamaev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Tegra optimization for calcOpticalFlowPyrLK
parent
ebe2d03a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
8 deletions
+17
-8
cap_android.cpp
modules/highgui/src/cap_android.cpp
+8
-8
lkpyramid.cpp
modules/video/src/lkpyramid.cpp
+5
-0
precomp.hpp
modules/video/src/precomp.hpp
+4
-0
No files found.
modules/highgui/src/cap_android.cpp
View file @
1388826c
...
...
@@ -459,7 +459,6 @@ bool CvCapture_Android::convertYUV420i2Grey(int width, int height, const unsigne
return
!
resmat
.
empty
();
}
#ifndef HAVE_TEGRA_OPTIMIZATION
template
<
int
R
>
struct
YUV420i2BGR888Invoker
{
...
...
@@ -516,7 +515,6 @@ struct YUV420i2BGR888Invoker
}
}
};
#endif
bool
CvCapture_Android
::
convertYUV420i2BGR888
(
int
width
,
int
height
,
const
unsigned
char
*
yuv
,
cv
::
Mat
&
resmat
,
bool
inRGBorder
)
{
...
...
@@ -529,13 +527,15 @@ bool CvCapture_Android::convertYUV420i2BGR888(int width, int height, const unsig
unsigned
char
*
uv
=
y1
+
width
*
height
;
#ifdef HAVE_TEGRA_OPTIMIZATION
cv
::
parallel_for
(
cv
::
BlockedRange
(
0
,
height
,
2
),
tegra
::
YUV420i2BGR888Invoker
(
resmat
,
width
,
y1
,
uv
,
inRGBorder
));
#else
if
(
inRGBorder
)
cv
::
parallel_for
(
cv
::
BlockedRange
(
0
,
height
,
2
),
YUV420i2BGR888Invoker
<
2
>
(
resmat
,
width
,
y1
,
uv
));
else
cv
::
parallel_for
(
cv
::
BlockedRange
(
0
,
height
,
2
),
YUV420i2BGR888Invoker
<
0
>
(
resmat
,
width
,
y1
,
uv
));
#warning "TEGRA OPTIMIZED YUV420i TO RGB888 CONVERSION IS USED"
if
(
!
tegra
::
YUV420i2BGR888
(
width
,
height
,
y1
,
uv
,
resmat
,
inRGBorder
))
#endif
{
if
(
inRGBorder
)
cv
::
parallel_for
(
cv
::
BlockedRange
(
0
,
height
,
2
),
YUV420i2BGR888Invoker
<
2
>
(
resmat
,
width
,
y1
,
uv
));
else
cv
::
parallel_for
(
cv
::
BlockedRange
(
0
,
height
,
2
),
YUV420i2BGR888Invoker
<
0
>
(
resmat
,
width
,
y1
,
uv
));
}
return
!
resmat
.
empty
();
}
...
...
modules/video/src/lkpyramid.cpp
View file @
1388826c
...
...
@@ -50,6 +50,11 @@ void cv::calcOpticalFlowPyrLK( const InputArray& _prevImg, const InputArray& _ne
double
derivLambda
,
int
flags
)
{
#ifdef HAVE_TEGRA_OPTIMIZATION
#warning "TEGRA OPTIMIZED calcOpticalFlowPyrLK IS USED"
if
(
tegra
::
calcOpticalFlowPyrLK
(
_prevImg
,
_nextImg
,
_prevPts
,
_nextPts
,
_status
,
_err
,
winSize
,
maxLevel
,
criteria
,
derivLambda
,
flags
))
return
;
#endif
Mat
prevImg
=
_prevImg
.
getMat
(),
nextImg
=
_nextImg
.
getMat
(),
prevPtsMat
=
_prevPts
.
getMat
();
derivLambda
=
std
::
min
(
std
::
max
(
derivLambda
,
0.
),
1.
);
double
lambda1
=
1.
-
derivLambda
,
lambda2
=
derivLambda
;
...
...
modules/video/src/precomp.hpp
View file @
1388826c
...
...
@@ -56,4 +56,8 @@
#include "opencv2/imgproc/imgproc.hpp"
#include "opencv2/core/internal.hpp"
#ifdef HAVE_TEGRA_OPTIMIZATION
#include "opencv2/video/video_tegra.hpp"
#endif
#endif
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