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
a04ef086
Commit
a04ef086
authored
Nov 01, 2012
by
marina.kolpakova
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #122 from kirill-kornyakov:2.4-android-documentation-fixes
parents
5ce99654
2b7d65d0
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
7 additions
and
7 deletions
+7
-7
README.android
android/README.android
+1
-1
O4A_SDK.rst
...tutorials/introduction/android_binary_package/O4A_SDK.rst
+0
-0
android_dev_intro.rst
...introduction/android_binary_package/android_dev_intro.rst
+0
-0
eclipse_cdt_cfg4.png
...uction/android_binary_package/images/eclipse_cdt_cfg4.png
+0
-0
operations_on_arrays.rst
modules/core/doc/operations_on_arrays.rst
+3
-3
android+CameraBridgeViewBase.java
...java/generator/src/java/android+CameraBridgeViewBase.java
+2
-2
android+JavaCameraView.java
modules/java/generator/src/java/android+JavaCameraView.java
+1
-1
No files found.
android/README.android
View file @
a04ef086
See http://
code.opencv.org/projects/opencv/wiki/OpenCV4A
ndroid
See http://
opencv.org/a
ndroid
doc/tutorials/introduction/android_binary_package/O4A_SDK.rst
View file @
a04ef086
This diff is collapsed.
Click to expand it.
doc/tutorials/introduction/android_binary_package/android_dev_intro.rst
View file @
a04ef086
This diff is collapsed.
Click to expand it.
doc/tutorials/introduction/android_binary_package/images/eclipse_cdt_cfg4.png
View replaced file @
5ce99654
View file @
a04ef086
48.1 KB
|
W:
|
H:
50.4 KB
|
W:
|
H:
2-up
Swipe
Onion skin
modules/core/doc/operations_on_arrays.rst
View file @
a04ef086
...
...
@@ -13,17 +13,17 @@ Calculates an absolute value of each matrix element.
:param m: matrix.
:param e: matrix expression.
``abs`` is a meta-function that is expanded to one of :ocv:func:`absdiff` forms:
``abs`` is a meta-function that is expanded to one of :ocv:func:`absdiff`
or :ocv:func:`convertScaleAbs`
forms:
* ``C = abs(A-B)`` is equivalent to ``absdiff(A, B, C)``
* ``C = abs(A)`` is equivalent to ``absdiff(A, Scalar::all(0), C)``
* ``C = Mat_<Vec<uchar,n> >(abs(A*alpha + beta))`` is equivalent to
:ocv:funcx:`convertScaleAbs` (A, C, alpha, beta)
* ``C = Mat_<Vec<uchar,n> >(abs(A*alpha + beta))`` is equivalent to
``convertScaleAbs(A, C, alpha, beta)``
The output matrix has the same size and the same type as the input one except for the last case, where ``C`` is ``depth=CV_8U`` .
.. seealso:: :ref:`MatrixExpressions`, :ocv:func:`absdiff`
.. seealso:: :ref:`MatrixExpressions`, :ocv:func:`absdiff`
, :ocv:func:`convertScaleAbs`
absdiff
...
...
modules/java/generator/src/java/android+CameraBridgeViewBase.java
View file @
a04ef086
...
...
@@ -23,10 +23,10 @@ import android.view.SurfaceView;
* The main responsibility of it - is to control when camera can be enabled, process the frame,
* call external listener to make any adjustments to the frame and then draw the resulting
* frame to the screen.
* The clients shall implement CvCameraViewListener
* TODO: add method to control the format in which the frames will be delivered to CvCameraViewListener
* The clients shall implement CvCameraViewListener.
*/
public
abstract
class
CameraBridgeViewBase
extends
SurfaceView
implements
SurfaceHolder
.
Callback
{
//TODO: add method to control the format in which the frames will be delivered to CvCameraViewListener
private
static
final
int
MAX_UNSPECIFIED
=
-
1
;
...
...
modules/java/generator/src/java/android+JavaCameraView.java
View file @
a04ef086
...
...
@@ -20,7 +20,7 @@ import org.opencv.highgui.Highgui;
import
org.opencv.imgproc.Imgproc
;
/**
* This class is an implementation of the Bridge View between OpenC
v and JAVA
Camera.
* This class is an implementation of the Bridge View between OpenC
V and Java
Camera.
* This class relays on the functionality available in base class and only implements
* required functions:
* connectCamera - opens Java camera and sets the PreviewCallback to be delivered.
...
...
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