Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
D
dlib
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
钟尚武
dlib
Commits
4329935f
Commit
4329935f
authored
Nov 05, 2013
by
Davis King
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added an overload of zero_border_pixels() that lets you give a rectangle as
input to define the non-border area.
parent
2fef9dcc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
55 additions
and
0 deletions
+55
-0
assign_image.h
dlib/image_transforms/assign_image.h
+33
-0
assign_image_abstract.h
dlib/image_transforms/assign_image_abstract.h
+22
-0
No files found.
dlib/image_transforms/assign_image.h
View file @
4329935f
...
@@ -274,6 +274,39 @@ namespace dlib
...
@@ -274,6 +274,39 @@ namespace dlib
assign_border_pixels
(
img
,
x_border_size
,
y_border_size
,
zero_pixel
);
assign_border_pixels
(
img
,
x_border_size
,
y_border_size
,
zero_pixel
);
}
}
// ----------------------------------------------------------------------------------------
template
<
typename
image_type
>
void
zero_border_pixels
(
image_type
&
img
,
rectangle
inside
)
{
inside
=
inside
.
intersect
(
get_rect
(
img
));
if
(
inside
.
is_empty
())
return
;
for
(
long
r
=
0
;
r
<
inside
.
top
();
++
r
)
{
for
(
long
c
=
0
;
c
<
img
.
nc
();
++
c
)
assign_pixel
(
img
[
r
][
c
],
0
);
}
for
(
long
r
=
inside
.
top
();
r
<=
inside
.
bottom
();
++
r
)
{
for
(
long
c
=
0
;
c
<
inside
.
left
();
++
c
)
assign_pixel
(
img
[
r
][
c
],
0
);
for
(
long
c
=
inside
.
right
()
+
1
;
c
<
img
.
nc
();
++
c
)
assign_pixel
(
img
[
r
][
c
],
0
);
}
for
(
long
r
=
inside
.
bottom
()
+
1
;
r
<
img
.
nr
();
++
r
)
{
for
(
long
c
=
0
;
c
<
img
.
nc
();
++
c
)
assign_pixel
(
img
[
r
][
c
],
0
);
}
}
// ----------------------------------------------------------------------------------------
// ----------------------------------------------------------------------------------------
}
}
...
...
dlib/image_transforms/assign_image_abstract.h
View file @
4329935f
...
@@ -165,6 +165,28 @@ namespace dlib
...
@@ -165,6 +165,28 @@ namespace dlib
(i.e. assigns 0 to every pixel in the border of img)
(i.e. assigns 0 to every pixel in the border of img)
!*/
!*/
// ----------------------------------------------------------------------------------------
template
<
typename
image_type
>
void
zero_border_pixels
(
image_type
&
img
,
rectangle
inside
);
/*!
requires
- image_type == is an implementation of array2d/array2d_kernel_abstract.h
- pixel_traits<typename image_type::type> is defined
ensures
- #img.nc() == img.nc()
- #img.nr() == img.nr()
(i.e. the size of img isn't changed by this function)
- All the pixels in img that are not contained inside the inside rectangle
given to this function are set to 0. That is, anything not "inside" is on
the border and set to 0.
!*/
// ----------------------------------------------------------------------------------------
// ----------------------------------------------------------------------------------------
}
}
...
...
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