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
4612b4b8
Commit
4612b4b8
authored
May 13, 2014
by
Alexander Karsakov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added clamp() for THRESH_TRUNC mode
parent
eba1be71
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
7 deletions
+11
-7
threshold.cl
modules/imgproc/src/opencl/threshold.cl
+6
-6
thresh.cpp
modules/imgproc/src/thresh.cpp
+5
-1
No files found.
modules/imgproc/src/opencl/threshold.cl
View file @
4612b4b8
...
@@ -53,7 +53,7 @@
...
@@ -53,7 +53,7 @@
__kernel
void
threshold
(
__global
const
uchar
*
srcptr,
int
src_step,
int
src_offset,
__kernel
void
threshold
(
__global
const
uchar
*
srcptr,
int
src_step,
int
src_offset,
__global
uchar
*
dstptr,
int
dst_step,
int
dst_offset,
int
rows,
int
cols,
__global
uchar
*
dstptr,
int
dst_step,
int
dst_offset,
int
rows,
int
cols,
T1
thresh,
T1
max_val
)
T1
thresh,
T1
max_val
,
T1
min_val
)
{
{
int
gx
=
get_global_id
(
0
)
;
int
gx
=
get_global_id
(
0
)
;
int
gy
=
get_global_id
(
1
)
;
int
gy
=
get_global_id
(
1
)
;
...
@@ -67,15 +67,15 @@ __kernel void threshold(__global const uchar * srcptr, int src_step, int src_off
...
@@ -67,15 +67,15 @@ __kernel void threshold(__global const uchar * srcptr, int src_step, int src_off
__global
T
*
dst
=
(
__global
T
*
)(
dstptr
+
dst_index
)
;
__global
T
*
dst
=
(
__global
T
*
)(
dstptr
+
dst_index
)
;
#
ifdef
THRESH_BINARY
#
ifdef
THRESH_BINARY
dst[0]
=
sdata
>
(
T
)(
thresh
)
?
(
T
)(
max_val
)
:
(
T
)(
0
)
;
dst[0]
=
sdata
>
(
thresh
)
?
(
T
)(
max_val
)
:
(
T
)(
0
)
;
#
elif
defined
THRESH_BINARY_INV
#
elif
defined
THRESH_BINARY_INV
dst[0]
=
sdata
>
(
T
)(
thresh
)
?
(
T
)(
0
)
:
(
T
)(
max_val
)
;
dst[0]
=
sdata
>
(
thresh
)
?
(
T
)(
0
)
:
(
T
)(
max_val
)
;
#
elif
defined
THRESH_TRUNC
#
elif
defined
THRESH_TRUNC
dst[0]
=
sdata
>
(
T
)(
thresh
)
?
(
T
)(
thresh
)
:
sdata
;
dst[0]
=
clamp
(
sdata,
(
T
)
min_val,
(
T
)(
thresh
))
;
#
elif
defined
THRESH_TOZERO
#
elif
defined
THRESH_TOZERO
dst[0]
=
sdata
>
(
T
)(
thresh
)
?
sdata
:
(
T
)(
0
)
;
dst[0]
=
sdata
>
(
thresh
)
?
sdata
:
(
T
)(
0
)
;
#
elif
defined
THRESH_TOZERO_INV
#
elif
defined
THRESH_TOZERO_INV
dst[0]
=
sdata
>
(
T
)(
thresh
)
?
(
T
)(
0
)
:
sdata
;
dst[0]
=
sdata
>
(
thresh
)
?
(
T
)(
0
)
:
sdata
;
#
endif
#
endif
}
}
}
}
modules/imgproc/src/thresh.cpp
View file @
4612b4b8
...
@@ -847,9 +847,13 @@ static bool ocl_threshold( InputArray _src, OutputArray _dst, double & thresh, d
...
@@ -847,9 +847,13 @@ static bool ocl_threshold( InputArray _src, OutputArray _dst, double & thresh, d
if
(
depth
<=
CV_32S
)
if
(
depth
<=
CV_32S
)
thresh
=
cvFloor
(
thresh
);
thresh
=
cvFloor
(
thresh
);
const
double
min_vals
[]
=
{
0
,
CHAR_MIN
,
0
,
SHRT_MIN
,
INT_MIN
,
-
FLT_MAX
,
-
DBL_MAX
,
0
};
double
min_val
=
min_vals
[
depth
];
k
.
args
(
ocl
::
KernelArg
::
ReadOnlyNoSize
(
src
),
ocl
::
KernelArg
::
WriteOnly
(
dst
,
cn
,
kercn
),
k
.
args
(
ocl
::
KernelArg
::
ReadOnlyNoSize
(
src
),
ocl
::
KernelArg
::
WriteOnly
(
dst
,
cn
,
kercn
),
ocl
::
KernelArg
::
Constant
(
Mat
(
1
,
1
,
depth
,
Scalar
::
all
(
thresh
))),
ocl
::
KernelArg
::
Constant
(
Mat
(
1
,
1
,
depth
,
Scalar
::
all
(
thresh
))),
ocl
::
KernelArg
::
Constant
(
Mat
(
1
,
1
,
depth
,
Scalar
::
all
(
maxval
))));
ocl
::
KernelArg
::
Constant
(
Mat
(
1
,
1
,
depth
,
Scalar
::
all
(
maxval
))),
ocl
::
KernelArg
::
Constant
(
Mat
(
1
,
1
,
depth
,
Scalar
::
all
(
min_val
))));
size_t
globalsize
[
2
]
=
{
dst
.
cols
*
cn
/
kercn
,
dst
.
rows
};
size_t
globalsize
[
2
]
=
{
dst
.
cols
*
cn
/
kercn
,
dst
.
rows
};
return
k
.
run
(
2
,
globalsize
,
NULL
,
false
);
return
k
.
run
(
2
,
globalsize
,
NULL
,
false
);
...
...
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