Interface CaptureStateCallback2
-
public interface CaptureStateCallback2
This interface is used to receive notification of status change of the camera equipped to the Moverio. Notified status changes are for a change in the connection with the camera or in use status, and start/stop of still or video image capturing.- Since:
- 1.1.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onCameraClosed()
Called when CameraManager#close processing is completed successfully.void
onCameraOpened()
Called when CameraManager#open processing is completed successfully.void
onCaptureStarted()
This method is called when camera image capture starts.void
onCaptureStopped()
This method is called when camera image capture stops.void
onPictureCompleted()
This method is called when still image capture is completed.void
onPreviewStarted()
This method is called when preview display starts.void
onPreviewStopped()
This method is called when preview display stops.void
onRecordStarted()
This method is called when video recording starts.void
onRecordStopped()
This method is called when video recording stops.
-
-
-
Method Detail
-
onCameraOpened
void onCameraOpened()
Called when CameraManager#open processing is completed successfully.- Since:
- 1.1.0
-
onCameraClosed
void onCameraClosed()
Called when CameraManager#close processing is completed successfully.- Since:
- 1.1.0
-
onCaptureStarted
void onCaptureStarted()
This method is called when camera image capture starts.- Since:
- 1.1.0
-
onCaptureStopped
void onCaptureStopped()
This method is called when camera image capture stops.- Since:
- 1.1.0
-
onPreviewStarted
void onPreviewStarted()
This method is called when preview display starts.- Since:
- 1.1.0
-
onPreviewStopped
void onPreviewStopped()
This method is called when preview display stops.- Since:
- 1.1.0
-
onRecordStarted
void onRecordStarted()
This method is called when video recording starts.- Since:
- 1.1.0
-
onRecordStopped
void onRecordStopped()
This method is called when video recording stops.- Since:
- 1.1.0
-
onPictureCompleted
void onPictureCompleted()
This method is called when still image capture is completed.- Since:
- 1.1.0
-
-