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
98fdd704
Commit
98fdd704
authored
Jan 29, 2013
by
Andrey Kamaev
Committed by
OpenCV Buildbot
Jan 29, 2013
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #339 from vpisarev:core_fixes
parents
63873a83
146ca61a
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
25 additions
and
21 deletions
+25
-21
operations.hpp
modules/core/include/opencv2/core/operations.hpp
+2
-2
types_c.h
modules/core/include/opencv2/core/types_c.h
+4
-18
matrix.cpp
modules/core/src/matrix.cpp
+2
-1
test_operations.cpp
modules/core/test/test_operations.cpp
+17
-0
No files found.
modules/core/include/opencv2/core/operations.hpp
View file @
98fdd704
...
...
@@ -716,12 +716,12 @@ template<typename _Tp, int m> struct CV_EXPORTS Matx_DetOp
double
operator
()(
const
Matx
<
_Tp
,
m
,
m
>&
a
)
const
{
Matx
<
_Tp
,
m
,
m
>
temp
=
a
;
double
p
=
LU
(
temp
.
val
,
m
,
m
,
0
,
0
,
0
);
double
p
=
LU
(
temp
.
val
,
m
*
sizeof
(
_Tp
)
,
m
,
0
,
0
,
0
);
if
(
p
==
0
)
return
p
;
for
(
int
i
=
0
;
i
<
m
;
i
++
)
p
*=
temp
(
i
,
i
);
return
p
;
return
1.
/
p
;
}
};
...
...
modules/core/include/opencv2/core/types_c.h
View file @
98fdd704
...
...
@@ -342,9 +342,8 @@ CV_INLINE int cvFloor( double value )
return
i
-
(
i
>
value
);
#else
int
i
=
cvRound
(
value
);
Cv32suf
diff
;
diff
.
f
=
(
float
)(
value
-
i
);
return
i
-
(
diff
.
i
<
0
);
float
diff
=
(
float
)(
value
-
i
);
return
i
-
(
diff
<
0
);
#endif
}
...
...
@@ -360,9 +359,8 @@ CV_INLINE int cvCeil( double value )
return
i
+
(
i
<
value
);
#else
int
i
=
cvRound
(
value
);
Cv32suf
diff
;
diff
.
f
=
(
float
)(
i
-
value
);
return
i
+
(
diff
.
i
<
0
);
float
diff
=
(
float
)(
i
-
value
);
return
i
+
(
diff
<
0
);
#endif
}
...
...
@@ -371,31 +369,19 @@ CV_INLINE int cvCeil( double value )
CV_INLINE
int
cvIsNaN
(
double
value
)
{
#if 1
/*defined _MSC_VER || defined __BORLANDC__
return _isnan(value);
#elif defined __GNUC__
return isnan(value);
#else*/
Cv64suf
ieee754
;
ieee754
.
f
=
value
;
return
((
unsigned
)(
ieee754
.
u
>>
32
)
&
0x7fffffff
)
+
((
unsigned
)
ieee754
.
u
!=
0
)
>
0x7ff00000
;
#endif
}
CV_INLINE
int
cvIsInf
(
double
value
)
{
#if 1
/*defined _MSC_VER || defined __BORLANDC__
return !_finite(value);
#elif defined __GNUC__
return isinf(value);
#else*/
Cv64suf
ieee754
;
ieee754
.
f
=
value
;
return
((
unsigned
)(
ieee754
.
u
>>
32
)
&
0x7fffffff
)
==
0x7ff00000
&&
(
unsigned
)
ieee754
.
u
==
0
;
#endif
}
...
...
modules/core/src/matrix.cpp
View file @
98fdd704
...
...
@@ -830,7 +830,8 @@ int Mat::checkVector(int _elemChannels, int _depth, bool _requireContinuous) con
{
return
(
depth
()
==
_depth
||
_depth
<=
0
)
&&
(
isContinuous
()
||
!
_requireContinuous
)
&&
((
dims
==
2
&&
(((
rows
==
1
||
cols
==
1
)
&&
channels
()
==
_elemChannels
)
||
(
cols
==
_elemChannels
)))
||
((
dims
==
2
&&
(((
rows
==
1
||
cols
==
1
)
&&
channels
()
==
_elemChannels
)
||
(
cols
==
_elemChannels
&&
channels
()
==
1
)))
||
(
dims
==
3
&&
channels
()
==
1
&&
size
.
p
[
2
]
==
_elemChannels
&&
(
size
.
p
[
0
]
==
1
||
size
.
p
[
1
]
==
1
)
&&
(
isContinuous
()
||
step
.
p
[
1
]
==
step
.
p
[
2
]
*
size
.
p
[
2
])))
?
(
int
)(
total
()
*
channels
()
/
_elemChannels
)
:
-
1
;
...
...
modules/core/test/test_operations.cpp
View file @
98fdd704
...
...
@@ -998,6 +998,23 @@ bool CV_OperationsTest::operations1()
add
(
Mat
::
zeros
(
6
,
1
,
CV_64F
),
1
,
c
,
noArray
(),
c
.
type
());
CV_Assert
(
norm
(
Matx61f
(
1.
f
,
1.
f
,
1.
f
,
1.
f
,
1.
f
,
1.
f
),
c
,
CV_C
)
==
0
);
vector
<
Point2f
>
pt2d
(
3
);
vector
<
Point3d
>
pt3d
(
2
);
CV_Assert
(
Mat
(
pt2d
).
checkVector
(
2
)
==
3
&&
Mat
(
pt2d
).
checkVector
(
3
)
<
0
&&
Mat
(
pt3d
).
checkVector
(
2
)
<
0
&&
Mat
(
pt3d
).
checkVector
(
3
)
==
2
);
Matx44f
m44
(
0.8147
f
,
0.6324
f
,
0.9575
f
,
0.9572
f
,
0.9058
f
,
0.0975
f
,
0.9649
f
,
0.4854
f
,
0.1270
f
,
0.2785
f
,
0.1576
f
,
0.8003
f
,
0.9134
f
,
0.5469
f
,
0.9706
f
,
0.1419
f
);
double
d
=
determinant
(
m44
);
CV_Assert
(
fabs
(
d
-
(
-
0.0262
))
<=
0.001
);
Cv32suf
z
;
z
.
i
=
0x80000000
;
CV_Assert
(
cvFloor
(
z
.
f
)
==
0
&&
cvCeil
(
z
.
f
)
==
0
&&
cvRound
(
z
.
f
)
==
0
);
}
catch
(
const
test_excep
&
)
{
...
...
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