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
ff2d76ec
Commit
ff2d76ec
authored
May 13, 2014
by
Roman Donchenko
Committed by
OpenCV Buildbot
May 13, 2014
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2699 from GregoryMorse:patch-1
parents
bc7b2160
38db7a78
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
13 deletions
+11
-13
system.cpp
modules/core/src/system.cpp
+8
-12
matching.cpp
modules/objdetect/src/matching.cpp
+3
-1
No files found.
modules/core/src/system.cpp
View file @
ff2d76ec
...
...
@@ -423,27 +423,23 @@ string format( const char* fmt, ... )
string
tempfile
(
const
char
*
suffix
)
{
#ifdef HAVE_WINRT
std
::
wstring
temp_dir
=
L""
;
const
wchar_t
*
opencv_temp_dir
=
_wgetenv
(
L"OPENCV_TEMP_PATH"
);
if
(
opencv_temp_dir
)
temp_dir
=
std
::
wstring
(
opencv_temp_dir
);
#else
string
fname
;
#ifndef HAVE_WINRT
const
char
*
temp_dir
=
getenv
(
"OPENCV_TEMP_PATH"
);
#endif
string
fname
;
#if defined WIN32 || defined _WIN32
#ifdef HAVE_WINRT
RoInitialize
(
RO_INIT_MULTITHREADED
);
std
::
wstring
temp_dir2
;
if
(
temp_dir
.
empty
())
temp_dir
=
GetTempPathWinRT
();
std
::
wstring
temp_dir
=
L""
;
const
wchar_t
*
opencv_temp_dir
=
GetTempPathWinRT
().
c_str
();
if
(
opencv_temp_dir
)
temp_dir
=
std
::
wstring
(
opencv_temp_dir
);
std
::
wstring
temp_file
;
temp_file
=
GetTempFileNameWinRT
(
L"ocv"
);
if
(
temp_file
.
empty
())
return
st
d
::
st
ring
();
return
string
();
temp_file
=
temp_dir
+
std
::
wstring
(
L"
\\
"
)
+
temp_file
;
DeleteFileW
(
temp_file
.
c_str
());
...
...
@@ -451,7 +447,7 @@ string tempfile( const char* suffix )
char
aname
[
MAX_PATH
];
size_t
copied
=
wcstombs
(
aname
,
temp_file
.
c_str
(),
MAX_PATH
);
CV_Assert
((
copied
!=
MAX_PATH
)
&&
(
copied
!=
(
size_t
)
-
1
));
fname
=
st
d
::
st
ring
(
aname
);
fname
=
string
(
aname
);
RoUninitialize
();
#else
char
temp_dir2
[
MAX_PATH
]
=
{
0
};
...
...
modules/objdetect/src/matching.cpp
View file @
ff2d76ec
...
...
@@ -524,7 +524,9 @@ int addNullableBorder(CvLSVMFeatureMap *map, int bx, int by)
float
*
new_map
;
sizeX
=
map
->
sizeX
+
2
*
bx
;
sizeY
=
map
->
sizeY
+
2
*
by
;
new_map
=
(
float
*
)
malloc
(
sizeof
(
float
)
*
sizeX
*
sizeY
*
map
->
numFeatures
);
// fix for Windows Phone 8 ARM compiler
size_t
size
=
sizeof
(
float
)
*
sizeX
*
sizeY
*
map
->
numFeatures
;
new_map
=
(
float
*
)
malloc
(
size
);
for
(
i
=
0
;
i
<
sizeX
*
sizeY
*
map
->
numFeatures
;
i
++
)
{
new_map
[
i
]
=
0.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