Home
last modified time | relevance | path

Searched refs:dvsEngine (Results 1 – 4 of 4) sorted by relevance

/OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/algos/aeis/
H A Ddvs_app.h129 struct dvsEngine { struct
135 typedef int (*dvsFrameCallBackFEC)(struct dvsEngine* engine, meshxyFEC* mesh_fec); argument
150 int dvsRegisterRemap(struct dvsEngine* engine, dvsFrameCallBackFEC callback);
164 int dvsPrepare(struct dvsEngine* engine);
214 int dvsPutImageFrame(struct dvsEngine* engine, struct imageData* pimage_data);
229 int dvsPutMesh(struct dvsEngine* engine, struct meshxyFEC* pmesh_fec);
245 int dvsPutImuFrame(struct dvsEngine* engine, mems_sensor_event_s* pimu_data, int buff_number);
260 int dvsInitFromXmlFile(struct dvsEngine* engine, const char* path);
275 int dvsInitParams(struct dvsEngine* engine, struct initialParams* init_params);
289 int dvsStart(struct dvsEngine* engine);
[all …]
H A Deis_loader.h30 using dvsRegisterRemap = int (*)(struct dvsEngine* engine, dvsFrameCallBackFEC callback);
31 using dvsPrepare = int (*)(struct dvsEngine* engine);
34 using dvsPutImageFrame = int (*)(struct dvsEngine* engine, struct imageData* pimage_data);
35 using dvsPutMesh = int (*)(struct dvsEngine* engine, struct meshxyFEC* pmesh_fec);
36 using dvsPutImuFrame = int (*)(struct dvsEngine* engine, mems_sensor_event_s* pimu_data,
38 using dvsInitFromXmlFile = int (*)(struct dvsEngine* engine, const char* path);
39 using dvsInitParams = int (*)(struct dvsEngine* engine, struct initialParams* init_params);
40 using dvsStart = int (*)(struct dvsEngine* engine);
41 using dvsRequestStop = int (*)(struct dvsEngine* engine);
42 using dvsDeinit = int (*)(struct dvsEngine* engine);
H A Deis_algo_service.h79 int OnMeshCallback(struct dvsEngine* engine, struct meshxyFEC* mesh);
95 std::unique_ptr<struct dvsEngine> engine_;
H A Deis_algo_service.cpp127 int EisAlgoAdaptor::OnMeshCallback(struct dvsEngine* engine, struct meshxyFEC* mesh) { in OnMeshCallback()
230 engine_ = std::unique_ptr<dvsEngine>(new dvsEngine()); in Prepare()
275 Callback<int(struct dvsEngine*, struct meshxyFEC*)>::func = std::bind( in Prepare()
278 Callback<int(struct dvsEngine*, struct meshxyFEC*)>::callback); in Prepare()