Class InputFrameRecorder
- Namespace
- easyar
Eingangsbild-Recorder. Verfügt über einen Eingangsbild-Eingangsport und einen Eingangsbild-Ausgangsport zum Speichern durchlaufender Eingangsbilder in einer EIF-Datei. Alle Mitglieder dieser Klasse sind threadsicher.
InputFrameRecorder
Methoden
input
Eingangsport.
void easyar_InputFrameRecorder_input(easyar_InputFrameRecorder * This, easyar_InputFrameSink * * Return)
std::shared_ptr<InputFrameSink> input()
public @Nonnull InputFrameSink input()
fun input(): InputFrameSink
- (easyar_InputFrameSink *)input
public func input() -> InputFrameSink
public virtual InputFrameSink input()
Rückgabewert
| Typ | Beschreibung |
|---|---|
| InputFrameSink |
bufferRequirement
Aktuelle Anzahl der vom Bauteil belegten Kamera-Buffer.
int easyar_InputFrameRecorder_bufferRequirement(easyar_InputFrameRecorder * This)
int bufferRequirement()
public int bufferRequirement()
fun bufferRequirement(): Int
- (int)bufferRequirement
public func bufferRequirement() -> Int32
public virtual int bufferRequirement()
Rückgabewert
| Typ | Beschreibung |
|---|---|
| Int32 |
output
Ausgangsport.
void easyar_InputFrameRecorder_output(easyar_InputFrameRecorder * This, easyar_InputFrameSource * * Return)
std::shared_ptr<InputFrameSource> output()
public @Nonnull InputFrameSource output()
fun output(): InputFrameSource
- (easyar_InputFrameSource *)output
public func output() -> InputFrameSource
public virtual InputFrameSource output()
Rückgabewert
| Typ | Beschreibung |
|---|---|
| InputFrameSource |
create
Erstellen.
void easyar_InputFrameRecorder_create(easyar_InputFrameRecorder * * Return)
static std::shared_ptr<InputFrameRecorder> create()
public static @Nonnull InputFrameRecorder create()
companion object fun create(): InputFrameRecorder
+ (easyar_InputFrameRecorder *)create
public static func create() -> InputFrameRecorder
public static InputFrameRecorder create()
Rückgabewert
| Typ | Beschreibung |
|---|---|
| InputFrameRecorder |
start
Beginn der Datenaufzeichnung. initialScreenRotation ist die anfängliche Bildschirmdrehung während der Aufnahme, die als Referenz für die Wiedergaberendering dient. Die Drehrichtungsdefinition entspricht der in CameraParameters.
bool easyar_InputFrameRecorder_start(easyar_InputFrameRecorder * This, easyar_String * filePath, int initialScreenRotation)
bool start(std::string filePath, int initialScreenRotation)
public boolean start(java.lang.@Nonnull String filePath, int initialScreenRotation)
fun start(filePath: String, initialScreenRotation: Int): Boolean
- (bool)start:(NSString *)filePath initialScreenRotation:(int)initialScreenRotation
public func start(_ filePath: String, _ initialScreenRotation: Int32) -> Bool
public virtual bool start(string filePath, int initialScreenRotation)
Parameter
| Name | Typ | Beschreibung |
|---|---|---|
| filePath | String | |
| initialScreenRotation | Int32 |
Rückgabewert
| Typ | Beschreibung |
|---|---|
| Boolean |
stop
Beendet die Datenaufzeichnung. Diese Methode stoppt nur die Aufnahme, Verbindungen bleiben davon unberührt.
void easyar_InputFrameRecorder_stop(easyar_InputFrameRecorder * This)
void stop()
public void stop()
fun stop(): Unit
- (void)stop
public func stop() -> Void
public virtual void stop()
Rückgabewert
| Typ | Beschreibung |
|---|---|
| Void |