Commit 2efd9b6a authored by Kirill Kornyakov's avatar Kirill Kornyakov Committed by marina.kolpakova

Fixed a couple of minor issues in Javadocs

parent c5fb2de8
...@@ -23,10 +23,10 @@ import android.view.SurfaceView; ...@@ -23,10 +23,10 @@ import android.view.SurfaceView;
* The main responsibility of it - is to control when camera can be enabled, process the frame, * 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 * call external listener to make any adjustments to the frame and then draw the resulting
* frame to the screen. * frame to the screen.
* The clients shall implement CvCameraViewListener * The clients shall implement CvCameraViewListener.
* TODO: add method to control the format in which the frames will be delivered to CvCameraViewListener
*/ */
public abstract class CameraBridgeViewBase extends SurfaceView implements SurfaceHolder.Callback { 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; private static final int MAX_UNSPECIFIED = -1;
......
...@@ -20,7 +20,7 @@ import org.opencv.highgui.Highgui; ...@@ -20,7 +20,7 @@ import org.opencv.highgui.Highgui;
import org.opencv.imgproc.Imgproc; import org.opencv.imgproc.Imgproc;
/** /**
* This class is an implementation of the Bridge View between OpenCv and JAVA Camera. * This class is an implementation of the Bridge View between OpenCV and Java Camera.
* This class relays on the functionality available in base class and only implements * This class relays on the functionality available in base class and only implements
* required functions: * required functions:
* connectCamera - opens Java camera and sets the PreviewCallback to be delivered. * connectCamera - opens Java camera and sets the PreviewCallback to be delivered.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment