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
86c7e183
Commit
86c7e183
authored
Sep 10, 2012
by
Alexander Smorkalov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #2316 Change default libnative_camera path implemented.
parent
e564a53c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
73 additions
and
39 deletions
+73
-39
CMakeLists.txt
modules/androidcamera/CMakeLists.txt
+1
-1
camera_activity.cpp
modules/androidcamera/src/camera_activity.cpp
+72
-38
No files found.
modules/androidcamera/CMakeLists.txt
View file @
86c7e183
...
...
@@ -5,7 +5,7 @@ ENDIF()
set
(
the_description
"Auxiliary module for Android native camera support"
)
set
(
OPENCV_MODULE_TYPE STATIC
)
ocv_define_module
(
androidcamera INTERNAL log dl
)
ocv_define_module
(
androidcamera INTERNAL
opencv_core
log dl
)
ocv_include_directories
(
"
${
CMAKE_CURRENT_SOURCE_DIR
}
/camera_wrapper"
)
# Android source tree for native camera
...
...
modules/androidcamera/src/camera_activity.cpp
View file @
86c7e183
#include <dlfcn.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <dirent.h>
#include <android/log.h>
#include <string>
#include <vector>
#include <algorithm>
#include <opencv2/core/version.hpp>
#include "camera_activity.hpp"
#include "camera_wrapper.h"
...
...
@@ -41,6 +45,7 @@ private:
static
bool
isConnectedToLib
;
static
std
::
string
getPathLibFolder
();
static
std
::
string
getDefaultPathLibFolder
();
static
CameraActivity
::
ErrorCode
connectToLib
();
static
CameraActivity
::
ErrorCode
getSymbolFromLib
(
void
*
libHandle
,
const
char
*
symbolName
,
void
**
ppSymbol
);
static
void
fillListWrapperLibs
(
const
string
&
folderPath
,
vector
<
string
>&
listLibs
);
...
...
@@ -55,8 +60,6 @@ private:
};
std
::
string
CameraWrapperConnector
::
pathLibFolder
;
#define DEFAULT_WRAPPER_PACKAGE_NAME "com.NativeCamera"
#define DEFAULT_PATH_LIB_FOLDER "/data/data/" DEFAULT_WRAPPER_PACKAGE_NAME "/lib/"
bool
CameraWrapperConnector
::
isConnectedToLib
=
false
;
InitCameraConnectC
CameraWrapperConnector
::
pInitCameraC
=
0
;
...
...
@@ -163,7 +166,13 @@ CameraActivity::ErrorCode CameraWrapperConnector::connectToLib()
}
dlerror
();
string
folderPath
=
getPathLibFolder
();
string
folderPath
=
getPathLibFolder
();
if
(
folderPath
.
empty
())
{
LOGD
(
"Trying to find native camera in default OpenCV packages"
);
folderPath
=
getDefaultPathLibFolder
();
}
LOGD
(
"CameraWrapperConnector::connectToLib: folderPath=%s"
,
folderPath
.
c_str
());
vector
<
string
>
listLibs
;
...
...
@@ -256,6 +265,31 @@ void CameraWrapperConnector::fillListWrapperLibs(const string& folderPath, vecto
}
}
std
::
string
CameraWrapperConnector
::
getDefaultPathLibFolder
()
{
const
string
packageList
[]
=
{
"tegra3"
,
"armv7a_neon"
,
"armv7a"
,
"armv5"
,
"x86"
};
for
(
size_t
i
=
0
;
i
<
5
;
i
++
)
{
char
path
[
128
];
sprintf
(
path
,
"/data/data/org.opencv.lib_v%d%d_%s/lib/"
,
CV_MAJOR_VERSION
,
CV_MINOR_VERSION
,
packageList
[
i
].
c_str
());
LOGD
(
"Trying package
\"
%s
\"
(
\"
%s
\"
)"
,
packageList
[
i
],
path
);
DIR
*
dir
=
opendir
(
path
);
if
(
!
dir
)
{
LOGD
(
"Package not found"
);
continue
;
}
else
{
closedir
(
dir
);
return
path
;
}
}
return
string
();
}
std
::
string
CameraWrapperConnector
::
getPathLibFolder
()
{
if
(
!
pathLibFolder
.
empty
())
...
...
@@ -278,41 +312,41 @@ std::string CameraWrapperConnector::getPathLibFolder()
{
while
(
fgets
(
lineBuf
,
sizeof
lineBuf
,
file
)
!=
NULL
)
{
//verify that line ends with library name
int
lineLength
=
strlen
(
lineBuf
);
int
libNameLength
=
strlen
(
libName
);
//trim end
for
(
int
i
=
lineLength
-
1
;
i
>=
0
&&
isspace
(
lineBuf
[
i
]);
--
i
)
{
lineBuf
[
i
]
=
0
;
--
lineLength
;
}
if
(
0
!=
strncmp
(
lineBuf
+
lineLength
-
libNameLength
,
libName
,
libNameLength
))
{
//the line does not contain the library name
continue
;
}
//extract path from smaps line
char
*
pathBegin
=
strchr
(
lineBuf
,
'/'
);
if
(
0
==
pathBegin
)
{
LOGE
(
"Strange error: could not find path beginning in lin
\"
%s
\"
"
,
lineBuf
);
continue
;
}
char
*
pathEnd
=
strrchr
(
pathBegin
,
'/'
);
pathEnd
[
1
]
=
0
;
LOGD
(
"Libraries folder found: %s"
,
pathBegin
);
fclose
(
file
);
return
pathBegin
;
//verify that line ends with library name
int
lineLength
=
strlen
(
lineBuf
);
int
libNameLength
=
strlen
(
libName
);
//trim end
for
(
int
i
=
lineLength
-
1
;
i
>=
0
&&
isspace
(
lineBuf
[
i
]);
--
i
)
{
lineBuf
[
i
]
=
0
;
--
lineLength
;
}
if
(
0
!=
strncmp
(
lineBuf
+
lineLength
-
libNameLength
,
libName
,
libNameLength
))
{
//the line does not contain the library name
continue
;
}
//extract path from smaps line
char
*
pathBegin
=
strchr
(
lineBuf
,
'/'
);
if
(
0
==
pathBegin
)
{
LOGE
(
"Strange error: could not find path beginning in lin
\"
%s
\"
"
,
lineBuf
);
continue
;
}
char
*
pathEnd
=
strrchr
(
pathBegin
,
'/'
);
pathEnd
[
1
]
=
0
;
LOGD
(
"Libraries folder found: %s"
,
pathBegin
);
fclose
(
file
);
return
pathBegin
;
}
fclose
(
file
);
LOGE
(
"Could not find library path
.
"
);
LOGE
(
"Could not find library path"
);
}
else
{
...
...
@@ -321,10 +355,10 @@ std::string CameraWrapperConnector::getPathLibFolder()
}
else
{
LOGE
(
"Could not get library name and base address.
"
);
LOGE
(
"Could not get library name and base address
"
);
}
return
DEFAULT_PATH_LIB_FOLDER
;
return
string
()
;
}
void
CameraWrapperConnector
::
setPathLibFolder
(
const
string
&
path
)
...
...
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