9 #ifndef __PBIO_API__PBIO__TEMPLATE_H_
10 #define __PBIO_API__PBIO__TEMPLATE_H_
17 #include "ComplexObject.h"
19 #include "ExceptionCheck.h"
21 #include "stl_wraps_impls/WrapOStreamImpl.h"
89 void save(std::ostream &binary_stream)
const;
112 void save(pbio::stl_wraps::WrapOStream &binary_stream)
const;
117 const DHPtr &dll_handle,
123 friend class object_with_ref_counter<
Template>;
140 const DHPtr &dll_handle,
142 ComplexObject(dll_handle, impl)
151 std::ostringstream name_stream;
152 pbio::stl_wraps::WrapOStreamImpl name_stream_wrap(name_stream);
154 void* exception = NULL;
156 _dll_handle->Template_getMethodName(
159 pbio::stl_wraps::WrapOStream::write_func,
162 checkException(exception, *_dll_handle);
164 return name_stream.str();
170 pbio::stl_wraps::WrapOStreamImpl binary_stream_wrap(binary_stream);
172 save(binary_stream_wrap);
178 void* exception = NULL;
180 _dll_handle->Template_save(
183 pbio::stl_wraps::WrapOStream::write_func,
186 checkException(exception, *_dll_handle);
192 #endif // __PBIO_API__PBIO__TEMPLATE_H_
Интерфейсный объект для сохранения шаблона лица.
Definition: Template.h:37
Интерфейсный объект для работы с индексом шаблонов.
Definition: TemplatesIndex.h:37
Definition: Recognizer.h:64
Интерфейсный объект для создания и сравнения шаблонов.
Definition: Recognizer.h:37
LightSmartPtr< Template >::tPtr Ptr
Псевдоним для типа умного указателя на Template.
Definition: Template.h:46
Error - класс исключений, выбрасываемых при возникновении ошибок.
VideoWorker - интерфейсный объект для трекинга, обработки и распознавания лиц на нескольких видеопото...
Definition: VideoWorker.h:63
void save(std::ostream &binary_stream) const
Сохранить шаблон. Формат платформонезависимый. Потокобезопасный.
Definition: Template.h:168
Definition: SmartPtr.h:84
std::string getMethodName() const
Получить имя метода. Потокобезопасный.
Definition: Template.h:149
VideoWorker - интерфейсный объект для трекинга, обработки и распознавания лиц на нескольких видеопото...
Definition: VideoWorker.h:105