Home
last modified time | relevance | path

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

/frameworks/av/services/camera/libcameraservice/common/
DDepthPhotoProcessor.h44 float mLensDistortion[5]; member
62 mLensDistortion{0.f},
DDepthPhotoProcessor.cpp467 float distortionData[] = {1.f, inputFrame.mLensDistortion[3], in processDepthPhotoFrame()
468 inputFrame.mLensDistortion[0], inputFrame.mLensDistortion[4], in processDepthPhotoFrame()
469 inputFrame.mLensDistortion[1], 0.f, inputFrame.mLensDistortion[2], 0.f}; in processDepthPhotoFrame()
/frameworks/av/services/camera/libcameraservice/api2/
DDepthCompositeStream.cpp86 mLensDistortion.reserve(5); in DepthCompositeStream()
87 mLensDistortion.insert(mLensDistortion.end(), entry.data.f, entry.data.f + 5); in DepthCompositeStream()
346 if (mLensDistortion.size() == 5) { in processInputFrame()
347 memcpy(depthPhoto.mLensDistortion, mLensDistortion.data(), in processInputFrame()
348 sizeof(depthPhoto.mLensDistortion)); in processInputFrame()
DDepthCompositeStream.h148 std::vector<float> mIntrinsicCalibration, mLensDistortion; variable