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
6af02c88
Commit
6af02c88
authored
Apr 06, 2013
by
Davis King
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed a bug in save_dng() that happened sometimes when saving
images with unsigned char pixels.
parent
24757e21
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
4 deletions
+5
-4
image_saver.h
dlib/image_saver/image_saver.h
+2
-1
image.cpp
dlib/test/image.cpp
+3
-3
No files found.
dlib/image_saver/image_saver.h
View file @
6af02c88
...
...
@@ -325,7 +325,8 @@ namespace dlib
{
unsigned
char
cur
;
assign_pixel
(
cur
,
image
[
r
][
c
]);
eem
.
encode
(
cur
-
predictor_grayscale
(
image
,
r
,
c
));
cur
-=
predictor_grayscale
(
image
,
r
,
c
);
eem
.
encode
(
cur
);
}
}
// write out the magic byte to mark the end of the data
...
...
dlib/test/image.cpp
View file @
6af02c88
...
...
@@ -488,7 +488,7 @@ namespace
{
for
(
long
c
=
0
;
c
<
15
;
++
c
)
{
img
[
r
][
c
]
=
static_cast
<
unsigned
char
>
(
r
*
14
+
c
);
img
[
r
][
c
]
=
static_cast
<
unsigned
char
>
(
r
*
14
+
c
*
111
);
}
}
...
...
@@ -514,7 +514,7 @@ namespace
{
for
(
long
c
=
0
;
c
<
15
;
++
c
)
{
DLIB_TEST
(
img
[
r
][
c
]
==
r
*
14
+
c
);
DLIB_TEST
(
img
[
r
][
c
]
==
static_cast
<
unsigned
char
>
(
r
*
14
+
c
*
111
)
);
}
}
...
...
@@ -532,7 +532,7 @@ namespace
{
for
(
long
c
=
0
;
c
<
15
;
++
c
)
{
DLIB_TEST
(
img
[
r
][
c
]
==
r
*
14
+
c
);
DLIB_TEST
(
img
[
r
][
c
]
==
static_cast
<
unsigned
char
>
(
r
*
14
+
c
*
111
)
);
}
}
}
...
...
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