Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
dlib
Commits
d9f38e98
Commit
d9f38e98
authored
Aug 10, 2013
by
Davis King
Browse files
Minor changes to avoid warnings in visual studio 2005
parent
c72f709b
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
dlib/geometry/point_transforms.h
dlib/geometry/point_transforms.h
+2
-2
dlib/image_loader/image_loader.h
dlib/image_loader/image_loader.h
+2
-2
No files found.
dlib/geometry/point_transforms.h
View file @
d9f38e98
...
...
@@ -259,9 +259,9 @@ namespace dlib
}
svd2
(
true
,
false
,
accum
,
u
,
w
,
v
);
long
i
=
index_of_min
(
w
);
long
j
=
index_of_min
(
w
);
return
point_transform_projective
(
reshape
(
colm
(
u
,
i
),
3
,
3
));
return
point_transform_projective
(
reshape
(
colm
(
u
,
j
),
3
,
3
));
}
// ----------------------------------------------------------------------------------------
...
...
dlib/image_loader/image_loader.h
View file @
d9f38e98
...
...
@@ -759,8 +759,8 @@ namespace dlib
std
::
vector
<
int64
>
man
(
image
.
size
());
std
::
vector
<
char
>
expbuf
;
// get the mantissa data
for
(
unsigned
long
i
=
0
;
i
<
man
.
size
();
++
i
)
deserialize
(
man
[
i
],
in
);
for
(
unsigned
long
j
=
0
;
j
<
man
.
size
();
++
j
)
deserialize
(
man
[
j
],
in
);
// get the compressed exponent data
deserialize
(
expbuf
,
in
);
typedef
entropy_decoder
::
kernel_2a
decoder_type
;
...
...
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