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
f5cd20d8
Commit
f5cd20d8
authored
Dec 14, 2012
by
Andrey Kamaev
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 2.4
parents
464826c2
9b09f09b
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
102 additions
and
44 deletions
+102
-44
AndroidManifest.xml
android/service/engine/AndroidManifest.xml
+2
-2
ManagerActivity.java
...engine/src/org/opencv/engine/manager/ManagerActivity.java
+2
-0
CMakeLists.txt
doc/CMakeLists.txt
+21
-5
perf_pnp.cpp
modules/calib3d/perf/perf_pnp.cpp
+1
-1
system.cpp
modules/core/src/system.cpp
+17
-20
perf_output.cpp
modules/highgui/perf/perf_output.cpp
+1
-1
perf_filter2d.cpp
modules/imgproc/perf/perf_filter2d.cpp
+1
-1
perf_surf.cpp
modules/nonfree/perf/perf_surf.cpp
+2
-2
perf_stich.cpp
modules/stitching/perf/perf_stich.cpp
+19
-5
run.py
modules/ts/misc/run.py
+0
-0
ts_perf.cpp
modules/ts/src/ts_perf.cpp
+14
-6
Sample5CameraControl.java
...rc/org/opencv/samples/tutorial5/Sample5CameraControl.java
+17
-1
SampleJavaCameraView.java
...rc/org/opencv/samples/tutorial5/SampleJavaCameraView.java
+5
-0
No files found.
android/service/engine/AndroidManifest.xml
View file @
f5cd20d8
<?xml version="1.0" encoding="utf-8"?>
<manifest
xmlns:android=
"http://schemas.android.com/apk/res/android"
package=
"org.opencv.engine"
android:versionCode=
"2
3
@ANDROID_PLATFORM_VERSION_CODE@"
android:versionName=
"2.
3
"
>
android:versionCode=
"2
4
@ANDROID_PLATFORM_VERSION_CODE@"
android:versionName=
"2.
4
"
>
<uses-sdk
android:minSdkVersion=
"@ANDROID_NATIVE_API_LEVEL@"
/>
<uses-feature
android:name=
"android.hardware.touchscreen"
android:required=
"false"
/>
...
...
android/service/engine/src/org/opencv/engine/manager/ManagerActivity.java
View file @
f5cd20d8
...
...
@@ -358,6 +358,8 @@ public class ManagerActivity extends Activity
else
{
temp
.
put
(
"Activity"
,
"n"
);
if
(!
PublicName
.
equals
(
"Built-in OpenCV library"
))
Tags
=
"safe to remove"
;
}
}
else
...
...
doc/CMakeLists.txt
View file @
f5cd20d8
...
...
@@ -2,8 +2,6 @@
# CMake file for OpenCV docs
#
file
(
GLOB FILES_DOC *.htm *.txt *.jpg *.png *.pdf
)
file
(
GLOB FILES_DOC_VS vidsurv/*.doc
)
file
(
GLOB FILES_TEX *.tex *.sty *.bib
)
file
(
GLOB FILES_TEX_PICS pics/*.png pics/*.jpg
)
...
...
@@ -11,6 +9,14 @@ if(BUILD_DOCS AND HAVE_SPHINX)
project
(
opencv_docs
)
set
(
DOC_LIST
"
${
OpenCV_SOURCE_DIR
}
/doc/opencv-logo.png"
"
${
OpenCV_SOURCE_DIR
}
/doc/opencv-logo2.png"
"
${
OpenCV_SOURCE_DIR
}
/doc/opencv-logo-white.png"
"
${
OpenCV_SOURCE_DIR
}
/doc/opencv.ico"
"
${
OpenCV_SOURCE_DIR
}
/doc/haartraining.htm"
"
${
OpenCV_SOURCE_DIR
}
/doc/license.txt"
"
${
OpenCV_SOURCE_DIR
}
/doc/pattern.png"
"
${
OpenCV_SOURCE_DIR
}
/doc/acircles_pattern.png"
)
set
(
OPTIONAL_DOC_LIST
""
)
set
(
OPENCV2_BASE_MODULES core imgproc highgui video calib3d features2d objdetect ml flann gpu photo stitching nonfree contrib legacy
)
# build lists of modules to be documented
...
...
@@ -81,6 +87,9 @@ if(BUILD_DOCS AND HAVE_SPHINX)
COMMENT
"Generating the PDF Manuals"
)
LIST
(
APPEND OPTIONAL_DOC_LIST
"
${
CMAKE_BINARY_DIR
}
/doc/opencv2refman.pdf"
"
${
CMAKE_BINARY_DIR
}
/doc/opencv2manager.pdf"
"
${
CMAKE_BINARY_DIR
}
/doc/opencv_user.pdf"
"
${
CMAKE_BINARY_DIR
}
/doc/opencv_tutorials.pdf"
"
${
CMAKE_BINARY_DIR
}
/doc/opencv_cheatsheet.pdf"
)
if
(
ENABLE_SOLUTION_FOLDERS
)
set_target_properties
(
docs PROPERTIES FOLDER
"documentation"
)
endif
()
...
...
@@ -97,7 +106,13 @@ if(BUILD_DOCS AND HAVE_SPHINX)
if
(
ENABLE_SOLUTION_FOLDERS
)
set_target_properties
(
html_docs PROPERTIES FOLDER
"documentation"
)
endif
()
endif
()
install
(
FILES
${
FILES_DOC
}
DESTINATION
"
${
OPENCV_DOC_INSTALL_PATH
}
"
COMPONENT main
)
install
(
FILES
${
FILES_DOC_VS
}
DESTINATION
"
${
OPENCV_DOC_INSTALL_PATH
}
/vidsurv"
COMPONENT main
)
foreach
(
f
${
DOC_LIST
}
)
install
(
FILES
"
${
f
}
"
DESTINATION
"
${
OPENCV_DOC_INSTALL_PATH
}
"
COMPONENT main
)
endforeach
()
foreach
(
f
${
OPTIONAL_DOC_LIST
}
)
install
(
FILES
"
${
f
}
"
DESTINATION
"
${
OPENCV_DOC_INSTALL_PATH
}
"
OPTIONAL
)
endforeach
()
endif
()
\ No newline at end of file
modules/calib3d/perf/perf_pnp.cpp
View file @
f5cd20d8
...
...
@@ -16,7 +16,7 @@ typedef perf::TestBaseWithParam<int> PointsNum;
PERF_TEST_P
(
PointsNum_Algo
,
solvePnP
,
testing
::
Combine
(
testing
::
Values
(
4
,
3
*
9
,
7
*
13
),
testing
::
Values
(
/*4,*/
3
*
9
,
7
*
13
),
//TODO: find why results on 4 points are too unstable
testing
::
Values
((
int
)
CV_ITERATIVE
,
(
int
)
CV_EPNP
)
)
)
...
...
modules/core/src/system.cpp
View file @
f5cd20d8
...
...
@@ -359,26 +359,24 @@ string format( const char* fmt, ... )
string
tempfile
(
const
char
*
suffix
)
{
const
char
*
temp_dir
=
getenv
(
"OPENCV_TEMP_PATH"
);
string
fname
;
#if defined WIN32 || defined _WIN32
char
temp_dir
[
MAX_PATH
+
1
]
=
{
0
};
char
temp_dir
2
[
MAX_PATH
+
1
]
=
{
0
};
char
temp_file
[
MAX_PATH
+
1
]
=
{
0
};
::
GetTempPathA
(
sizeof
(
temp_dir
),
temp_dir
);
if
(
temp_dir
==
0
||
temp_dir
[
0
]
==
0
)
{
::
GetTempPathA
(
sizeof
(
temp_dir2
),
temp_dir2
);
temp_dir
=
temp_dir2
;
}
if
(
0
==
::
GetTempFileNameA
(
temp_dir
,
"ocv"
,
0
,
temp_file
))
return
string
();
DeleteFileA
(
temp_file
);
string
name
=
temp_file
;
if
(
suffix
)
{
if
(
suffix
[
0
]
!=
'.'
)
return
name
+
"."
+
suffix
;
else
return
name
+
suffix
;
}
else
return
name
;
fname
=
temp_file
;
# else
# ifdef ANDROID
//char defaultTemplate[] = "/mnt/sdcard/__opencv_temp.XXXXXX";
...
...
@@ -387,9 +385,7 @@ string tempfile( const char* suffix )
char
defaultTemplate
[]
=
"/tmp/__opencv_temp.XXXXXX"
;
# endif
string
fname
;
const
char
*
temp_dir
=
getenv
(
"OPENCV_TEMP_PATH"
);
if
(
temp_dir
==
0
||
temp_dir
[
0
]
==
0
)
if
(
temp_dir
==
0
||
temp_dir
[
0
]
==
0
)
fname
=
defaultTemplate
;
else
{
...
...
@@ -401,19 +397,20 @@ string tempfile( const char* suffix )
}
const
int
fd
=
mkstemp
((
char
*
)
fname
.
c_str
());
if
(
fd
==
-
1
)
return
""
;
if
(
fd
==
-
1
)
return
string
();
close
(
fd
);
remove
(
fname
.
c_str
());
# endif
if
(
suffix
)
if
(
suffix
)
{
if
(
suffix
[
0
]
!=
'.'
)
fname
=
fname
+
"."
+
suffix
;
return
fname
+
"."
+
suffix
;
else
fname
+=
suffix
;
return
fname
+
suffix
;
}
return
fname
;
# endif
}
static
CvErrorCallback
customErrorCallback
=
0
;
...
...
modules/highgui/perf/perf_output.cpp
View file @
f5cd20d8
...
...
@@ -23,7 +23,7 @@ PERF_TEST_P(VideoWriter_Writing, WriteFrame,
string
filename
=
getDataPath
(
get
<
0
>
(
GetParam
()));
bool
isColor
=
get
<
1
>
(
GetParam
());
VideoWriter
writer
(
"perf_writer.avi"
,
CV_FOURCC
(
'X'
,
'V'
,
'I'
,
'D'
),
25
,
cv
::
Size
(
640
,
480
),
isColor
);
VideoWriter
writer
(
cv
::
tempfile
(
".avi"
)
,
CV_FOURCC
(
'X'
,
'V'
,
'I'
,
'D'
),
25
,
cv
::
Size
(
640
,
480
),
isColor
);
TEST_CYCLE
()
{
Mat
image
=
imread
(
filename
,
1
);
writer
<<
image
;
}
...
...
modules/imgproc/perf/perf_filter2d.cpp
View file @
f5cd20d8
...
...
@@ -70,7 +70,7 @@ PERF_TEST_P( Image_KernelSize, GaborFilter2d,
filter2D
(
sourceImage
,
filteredImage
,
CV_32F
,
gaborKernel
);
}
SANITY_CHECK
(
filteredImage
);
SANITY_CHECK
(
filteredImage
,
1e-3
);
}
modules/nonfree/perf/perf_surf.cpp
View file @
f5cd20d8
...
...
@@ -27,7 +27,7 @@ PERF_TEST_P(surf, detect, testing::Values(SURF_IMAGES))
TEST_CYCLE
()
detector
(
frame
,
mask
,
points
);
SANITY_CHECK_KEYPOINTS
(
points
);
SANITY_CHECK_KEYPOINTS
(
points
,
1e-3
);
}
PERF_TEST_P
(
surf
,
extract
,
testing
::
Values
(
SURF_IMAGES
))
...
...
@@ -67,6 +67,6 @@ PERF_TEST_P(surf, full, testing::Values(SURF_IMAGES))
TEST_CYCLE
()
detector
(
frame
,
mask
,
points
,
descriptors
,
false
);
SANITY_CHECK_KEYPOINTS
(
points
);
SANITY_CHECK_KEYPOINTS
(
points
,
1e-3
);
SANITY_CHECK
(
descriptors
,
1e-4
);
}
modules/stitching/perf/perf_stich.cpp
View file @
f5cd20d8
...
...
@@ -19,7 +19,7 @@ typedef TestBaseWithParam<String> match;
typedef
std
::
tr1
::
tuple
<
String
,
int
>
matchVector_t
;
typedef
TestBaseWithParam
<
matchVector_t
>
matchVector
;
#ifdef HAVE_OPENCV_NONFREE
#ifdef HAVE_OPENCV_NONFREE
_TODO_FIND_WHY_SURF_IS_NOT_ABLE_TO_STITCH_PANOS
#define TEST_DETECTORS testing::Values("surf", "orb")
#else
#define TEST_DETECTORS testing::Values<String>("orb")
...
...
@@ -57,7 +57,11 @@ PERF_TEST_P(stitch, a123, TEST_DETECTORS)
stopTimer
();
}
SANITY_CHECK
(
pano
,
2
);
Mat
pano_small
;
if
(
!
pano
.
empty
())
resize
(
pano
,
pano_small
,
Size
(
320
,
240
),
0
,
0
,
INTER_AREA
);
SANITY_CHECK
(
pano_small
,
5
);
}
PERF_TEST_P
(
stitch
,
b12
,
TEST_DETECTORS
)
...
...
@@ -91,7 +95,11 @@ PERF_TEST_P(stitch, b12, TEST_DETECTORS)
stopTimer
();
}
SANITY_CHECK
(
pano
,
2
);
Mat
pano_small
;
if
(
!
pano
.
empty
())
resize
(
pano
,
pano_small
,
Size
(
320
,
240
),
0
,
0
,
INTER_AREA
);
SANITY_CHECK
(
pano_small
,
5
);
}
PERF_TEST_P
(
match
,
bestOf2Nearest
,
TEST_DETECTORS
)
...
...
@@ -137,7 +145,11 @@ PERF_TEST_P( match, bestOf2Nearest, TEST_DETECTORS)
matcher
->
collectGarbage
();
}
SANITY_CHECK_MATCHES
(
pairwise_matches
.
matches
);
std
::
vector
<
DMatch
>&
matches
=
pairwise_matches
.
matches
;
if
(
GetParam
()
==
"orb"
)
matches
.
resize
(
0
);
for
(
size_t
q
=
0
;
q
<
matches
.
size
();
++
q
)
if
(
matches
[
q
].
imgIdx
<
0
)
{
matches
.
resize
(
q
);
break
;}
SANITY_CHECK_MATCHES
(
matches
);
}
PERF_TEST_P
(
matchVector
,
bestOf2NearestVectorFeatures
,
testing
::
Combine
(
...
...
@@ -193,6 +205,8 @@ PERF_TEST_P( matchVector, bestOf2NearestVectorFeatures, testing::Combine(
}
std
::
vector
<
DMatch
>&
matches
=
pairwise_matches
[
0
].
matches
;
std
::
vector
<
DMatch
>&
matches
=
pairwise_matches
[
detectorName
==
"surf"
?
1
:
0
].
matches
;
for
(
size_t
q
=
0
;
q
<
matches
.
size
();
++
q
)
if
(
matches
[
q
].
imgIdx
<
0
)
{
matches
.
resize
(
q
);
break
;}
SANITY_CHECK_MATCHES
(
matches
);
}
modules/ts/misc/run.py
View file @
f5cd20d8
This diff is collapsed.
Click to expand it.
modules/ts/src/ts_perf.cpp
View file @
f5cd20d8
...
...
@@ -16,7 +16,8 @@ const std::string command_line_keys =
"{ perf_force_samples |100 |force set maximum number of samples for all tests}"
"{ perf_seed |809564 |seed for random numbers generator}"
"{ perf_threads |-1 |the number of worker threads, if parallel execution is enabled}"
"{ perf_write_sanity | |allow to create new records for sanity checks}"
"{ perf_write_sanity | |create new records for sanity checks}"
"{ perf_verify_sanity | |fail tests having no regression data for sanity checks}"
#ifdef ANDROID
"{ perf_time_limit |6.0 |default time limit for a single test (in seconds)}"
"{ perf_affinity_mask |0 |set affinity mask for the main thread}"
...
...
@@ -41,6 +42,7 @@ static uint64 param_seed;
static
double
param_time_limit
;
static
int
param_threads
;
static
bool
param_write_sanity
;
static
bool
param_verify_sanity
;
#ifdef HAVE_CUDA
static
bool
param_run_cpu
;
static
int
param_cuda_device
;
...
...
@@ -491,7 +493,7 @@ void Regression::verify(cv::FileNode node, cv::InputArray array, double eps, ERR
cv
::
minMaxLoc
(
diff
.
reshape
(
1
),
0
,
&
max
);
FAIL
()
<<
" Absolute difference (="
<<
max
<<
") between argument
\"
"
<<
node
.
name
()
<<
"["
<<
idx
<<
"]
\"
and expected value is
bugg
er than "
<<
eps
;
<<
node
.
name
()
<<
"["
<<
idx
<<
"]
\"
and expected value is
great
er than "
<<
eps
;
}
}
else
if
(
err
==
ERROR_RELATIVE
)
...
...
@@ -501,7 +503,7 @@ void Regression::verify(cv::FileNode node, cv::InputArray array, double eps, ERR
if
(
violations
>
0
)
{
FAIL
()
<<
" Relative difference ("
<<
maxv
<<
" of "
<<
maxa
<<
" allowed) between argument
\"
"
<<
node
.
name
()
<<
"["
<<
idx
<<
"]
\"
and expected value is
bugg
er than "
<<
eps
<<
" in "
<<
violations
<<
" points"
;
<<
node
.
name
()
<<
"["
<<
idx
<<
"]
\"
and expected value is
great
er than "
<<
eps
<<
" in "
<<
violations
<<
" points"
;
}
}
}
...
...
@@ -545,7 +547,7 @@ void Regression::verify(cv::FileNode node, cv::InputArray array, double eps, ERR
cv
::
minMaxLoc
(
diff
.
reshape
(
1
),
0
,
&
max
);
FAIL
()
<<
" Difference (="
<<
max
<<
") between argument1
\"
"
<<
node
.
name
()
<<
"
\"
and expected value is
bugg
er than "
<<
eps
;
<<
"
\"
and expected value is
great
er than "
<<
eps
;
}
}
else
if
(
err
==
ERROR_RELATIVE
)
...
...
@@ -555,7 +557,7 @@ void Regression::verify(cv::FileNode node, cv::InputArray array, double eps, ERR
if
(
violations
>
0
)
{
FAIL
()
<<
" Relative difference ("
<<
maxv
<<
" of "
<<
maxa
<<
" allowed) between argument
\"
"
<<
node
.
name
()
<<
"
\"
and expected value is
bugg
er than "
<<
eps
<<
" in "
<<
violations
<<
" points"
;
<<
"
\"
and expected value is
great
er than "
<<
eps
<<
" in "
<<
violations
<<
" points"
;
}
}
}
...
...
@@ -595,10 +597,15 @@ Regression& Regression::operator() (const std::string& name, cv::InputArray arra
write
()
<<
nodename
<<
"{"
;
}
// TODO: verify that name is alphanumeric, current error message is useless
write
()
<<
name
<<
"{"
;
write
(
array
);
write
()
<<
"}"
;
}
else
if
(
param_verify_sanity
)
{
ADD_FAILURE
()
<<
" No regression data for "
<<
name
<<
" argument"
;
}
}
else
{
...
...
@@ -656,6 +663,7 @@ void TestBase::Init(int argc, const char* const argv[])
param_time_limit
=
std
::
max
(
0.
,
args
.
get
<
double
>
(
"perf_time_limit"
));
param_force_samples
=
args
.
get
<
unsigned
int
>
(
"perf_force_samples"
);
param_write_sanity
=
args
.
has
(
"perf_write_sanity"
);
param_verify_sanity
=
args
.
has
(
"perf_verify_sanity"
);
param_threads
=
args
.
get
<
int
>
(
"perf_threads"
);
#ifdef ANDROID
param_affinity_mask
=
args
.
get
<
int
>
(
"perf_affinity_mask"
);
...
...
@@ -970,7 +978,7 @@ void TestBase::validateMetrics()
if
(
m
.
gstddev
>
DBL_EPSILON
)
{
EXPECT_GT
(
/*m.gmean * */
1.
,
/*m.gmean * */
2
*
sinh
(
m
.
gstddev
*
param_max_deviation
))
<<
" Test results are not reliable ((mean-sigma,mean+sigma) deviation interval is
bigg
er than measured time interval)."
;
<<
" Test results are not reliable ((mean-sigma,mean+sigma) deviation interval is
great
er than measured time interval)."
;
}
EXPECT_LE
(
m
.
outliers
,
std
::
max
((
unsigned
int
)
cvCeil
(
m
.
samples
*
param_max_outliers
/
100.
),
1u
))
...
...
samples/android/tutorial-5-cameracontrol/src/org/opencv/samples/tutorial5/Sample5CameraControl.java
View file @
f5cd20d8
package
org
.
opencv
.
samples
.
tutorial5
;
import
java.text.SimpleDateFormat
;
import
java.util.Date
;
import
java.util.List
;
import
java.util.ListIterator
;
...
...
@@ -9,6 +11,7 @@ import org.opencv.android.OpenCVLoader;
import
org.opencv.core.Mat
;
import
org.opencv.android.CameraBridgeViewBase.CvCameraViewListener
;
import
android.annotation.SuppressLint
;
import
android.app.Activity
;
import
android.os.Bundle
;
import
android.os.Environment
;
...
...
@@ -20,6 +23,7 @@ import android.view.SurfaceView;
import
android.view.View
;
import
android.view.View.OnTouchListener
;
import
android.view.WindowManager
;
import
android.widget.Toast
;
public
class
Sample5CameraControl
extends
Activity
implements
CvCameraViewListener
,
OnTouchListener
{
private
static
final
String
TAG
=
"OCVSample::Activity"
;
...
...
@@ -100,6 +104,11 @@ public class Sample5CameraControl extends Activity implements CvCameraViewListen
public
boolean
onCreateOptionsMenu
(
Menu
menu
)
{
List
<
String
>
effects
=
mOpenCvCameraView
.
getEffectList
();
if
(
effects
==
null
)
{
Log
.
e
(
TAG
,
"Color effects are not supported by device!"
);
return
true
;
}
mEffectMenuItems
=
new
MenuItem
[
effects
.
size
()];
int
idx
=
0
;
...
...
@@ -115,13 +124,20 @@ public class Sample5CameraControl extends Activity implements CvCameraViewListen
public
boolean
onOptionsItemSelected
(
MenuItem
item
)
{
Log
.
i
(
TAG
,
"called onOptionsItemSelected; selected item: "
+
item
);
mOpenCvCameraView
.
setEffect
((
String
)
item
.
getTitle
());
Toast
.
makeText
(
this
,
mOpenCvCameraView
.
getEffect
(),
Toast
.
LENGTH_SHORT
).
show
();
return
true
;
}
@SuppressLint
(
"SimpleDateFormat"
)
@Override
public
boolean
onTouch
(
View
v
,
MotionEvent
event
)
{
Log
.
i
(
TAG
,
"onTouch event"
);
mOpenCvCameraView
.
takePicture
(
Environment
.
getExternalStorageDirectory
().
getPath
()
+
"/sample_picture.jpg"
);
SimpleDateFormat
sdf
=
new
SimpleDateFormat
(
"yyyy-MM-dd_HH-mm-ss"
);
String
currentDateandTime
=
sdf
.
format
(
new
Date
());
String
fileName
=
Environment
.
getExternalStorageDirectory
().
getPath
()
+
"/sample_picture_"
+
currentDateandTime
+
".jpg"
;
mOpenCvCameraView
.
takePicture
(
fileName
);
Toast
.
makeText
(
this
,
fileName
+
" saved"
,
Toast
.
LENGTH_SHORT
).
show
();
return
false
;
}
}
samples/android/tutorial-5-cameracontrol/src/org/opencv/samples/tutorial5/SampleJavaCameraView.java
View file @
f5cd20d8
...
...
@@ -25,6 +25,10 @@ public class SampleJavaCameraView extends JavaCameraView {
return
mCamera
.
getParameters
().
getSupportedColorEffects
();
}
public
boolean
isEffectSupported
()
{
return
(
mCamera
.
getParameters
().
getColorEffect
()
!=
null
);
}
public
String
getEffect
()
{
return
mCamera
.
getParameters
().
getColorEffect
();
}
...
...
@@ -48,6 +52,7 @@ public class SampleJavaCameraView extends JavaCameraView {
try
{
FileOutputStream
out
=
new
FileOutputStream
(
mPictureFileName
);
picture
.
compress
(
Bitmap
.
CompressFormat
.
JPEG
,
90
,
out
);
picture
.
recycle
();
mCamera
.
startPreview
();
}
catch
(
Exception
e
)
{
e
.
printStackTrace
();
...
...
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