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
bf39f694
Commit
bf39f694
authored
Jun 10, 2014
by
Alexander Alekhin
Committed by
OpenCV Buildbot
Jun 10, 2014
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2835 from ilya-lavrenov:defects
parents
e0f40a7f
556206de
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
7 deletions
+7
-7
features2d.hpp
modules/features2d/include/opencv2/features2d.hpp
+0
-1
color.cpp
modules/imgproc/src/color.cpp
+1
-1
imgwarp.cpp
modules/imgproc/src/imgwarp.cpp
+6
-5
No files found.
modules/features2d/include/opencv2/features2d.hpp
View file @
bf39f694
...
...
@@ -926,7 +926,6 @@ protected:
void
detectImpl
(
InputArray
image
,
std
::
vector
<
KeyPoint
>&
keypoints
,
InputArray
mask
)
const
;
void
computeImpl
(
InputArray
image
,
std
::
vector
<
KeyPoint
>&
keypoints
,
OutputArray
descriptors
)
const
;
CV_PROP
int
descriptor
;
CV_PROP
bool
extended
;
CV_PROP
bool
upright
;
};
...
...
modules/imgproc/src/color.cpp
View file @
bf39f694
...
...
@@ -3326,7 +3326,7 @@ void cv::cvtColor( InputArray _src, OutputArray _dst, int code, int dcn )
dst
=
_dst
.
getMat
();
#if defined (HAVE_IPP) && (IPP_VERSION_MAJOR >= 7)
if
(
code
==
CV_BGR2BGRA
||
code
==
CV_RGB2RGBA
)
if
(
code
==
CV_BGR2BGRA
)
{
if
(
CvtColorIPPLoop
(
src
,
dst
,
IPPReorderFunctor
(
ippiSwapChannelsC3C4RTab
[
depth
],
0
,
1
,
2
))
)
return
;
...
...
modules/imgproc/src/imgwarp.cpp
View file @
bf39f694
...
...
@@ -1917,12 +1917,13 @@ class IPPresizeInvoker :
{
public
:
IPPresizeInvoker
(
const
Mat
&
_src
,
Mat
&
_dst
,
double
_inv_scale_x
,
double
_inv_scale_y
,
int
_mode
,
bool
*
_ok
)
:
ParallelLoopBody
(),
src
(
_src
),
dst
(
_dst
),
inv_scale_x
(
_inv_scale_x
),
inv_scale_y
(
_inv_scale_y
),
mode
(
_mode
),
ok
(
_ok
)
ParallelLoopBody
(),
src
(
_src
),
dst
(
_dst
),
inv_scale_x
(
_inv_scale_x
),
inv_scale_y
(
_inv_scale_y
),
pSpec
(
NULL
),
mode
(
_mode
),
func
(
NULL
),
getBufferSizeFunc
(
NULL
),
getSrcOffsetFunc
(
NULL
),
ok
(
_ok
)
{
*
ok
=
true
;
IppiSize
srcSize
,
dstSize
;
int
type
=
src
.
type
();
int
specSize
=
0
,
initSize
=
0
;
int
type
=
src
.
type
(),
specSize
=
0
,
initSize
=
0
;
srcSize
.
width
=
src
.
cols
;
srcSize
.
height
=
src
.
rows
;
dstSize
.
width
=
dst
.
cols
;
...
...
@@ -1958,7 +1959,7 @@ public:
virtual
void
operator
()
(
const
Range
&
range
)
const
{
if
(
*
ok
==
false
)
return
;
return
;
int
cn
=
src
.
channels
();
int
dsty
=
min
(
cvRound
(
range
.
start
*
inv_scale_y
),
dst
.
rows
);
...
...
@@ -1987,7 +1988,7 @@ private:
double
inv_scale_x
;
double
inv_scale_y
;
void
*
pSpec
;
AutoBuffer
<
uchar
>
specBuf
;
AutoBuffer
<
uchar
>
specBuf
;
int
mode
;
ippiResizeFunc
func
;
ippiResizeGetBufferSize
getBufferSizeFunc
;
...
...
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