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
634fedc3
Commit
634fedc3
authored
Oct 18, 2012
by
Andrey Kamaev
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #56 from vpisarev/bug_2447_2.4
parents
04384a71
f5742e6c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
39 additions
and
25 deletions
+39
-25
arithm.cpp
modules/core/src/arithm.cpp
+24
-25
test_operations.cpp
modules/core/test/test_operations.cpp
+15
-0
No files found.
modules/core/src/arithm.cpp
View file @
634fedc3
...
...
@@ -1218,28 +1218,21 @@ namespace cv
static
int
actualScalarDepth
(
const
double
*
data
,
int
len
)
{
double
minval
=
data
[
0
];
double
maxval
=
data
[
0
];
for
(
int
i
=
1
;
i
<
len
;
++
i
)
{
minval
=
MIN
(
minval
,
data
[
i
]);
maxval
=
MAX
(
maxval
,
data
[
i
]);
}
int
depth
=
CV_64F
;
if
(
minval
>=
0
&&
maxval
<=
UCHAR_MAX
)
depth
=
CV_8U
;
else
if
(
minval
>=
SCHAR_MIN
&&
maxval
<=
SCHAR_MAX
)
depth
=
CV_8S
;
else
if
(
minval
>=
0
&&
maxval
<=
USHRT_MAX
)
depth
=
CV_16U
;
else
if
(
minval
>=
SHRT_MIN
&&
maxval
<=
SHRT_MAX
)
depth
=
CV_16S
;
else
if
(
minval
>=
INT_MIN
&&
maxval
<=
INT_MAX
)
depth
=
CV_32S
;
else
if
(
minval
>=
-
FLT_MAX
&&
maxval
<=
FLT_MAX
)
depth
=
CV_32F
;
return
depth
;
int
i
=
0
,
minval
=
INT_MAX
,
maxval
=
INT_MIN
;
for
(;
i
<
len
;
++
i
)
{
int
ival
=
cvRound
(
data
[
i
]);
if
(
ival
!=
data
[
i
]
)
break
;
minval
=
MIN
(
minval
,
ival
);
maxval
=
MAX
(
maxval
,
ival
);
}
return
i
<
len
?
CV_64F
:
minval
>=
0
&&
maxval
<=
UCHAR_MAX
?
CV_8U
:
minval
>=
SCHAR_MIN
&&
maxval
<=
SCHAR_MAX
?
CV_8S
:
minval
>=
0
&&
maxval
<=
USHRT_MAX
?
CV_16U
:
minval
>=
SHRT_MIN
&&
maxval
<=
SHRT_MAX
?
CV_16S
:
CV_32S
;
}
static
void
arithm_op
(
InputArray
_src1
,
InputArray
_src2
,
OutputArray
_dst
,
...
...
@@ -1264,7 +1257,9 @@ static void arithm_op(InputArray _src1, InputArray _src2, OutputArray _dst,
bool
haveScalar
=
false
,
swapped12
=
false
;
int
depth2
=
src2
.
depth
();
if
(
src1
.
size
!=
src2
.
size
||
src1
.
channels
()
!=
src2
.
channels
()
)
if
(
src1
.
size
!=
src2
.
size
||
src1
.
channels
()
!=
src2
.
channels
()
||
((
kind1
==
_InputArray
::
MATX
||
kind2
==
_InputArray
::
MATX
)
&&
src1
.
cols
==
1
&&
src2
.
rows
==
4
)
)
{
if
(
checkScalar
(
src1
,
src2
.
type
(),
kind1
,
kind2
)
)
{
...
...
@@ -1279,10 +1274,14 @@ static void arithm_op(InputArray _src1, InputArray _src2, OutputArray _dst,
haveScalar
=
true
;
CV_Assert
(
src2
.
type
()
==
CV_64F
&&
(
src2
.
rows
==
4
||
src2
.
rows
==
1
));
if
(
usrdata
==
0
)
// hack to filter out multiply and divide
if
(
!
muldiv
)
{
depth2
=
actualScalarDepth
(
src2
.
ptr
<
double
>
(),
src1
.
channels
());
if
(
depth2
==
CV_64F
&&
(
src1
.
depth
()
<
CV_32S
||
src1
.
depth
()
==
CV_32F
)
)
depth2
=
CV_32F
;
}
else
depth2
=
CV_64F
;
depth2
=
src1
.
depth
()
<
CV_32S
||
src1
.
depth
()
==
CV_32F
?
CV_32F
:
CV_64F
;
}
int
cn
=
src1
.
channels
(),
depth1
=
src1
.
depth
(),
wtype
;
...
...
modules/core/test/test_operations.cpp
View file @
634fedc3
...
...
@@ -76,6 +76,7 @@ protected:
bool
TestVec
();
bool
TestMatxMultiplication
();
bool
TestSubMatAccess
();
bool
TestExp
();
bool
TestSVD
();
bool
operations1
();
...
...
@@ -1003,6 +1004,17 @@ bool CV_OperationsTest::operations1()
}
bool
CV_OperationsTest
::
TestExp
()
{
Mat1f
tt
=
Mat1f
::
ones
(
4
,
2
);
Mat1f
outs
;
exp
(
-
tt
,
outs
);
Mat1f
tt2
=
Mat1f
::
ones
(
4
,
1
),
outs2
;
exp
(
-
tt2
,
outs2
);
return
true
;
}
bool
CV_OperationsTest
::
TestSVD
()
{
try
...
...
@@ -1079,6 +1091,9 @@ void CV_OperationsTest::run( int /* start_from */)
if
(
!
TestSubMatAccess
())
return
;
if
(
!
TestExp
())
return
;
if
(
!
TestSVD
())
return
;
...
...
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