HomeSort by relevance Sort by last modified time
    Searched refs:DvsResult (Results 1 - 3 of 3) sorted by null

  /external/libxcam/plugins/smart/dvs/libdvs/
libdvs.h 38 typedef struct DvsResult
46 DvsResult(): frame_id(-1), valid(false)
48 } DvsResult;
88 virtual void nextStabilizedMotion(DvsData* frame, DvsResult* result) = 0;
libdvs.cpp 38 void nextStabilizedMotion(DvsData* frame, DvsResult* result);
88 void DigitalVideoStabilizer::nextStabilizedMotion(DvsData* frame, DvsResult* result)
  /external/libxcam/plugins/smart/dvs/
xcam_plugin_dvs.cpp 109 DvsResult dvsResult;
150 theDVS->nextStabilizedMotion(dvs_buf, &dvsResult);
154 if ((dvsResult.frame_id < 0) && (dvsResult.valid == false))
166 dvs_result->frame_id = dvsResult.frame_id;
167 dvs_result->frame_width = dvsResult.frame_width;
168 dvs_result->frame_height = dvsResult.frame_height;
169 memcpy(dvs_result->proj_mat, dvsResult.proj_mat, sizeof(DvsResult::proj_mat))
    [all...]

Completed in 872 milliseconds