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.cpp463 float distortionData[] = {1.f, inputFrame.mLensDistortion[3], in processDepthPhotoFrame()
464 inputFrame.mLensDistortion[0], inputFrame.mLensDistortion[4], in processDepthPhotoFrame()
465 inputFrame.mLensDistortion[1], 0.f, inputFrame.mLensDistortion[2], 0.f}; in processDepthPhotoFrame()
/frameworks/av/services/camera/libcameraservice/api2/
DDepthCompositeStream.cpp79 mLensDistortion.reserve(5); in DepthCompositeStream()
80 mLensDistortion.insert(mLensDistortion.end(), entry.data.f, entry.data.f + 5); in DepthCompositeStream()
338 if (mLensDistortion.size() == 5) { in processInputFrame()
339 memcpy(depthPhoto.mLensDistortion, mLensDistortion.data(), in processInputFrame()
340 sizeof(depthPhoto.mLensDistortion)); in processInputFrame()
DDepthCompositeStream.h143 std::vector<float> mIntrinsicCalibration, mLensDistortion; variable