You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
627 B
21 lines
627 B
%% TRAXSERVER - MEX bindings for TraX protocol
|
|
%
|
|
% This function provides server side TraX protocol bindings.
|
|
% It can be used in various modes to set-up tracking session,
|
|
% send and receive data and terminate the communication.
|
|
%
|
|
% Protocol setup:
|
|
% [response] = traxserver('setup', region_formats, image_formats, ...)
|
|
%
|
|
% Waiting for request:
|
|
% [image, region, parameters] = traxserver('wait')
|
|
%
|
|
% Reporting state:
|
|
% [response] = traxserver('state', region, parameters)
|
|
%
|
|
% Terminating the session:
|
|
% [response] = traxserver('quit', reason)
|
|
%
|
|
% For more information consult the online TraX reference
|
|
% library documentation.
|