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
fa109b94
Commit
fa109b94
authored
Sep 18, 2017
by
Dmitry Kurtaev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update 16UC thresholding
parent
ca245e99
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
166 additions
and
263 deletions
+166
-263
thresh.cpp
modules/imgproc/src/thresh.cpp
+105
-260
test_thresh.cpp
modules/imgproc/test/test_thresh.cpp
+61
-3
No files found.
modules/imgproc/src/thresh.cpp
View file @
fa109b94
...
...
@@ -49,6 +49,78 @@
namespace
cv
{
template
<
typename
T
>
static
inline
T
threshBinary
(
const
T
&
src
,
const
T
&
thresh
,
const
T
&
maxval
)
{
return
src
>
thresh
?
maxval
:
0
;
}
template
<
typename
T
>
static
inline
T
threshBinaryInv
(
const
T
&
src
,
const
T
&
thresh
,
const
T
&
maxval
)
{
return
src
<=
thresh
?
maxval
:
0
;
}
template
<
typename
T
>
static
inline
T
threshTrunc
(
const
T
&
src
,
const
T
&
thresh
)
{
return
std
::
min
(
src
,
thresh
);
}
template
<
typename
T
>
static
inline
T
threshToZero
(
const
T
&
src
,
const
T
&
thresh
)
{
return
src
>
thresh
?
src
:
0
;
}
template
<
typename
T
>
static
inline
T
threshToZeroInv
(
const
T
&
src
,
const
T
&
thresh
)
{
return
src
<=
thresh
?
src
:
0
;
}
template
<
typename
T
>
static
void
threshGeneric
(
Size
roi
,
const
T
*
src
,
size_t
src_step
,
T
*
dst
,
size_t
dst_step
,
T
thresh
,
T
maxval
,
int
type
)
{
int
i
=
0
,
j
;
switch
(
type
)
{
case
THRESH_BINARY
:
for
(;
i
<
roi
.
height
;
i
++
,
src
+=
src_step
,
dst
+=
dst_step
)
for
(
j
=
0
;
j
<
roi
.
width
;
j
++
)
dst
[
j
]
=
threshBinary
<
T
>
(
src
[
j
],
thresh
,
maxval
);
return
;
case
THRESH_BINARY_INV
:
for
(;
i
<
roi
.
height
;
i
++
,
src
+=
src_step
,
dst
+=
dst_step
)
for
(
j
=
0
;
j
<
roi
.
width
;
j
++
)
dst
[
j
]
=
threshBinaryInv
<
T
>
(
src
[
j
],
thresh
,
maxval
);
return
;
case
THRESH_TRUNC
:
for
(;
i
<
roi
.
height
;
i
++
,
src
+=
src_step
,
dst
+=
dst_step
)
for
(
j
=
0
;
j
<
roi
.
width
;
j
++
)
dst
[
j
]
=
threshTrunc
<
T
>
(
src
[
j
],
thresh
);
return
;
case
THRESH_TOZERO
:
for
(;
i
<
roi
.
height
;
i
++
,
src
+=
src_step
,
dst
+=
dst_step
)
for
(
j
=
0
;
j
<
roi
.
width
;
j
++
)
dst
[
j
]
=
threshToZero
<
T
>
(
src
[
j
],
thresh
);
return
;
case
THRESH_TOZERO_INV
:
for
(;
i
<
roi
.
height
;
i
++
,
src
+=
src_step
,
dst
+=
dst_step
)
for
(
j
=
0
;
j
<
roi
.
width
;
j
++
)
dst
[
j
]
=
threshToZeroInv
<
T
>
(
src
[
j
],
thresh
);
return
;
default
:
CV_Error
(
CV_StsBadArg
,
""
);
return
;
}
}
static
void
thresh_8u
(
const
Mat
&
_src
,
Mat
&
_dst
,
uchar
thresh
,
uchar
maxval
,
int
type
)
{
...
...
@@ -274,8 +346,8 @@ thresh_16u(const Mat& _src, Mat& _dst, ushort thresh, ushort maxval, int type)
{
Size
roi
=
_src
.
size
();
roi
.
width
*=
_src
.
channels
();
size_t
src_step
=
_src
.
step
;
size_t
dst_step
=
_dst
.
step
;
size_t
src_step
=
_src
.
step
/
_src
.
elemSize1
()
;
size_t
dst_step
=
_dst
.
step
/
_dst
.
elemSize1
()
;
if
(
_src
.
isContinuous
()
&&
_dst
.
isContinuous
())
{
...
...
@@ -288,16 +360,13 @@ thresh_16u(const Mat& _src, Mat& _dst, ushort thresh, ushort maxval, int type)
// HAVE_IPP not supported
int
j
=
0
;
const
ushort
*
src
=
_src
.
ptr
<
ushort
>
();
ushort
*
dst
=
_dst
.
ptr
<
ushort
>
();
// CV_SIMD128 not supported
#if CV_SIMD128
bool
useSIMD
=
checkHardwareSupport
(
CV_CPU_SSE2
)
||
checkHardwareSupport
(
CV_CPU_NEON
);
if
(
useSIMD
)
{
int
i
;
int
i
,
j
;
v_uint16x8
thresh_u
=
v_setall_u16
(
thresh
);
v_uint16x8
maxval16
=
v_setall_u16
(
maxval
);
...
...
@@ -318,6 +387,9 @@ thresh_16u(const Mat& _src, Mat& _dst, ushort thresh, ushort maxval, int type)
v_store
(
dst
+
j
,
v0
);
v_store
(
dst
+
j
+
8
,
v1
);
}
for
(;
j
<
roi
.
width
;
j
++
)
dst
[
j
]
=
threshBinary
<
ushort
>
(
src
[
j
],
thresh
,
maxval
);
}
break
;
...
...
@@ -339,7 +411,7 @@ thresh_16u(const Mat& _src, Mat& _dst, ushort thresh, ushort maxval, int type)
}
for
(;
j
<
roi
.
width
;
j
++
)
dst
[
j
]
=
src
[
j
]
<=
thresh
?
maxval
:
0
;
dst
[
j
]
=
threshBinaryInv
<
ushort
>
(
src
[
j
],
thresh
,
maxval
)
;
}
break
;
...
...
@@ -359,7 +431,7 @@ thresh_16u(const Mat& _src, Mat& _dst, ushort thresh, ushort maxval, int type)
}
for
(;
j
<
roi
.
width
;
j
++
)
dst
[
j
]
=
std
::
min
(
src
[
j
],
thresh
);
dst
[
j
]
=
threshTrunc
<
ushort
>
(
src
[
j
],
thresh
);
}
break
;
...
...
@@ -379,10 +451,7 @@ thresh_16u(const Mat& _src, Mat& _dst, ushort thresh, ushort maxval, int type)
}
for
(;
j
<
roi
.
width
;
j
++
)
{
short
v
=
src
[
j
];
dst
[
j
]
=
v
>
thresh
?
v
:
0
;
}
dst
[
j
]
=
threshToZero
<
ushort
>
(
src
[
j
],
thresh
);
}
break
;
...
...
@@ -402,10 +471,7 @@ thresh_16u(const Mat& _src, Mat& _dst, ushort thresh, ushort maxval, int type)
}
for
(;
j
<
roi
.
width
;
j
++
)
{
short
v
=
src
[
j
];
dst
[
j
]
=
v
<=
thresh
?
v
:
0
;
}
dst
[
j
]
=
threshToZeroInv
<
ushort
>
(
src
[
j
],
thresh
);
}
break
;
}
...
...
@@ -413,65 +479,13 @@ thresh_16u(const Mat& _src, Mat& _dst, ushort thresh, ushort maxval, int type)
else
#endif
{
int
i
;
switch
(
type
)
{
case
THRESH_BINARY
:
for
(
i
=
0
;
i
<
roi
.
height
;
i
++
,
src
+=
src_step
,
dst
+=
dst_step
)
{
for
(
j
=
0
;
j
<
roi
.
width
;
j
++
)
dst
[
j
]
=
src
[
j
]
>
thresh
?
maxval
:
0
;
}
break
;
case
THRESH_BINARY_INV
:
for
(
i
=
0
;
i
<
roi
.
height
;
i
++
,
src
+=
src_step
,
dst
+=
dst_step
)
{
for
(
j
=
0
;
j
<
roi
.
width
;
j
++
)
dst
[
j
]
=
src
[
j
]
<=
thresh
?
maxval
:
0
;
}
break
;
case
THRESH_TRUNC
:
for
(
i
=
0
;
i
<
roi
.
height
;
i
++
,
src
+=
src_step
,
dst
+=
dst_step
)
{
for
(
j
=
0
;
j
<
roi
.
width
;
j
++
)
dst
[
j
]
=
std
::
min
(
src
[
j
],
thresh
);
}
break
;
case
THRESH_TOZERO
:
for
(
i
=
0
;
i
<
roi
.
height
;
i
++
,
src
+=
src_step
,
dst
+=
dst_step
)
{
for
(
j
=
0
;
j
<
roi
.
width
;
j
++
)
{
short
v
=
src
[
j
];
dst
[
j
]
=
v
>
thresh
?
v
:
0
;
}
}
break
;
case
THRESH_TOZERO_INV
:
for
(
i
=
0
;
i
<
roi
.
height
;
i
++
,
src
+=
src_step
,
dst
+=
dst_step
)
{
for
(
j
=
0
;
j
<
roi
.
width
;
j
++
)
{
short
v
=
src
[
j
];
dst
[
j
]
=
v
<=
thresh
?
v
:
0
;
}
}
break
;
default
:
CV_Error
(
CV_StsBadArg
,
""
);
return
;
}
threshGeneric
<
ushort
>
(
roi
,
src
,
src_step
,
dst
,
dst_step
,
thresh
,
maxval
,
type
);
}
}
static
void
thresh_16s
(
const
Mat
&
_src
,
Mat
&
_dst
,
short
thresh
,
short
maxval
,
int
type
)
{
int
i
,
j
;
Size
roi
=
_src
.
size
();
roi
.
width
*=
_src
.
channels
();
const
short
*
src
=
_src
.
ptr
<
short
>
();
...
...
@@ -546,6 +560,7 @@ thresh_16s( const Mat& _src, Mat& _dst, short thresh, short maxval, int type )
bool
useSIMD
=
checkHardwareSupport
(
CV_CPU_SSE2
)
||
checkHardwareSupport
(
CV_CPU_NEON
);
if
(
useSIMD
)
{
int
i
,
j
;
v_int16x8
thresh8
=
v_setall_s16
(
thresh
);
v_int16x8
maxval8
=
v_setall_s16
(
maxval
);
...
...
@@ -569,7 +584,7 @@ thresh_16s( const Mat& _src, Mat& _dst, short thresh, short maxval, int type )
}
for
(
;
j
<
roi
.
width
;
j
++
)
dst
[
j
]
=
src
[
j
]
>
thresh
?
maxval
:
0
;
dst
[
j
]
=
threshBinary
<
short
>
(
src
[
j
],
thresh
,
maxval
)
;
}
break
;
...
...
@@ -591,7 +606,7 @@ thresh_16s( const Mat& _src, Mat& _dst, short thresh, short maxval, int type )
}
for
(
;
j
<
roi
.
width
;
j
++
)
dst
[
j
]
=
src
[
j
]
<=
thresh
?
maxval
:
0
;
dst
[
j
]
=
threshBinaryInv
<
short
>
(
src
[
j
],
thresh
,
maxval
)
;
}
break
;
...
...
@@ -611,7 +626,7 @@ thresh_16s( const Mat& _src, Mat& _dst, short thresh, short maxval, int type )
}
for
(
;
j
<
roi
.
width
;
j
++
)
dst
[
j
]
=
std
::
min
(
src
[
j
],
thresh
);
dst
[
j
]
=
threshTrunc
<
short
>
(
src
[
j
],
thresh
);
}
break
;
...
...
@@ -631,10 +646,7 @@ thresh_16s( const Mat& _src, Mat& _dst, short thresh, short maxval, int type )
}
for
(
;
j
<
roi
.
width
;
j
++
)
{
short
v
=
src
[
j
];
dst
[
j
]
=
v
>
thresh
?
v
:
0
;
}
dst
[
j
]
=
threshToZero
<
short
>
(
src
[
j
],
thresh
);
}
break
;
...
...
@@ -654,10 +666,7 @@ thresh_16s( const Mat& _src, Mat& _dst, short thresh, short maxval, int type )
}
for
(
;
j
<
roi
.
width
;
j
++
)
{
short
v
=
src
[
j
];
dst
[
j
]
=
v
<=
thresh
?
v
:
0
;
}
dst
[
j
]
=
threshToZeroInv
<
short
>
(
src
[
j
],
thresh
);
}
break
;
default
:
...
...
@@ -667,56 +676,7 @@ thresh_16s( const Mat& _src, Mat& _dst, short thresh, short maxval, int type )
else
#endif
{
switch
(
type
)
{
case
THRESH_BINARY
:
for
(
i
=
0
;
i
<
roi
.
height
;
i
++
,
src
+=
src_step
,
dst
+=
dst_step
)
{
for
(
j
=
0
;
j
<
roi
.
width
;
j
++
)
dst
[
j
]
=
src
[
j
]
>
thresh
?
maxval
:
0
;
}
break
;
case
THRESH_BINARY_INV
:
for
(
i
=
0
;
i
<
roi
.
height
;
i
++
,
src
+=
src_step
,
dst
+=
dst_step
)
{
for
(
j
=
0
;
j
<
roi
.
width
;
j
++
)
dst
[
j
]
=
src
[
j
]
<=
thresh
?
maxval
:
0
;
}
break
;
case
THRESH_TRUNC
:
for
(
i
=
0
;
i
<
roi
.
height
;
i
++
,
src
+=
src_step
,
dst
+=
dst_step
)
{
for
(
j
=
0
;
j
<
roi
.
width
;
j
++
)
dst
[
j
]
=
std
::
min
(
src
[
j
],
thresh
);
}
break
;
case
THRESH_TOZERO
:
for
(
i
=
0
;
i
<
roi
.
height
;
i
++
,
src
+=
src_step
,
dst
+=
dst_step
)
{
for
(
j
=
0
;
j
<
roi
.
width
;
j
++
)
{
short
v
=
src
[
j
];
dst
[
j
]
=
v
>
thresh
?
v
:
0
;
}
}
break
;
case
THRESH_TOZERO_INV
:
for
(
i
=
0
;
i
<
roi
.
height
;
i
++
,
src
+=
src_step
,
dst
+=
dst_step
)
{
for
(
j
=
0
;
j
<
roi
.
width
;
j
++
)
{
short
v
=
src
[
j
];
dst
[
j
]
=
v
<=
thresh
?
v
:
0
;
}
}
break
;
default
:
CV_Error
(
CV_StsBadArg
,
""
);
return
;
}
threshGeneric
<
short
>
(
roi
,
src
,
src_step
,
dst
,
dst_step
,
thresh
,
maxval
,
type
);
}
}
...
...
@@ -724,7 +684,6 @@ thresh_16s( const Mat& _src, Mat& _dst, short thresh, short maxval, int type )
static
void
thresh_32f
(
const
Mat
&
_src
,
Mat
&
_dst
,
float
thresh
,
float
maxval
,
int
type
)
{
int
i
,
j
;
Size
roi
=
_src
.
size
();
roi
.
width
*=
_src
.
channels
();
const
float
*
src
=
_src
.
ptr
<
float
>
();
...
...
@@ -781,6 +740,7 @@ thresh_32f( const Mat& _src, Mat& _dst, float thresh, float maxval, int type )
bool
useSIMD
=
checkHardwareSupport
(
CV_CPU_SSE2
)
||
checkHardwareSupport
(
CV_CPU_NEON
);
if
(
useSIMD
)
{
int
i
,
j
;
v_float32x4
thresh4
=
v_setall_f32
(
thresh
);
v_float32x4
maxval4
=
v_setall_f32
(
maxval
);
...
...
@@ -804,7 +764,7 @@ thresh_32f( const Mat& _src, Mat& _dst, float thresh, float maxval, int type )
}
for
(
;
j
<
roi
.
width
;
j
++
)
dst
[
j
]
=
src
[
j
]
>
thresh
?
maxval
:
0
;
dst
[
j
]
=
threshBinary
<
float
>
(
src
[
j
],
thresh
,
maxval
)
;
}
break
;
...
...
@@ -826,7 +786,7 @@ thresh_32f( const Mat& _src, Mat& _dst, float thresh, float maxval, int type )
}
for
(
;
j
<
roi
.
width
;
j
++
)
dst
[
j
]
=
src
[
j
]
<=
thresh
?
maxval
:
0
;
dst
[
j
]
=
threshBinaryInv
<
float
>
(
src
[
j
],
thresh
,
maxval
)
;
}
break
;
...
...
@@ -846,7 +806,7 @@ thresh_32f( const Mat& _src, Mat& _dst, float thresh, float maxval, int type )
}
for
(
;
j
<
roi
.
width
;
j
++
)
dst
[
j
]
=
std
::
min
(
src
[
j
],
thresh
);
dst
[
j
]
=
threshTrunc
<
float
>
(
src
[
j
],
thresh
);
}
break
;
...
...
@@ -866,10 +826,7 @@ thresh_32f( const Mat& _src, Mat& _dst, float thresh, float maxval, int type )
}
for
(
;
j
<
roi
.
width
;
j
++
)
{
float
v
=
src
[
j
];
dst
[
j
]
=
v
>
thresh
?
v
:
0
;
}
dst
[
j
]
=
threshToZero
<
float
>
(
src
[
j
],
thresh
);
}
break
;
...
...
@@ -889,10 +846,7 @@ thresh_32f( const Mat& _src, Mat& _dst, float thresh, float maxval, int type )
}
for
(
;
j
<
roi
.
width
;
j
++
)
{
float
v
=
src
[
j
];
dst
[
j
]
=
v
<=
thresh
?
v
:
0
;
}
dst
[
j
]
=
threshToZeroInv
<
float
>
(
src
[
j
],
thresh
);
}
break
;
default
:
...
...
@@ -902,63 +856,13 @@ thresh_32f( const Mat& _src, Mat& _dst, float thresh, float maxval, int type )
else
#endif
{
switch
(
type
)
{
case
THRESH_BINARY
:
for
(
i
=
0
;
i
<
roi
.
height
;
i
++
,
src
+=
src_step
,
dst
+=
dst_step
)
{
for
(
j
=
0
;
j
<
roi
.
width
;
j
++
)
dst
[
j
]
=
src
[
j
]
>
thresh
?
maxval
:
0
;
}
break
;
case
THRESH_BINARY_INV
:
for
(
i
=
0
;
i
<
roi
.
height
;
i
++
,
src
+=
src_step
,
dst
+=
dst_step
)
{
for
(
j
=
0
;
j
<
roi
.
width
;
j
++
)
dst
[
j
]
=
src
[
j
]
<=
thresh
?
maxval
:
0
;
}
break
;
case
THRESH_TRUNC
:
for
(
i
=
0
;
i
<
roi
.
height
;
i
++
,
src
+=
src_step
,
dst
+=
dst_step
)
{
for
(
j
=
0
;
j
<
roi
.
width
;
j
++
)
dst
[
j
]
=
std
::
min
(
src
[
j
],
thresh
);
}
break
;
case
THRESH_TOZERO
:
for
(
i
=
0
;
i
<
roi
.
height
;
i
++
,
src
+=
src_step
,
dst
+=
dst_step
)
{
for
(
j
=
0
;
j
<
roi
.
width
;
j
++
)
{
float
v
=
src
[
j
];
dst
[
j
]
=
v
>
thresh
?
v
:
0
;
}
}
break
;
case
THRESH_TOZERO_INV
:
for
(
i
=
0
;
i
<
roi
.
height
;
i
++
,
src
+=
src_step
,
dst
+=
dst_step
)
{
for
(
j
=
0
;
j
<
roi
.
width
;
j
++
)
{
float
v
=
src
[
j
];
dst
[
j
]
=
v
<=
thresh
?
v
:
0
;
}
}
break
;
default
:
CV_Error
(
CV_StsBadArg
,
""
);
return
;
}
threshGeneric
<
float
>
(
roi
,
src
,
src_step
,
dst
,
dst_step
,
thresh
,
maxval
,
type
);
}
}
static
void
thresh_64f
(
const
Mat
&
_src
,
Mat
&
_dst
,
double
thresh
,
double
maxval
,
int
type
)
{
int
i
,
j
;
Size
roi
=
_src
.
size
();
roi
.
width
*=
_src
.
channels
();
const
double
*
src
=
_src
.
ptr
<
double
>
();
...
...
@@ -976,6 +880,7 @@ thresh_64f(const Mat& _src, Mat& _dst, double thresh, double maxval, int type)
bool
useSIMD
=
checkHardwareSupport
(
CV_CPU_SSE2
)
||
checkHardwareSupport
(
CV_CPU_NEON
);
if
(
useSIMD
)
{
int
i
,
j
;
v_float64x2
thresh2
=
v_setall_f64
(
thresh
);
v_float64x2
maxval2
=
v_setall_f64
(
maxval
);
...
...
@@ -999,7 +904,7 @@ thresh_64f(const Mat& _src, Mat& _dst, double thresh, double maxval, int type)
}
for
(
;
j
<
roi
.
width
;
j
++
)
dst
[
j
]
=
src
[
j
]
>
thresh
?
maxval
:
0
;
dst
[
j
]
=
threshBinary
<
double
>
(
src
[
j
],
thresh
,
maxval
)
;
}
break
;
...
...
@@ -1021,7 +926,7 @@ thresh_64f(const Mat& _src, Mat& _dst, double thresh, double maxval, int type)
}
for
(
;
j
<
roi
.
width
;
j
++
)
dst
[
j
]
=
src
[
j
]
<=
thresh
?
maxval
:
0
;
dst
[
j
]
=
threshBinaryInv
<
double
>
(
src
[
j
],
thresh
,
maxval
)
;
}
break
;
...
...
@@ -1041,7 +946,7 @@ thresh_64f(const Mat& _src, Mat& _dst, double thresh, double maxval, int type)
}
for
(
;
j
<
roi
.
width
;
j
++
)
dst
[
j
]
=
std
::
min
(
src
[
j
],
thresh
);
dst
[
j
]
=
threshTrunc
<
double
>
(
src
[
j
],
thresh
);
}
break
;
...
...
@@ -1061,10 +966,7 @@ thresh_64f(const Mat& _src, Mat& _dst, double thresh, double maxval, int type)
}
for
(
;
j
<
roi
.
width
;
j
++
)
{
double
v
=
src
[
j
];
dst
[
j
]
=
v
>
thresh
?
v
:
0
;
}
dst
[
j
]
=
threshToZero
<
double
>
(
src
[
j
],
thresh
);
}
break
;
...
...
@@ -1084,10 +986,7 @@ thresh_64f(const Mat& _src, Mat& _dst, double thresh, double maxval, int type)
}
for
(
;
j
<
roi
.
width
;
j
++
)
{
double
v
=
src
[
j
];
dst
[
j
]
=
v
<=
thresh
?
v
:
0
;
}
dst
[
j
]
=
threshToZeroInv
<
double
>
(
src
[
j
],
thresh
);
}
break
;
default
:
...
...
@@ -1097,61 +996,7 @@ thresh_64f(const Mat& _src, Mat& _dst, double thresh, double maxval, int type)
else
#endif
{
switch
(
type
)
{
case
THRESH_BINARY
:
for
(
i
=
0
;
i
<
roi
.
height
;
i
++
,
src
+=
src_step
,
dst
+=
dst_step
)
{
j
=
0
;
for
(
;
j
<
roi
.
width
;
j
++
)
dst
[
j
]
=
src
[
j
]
>
thresh
?
maxval
:
0
;
}
break
;
case
THRESH_BINARY_INV
:
for
(
i
=
0
;
i
<
roi
.
height
;
i
++
,
src
+=
src_step
,
dst
+=
dst_step
)
{
j
=
0
;
for
(
;
j
<
roi
.
width
;
j
++
)
dst
[
j
]
=
src
[
j
]
<=
thresh
?
maxval
:
0
;
}
break
;
case
THRESH_TRUNC
:
for
(
i
=
0
;
i
<
roi
.
height
;
i
++
,
src
+=
src_step
,
dst
+=
dst_step
)
{
j
=
0
;
for
(
;
j
<
roi
.
width
;
j
++
)
dst
[
j
]
=
std
::
min
(
src
[
j
],
thresh
);
}
break
;
case
THRESH_TOZERO
:
for
(
i
=
0
;
i
<
roi
.
height
;
i
++
,
src
+=
src_step
,
dst
+=
dst_step
)
{
j
=
0
;
for
(
;
j
<
roi
.
width
;
j
++
)
{
double
v
=
src
[
j
];
dst
[
j
]
=
v
>
thresh
?
v
:
0
;
}
}
break
;
case
THRESH_TOZERO_INV
:
for
(
i
=
0
;
i
<
roi
.
height
;
i
++
,
src
+=
src_step
,
dst
+=
dst_step
)
{
j
=
0
;
for
(
;
j
<
roi
.
width
;
j
++
)
{
double
v
=
src
[
j
];
dst
[
j
]
=
v
<=
thresh
?
v
:
0
;
}
}
break
;
default
:
CV_Error
(
CV_StsBadArg
,
""
);
return
;
}
threshGeneric
<
double
>
(
roi
,
src
,
src_step
,
dst
,
dst_step
,
thresh
,
maxval
,
type
);
}
}
...
...
@@ -1631,7 +1476,7 @@ double cv::threshold( InputArray _src, OutputArray _dst, double thresh, double m
int
imaxval
=
cvRound
(
maxval
);
if
(
type
==
THRESH_TRUNC
)
imaxval
=
ithresh
;
imaxval
=
saturate_cast
<
short
>
(
imaxval
);
imaxval
=
saturate_cast
<
u
short
>
(
imaxval
);
int
ushrt_min
=
0
;
if
(
ithresh
<
ushrt_min
||
ithresh
>=
USHRT_MAX
)
...
...
modules/imgproc/test/test_thresh.cpp
View file @
fa109b94
...
...
@@ -75,9 +75,9 @@ void CV_ThreshTest::get_test_array_types_and_sizes( int test_case_idx,
vector
<
vector
<
Size
>
>&
sizes
,
vector
<
vector
<
int
>
>&
types
)
{
RNG
&
rng
=
ts
->
get_rng
();
int
depth
=
cvtest
::
randInt
(
rng
)
%
4
,
cn
=
cvtest
::
randInt
(
rng
)
%
4
+
1
;
int
depth
=
cvtest
::
randInt
(
rng
)
%
5
,
cn
=
cvtest
::
randInt
(
rng
)
%
4
+
1
;
cvtest
::
ArrayTest
::
get_test_array_types_and_sizes
(
test_case_idx
,
sizes
,
types
);
depth
=
depth
==
0
?
CV_8U
:
depth
==
1
?
CV_16S
:
depth
==
2
?
CV_32F
:
CV_64F
;
depth
=
depth
==
0
?
CV_8U
:
depth
==
1
?
CV_16S
:
depth
==
2
?
CV_
16U
:
depth
==
3
?
CV_
32F
:
CV_64F
;
types
[
INPUT
][
0
]
=
types
[
OUTPUT
][
0
]
=
types
[
REF_OUTPUT
][
0
]
=
CV_MAKETYPE
(
depth
,
cn
);
thresh_type
=
cvtest
::
randInt
(
rng
)
%
5
;
...
...
@@ -98,6 +98,15 @@ void CV_ThreshTest::get_test_array_types_and_sizes( int test_case_idx,
if
(
cvtest
::
randInt
(
rng
)
%
4
==
0
)
max_val
=
(
double
)
SHRT_MAX
;
}
else
if
(
depth
==
CV_16U
)
{
double
min_val
=
-
100.
f
;
max_val
=
USHRT_MAX
+
100.
f
;
thresh_val
=
(
cvtest
::
randReal
(
rng
)
*
(
max_val
-
min_val
)
+
min_val
);
max_val
=
(
cvtest
::
randReal
(
rng
)
*
(
max_val
-
min_val
)
+
min_val
);
if
(
cvtest
::
randInt
(
rng
)
%
4
==
0
)
max_val
=
(
double
)
USHRT_MAX
;
}
else
{
thresh_val
=
(
cvtest
::
randReal
(
rng
)
*
1000.
-
500.
);
...
...
@@ -138,13 +147,18 @@ static void test_threshold( const Mat& _src, Mat& _dst,
ithresh2
=
saturate_cast
<
short
>
(
ithresh
);
imaxval
=
saturate_cast
<
short
>
(
maxval
);
}
else
if
(
depth
==
CV_16U
)
{
ithresh2
=
saturate_cast
<
ushort
>
(
ithresh
);
imaxval
=
saturate_cast
<
ushort
>
(
maxval
);
}
else
{
ithresh2
=
cvRound
(
ithresh
);
imaxval
=
cvRound
(
maxval
);
}
assert
(
depth
==
CV_8U
||
depth
==
CV_16S
||
depth
==
CV_32F
||
depth
==
CV_64F
);
assert
(
depth
==
CV_8U
||
depth
==
CV_16S
||
depth
==
CV_
16U
||
depth
==
CV_
32F
||
depth
==
CV_64F
);
switch
(
thresh_type
)
{
...
...
@@ -165,6 +179,13 @@ static void test_threshold( const Mat& _src, Mat& _dst,
for
(
j
=
0
;
j
<
width_n
;
j
++
)
dst
[
j
]
=
(
short
)(
src
[
j
]
>
ithresh
?
imaxval
:
0
);
}
else
if
(
depth
==
CV_16U
)
{
const
ushort
*
src
=
_src
.
ptr
<
ushort
>
(
i
);
ushort
*
dst
=
_dst
.
ptr
<
ushort
>
(
i
);
for
(
j
=
0
;
j
<
width_n
;
j
++
)
dst
[
j
]
=
(
ushort
)(
src
[
j
]
>
ithresh
?
imaxval
:
0
);
}
else
if
(
depth
==
CV_32F
)
{
const
float
*
src
=
_src
.
ptr
<
float
>
(
i
);
...
...
@@ -198,6 +219,13 @@ static void test_threshold( const Mat& _src, Mat& _dst,
for
(
j
=
0
;
j
<
width_n
;
j
++
)
dst
[
j
]
=
(
short
)(
src
[
j
]
>
ithresh
?
0
:
imaxval
);
}
else
if
(
depth
==
CV_16U
)
{
const
ushort
*
src
=
_src
.
ptr
<
ushort
>
(
i
);
ushort
*
dst
=
_dst
.
ptr
<
ushort
>
(
i
);
for
(
j
=
0
;
j
<
width_n
;
j
++
)
dst
[
j
]
=
(
ushort
)(
src
[
j
]
>
ithresh
?
0
:
imaxval
);
}
else
if
(
depth
==
CV_32F
)
{
const
float
*
src
=
_src
.
ptr
<
float
>
(
i
);
...
...
@@ -237,6 +265,16 @@ static void test_threshold( const Mat& _src, Mat& _dst,
dst
[
j
]
=
(
short
)(
s
>
ithresh
?
ithresh2
:
s
);
}
}
else
if
(
depth
==
CV_16U
)
{
const
ushort
*
src
=
_src
.
ptr
<
ushort
>
(
i
);
ushort
*
dst
=
_dst
.
ptr
<
ushort
>
(
i
);
for
(
j
=
0
;
j
<
width_n
;
j
++
)
{
int
s
=
src
[
j
];
dst
[
j
]
=
(
ushort
)(
s
>
ithresh
?
ithresh2
:
s
);
}
}
else
if
(
depth
==
CV_32F
)
{
const
float
*
src
=
_src
.
ptr
<
float
>
(
i
);
...
...
@@ -282,6 +320,16 @@ static void test_threshold( const Mat& _src, Mat& _dst,
dst
[
j
]
=
(
short
)(
s
>
ithresh
?
s
:
0
);
}
}
else
if
(
depth
==
CV_16U
)
{
const
ushort
*
src
=
_src
.
ptr
<
ushort
>
(
i
);
ushort
*
dst
=
_dst
.
ptr
<
ushort
>
(
i
);
for
(
j
=
0
;
j
<
width_n
;
j
++
)
{
int
s
=
src
[
j
];
dst
[
j
]
=
(
ushort
)(
s
>
ithresh
?
s
:
0
);
}
}
else
if
(
depth
==
CV_32F
)
{
const
float
*
src
=
_src
.
ptr
<
float
>
(
i
);
...
...
@@ -327,6 +375,16 @@ static void test_threshold( const Mat& _src, Mat& _dst,
dst
[
j
]
=
(
short
)(
s
>
ithresh
?
0
:
s
);
}
}
else
if
(
depth
==
CV_16U
)
{
const
ushort
*
src
=
_src
.
ptr
<
ushort
>
(
i
);
ushort
*
dst
=
_dst
.
ptr
<
ushort
>
(
i
);
for
(
j
=
0
;
j
<
width_n
;
j
++
)
{
int
s
=
src
[
j
];
dst
[
j
]
=
(
ushort
)(
s
>
ithresh
?
0
:
s
);
}
}
else
if
(
depth
==
CV_32F
)
{
const
float
*
src
=
_src
.
ptr
<
float
>
(
i
);
...
...
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