/packages/apps/Camera/jni/feature_stab/db_vlvm/ |
D | db_utilities_camera.h | 156 inline void db_ImageHomographyInhomogenous(double xp[2],const double H[9],const double x[2]) in db_ImageHomographyInhomogenous() 160 x3=H[6]*x[0]+H[7]*x[1]+H[8]; in db_ImageHomographyInhomogenous() 164 xp[0]=m*(H[0]*x[0]+H[1]*x[1]+H[2]); in db_ImageHomographyInhomogenous() 165 xp[1]=m*(H[3]*x[0]+H[4]*x[1]+H[5]); in db_ImageHomographyInhomogenous() 172 inline double db_FocalFromCamRotFocalHomography(const double H[9]) in db_FocalFromCamRotFocalHomography() 176 k1=db_sqr(H[2])+db_sqr(H[5]); in db_FocalFromCamRotFocalHomography() 177 k2=db_sqr(H[6])+db_sqr(H[7]); in db_FocalFromCamRotFocalHomography() 180 return(db_SafeSqrt(db_SafeDivision(k1,1.0-db_sqr(H[8])))); in db_FocalFromCamRotFocalHomography() 184 return(db_SafeSqrt(db_SafeDivision(1.0-db_sqr(H[8]),k2))); in db_FocalFromCamRotFocalHomography() 188 inline double db_FocalAndRotFromCamRotFocalHomography(double R[9],const double H[9]) in db_FocalAndRotFromCamRotFocalHomography() [all …]
|
D | db_metrics.h | 119 inline double db_SquaredReprojectionErrorHomography(const double y[2],const double H[9],const doubl… in db_SquaredReprojectionErrorHomography() 124 x0=H[0]*x[0]+H[1]*x[1]+H[2]*x[2]; in db_SquaredReprojectionErrorHomography() 125 x1=H[3]*x[0]+H[4]*x[1]+H[5]*x[2]; in db_SquaredReprojectionErrorHomography() 126 x2=H[6]*x[0]+H[7]*x[1]+H[8]*x[2]; in db_SquaredReprojectionErrorHomography() 133 inline double db_SquaredInhomogenousHomographyError(const double y[2],const double H[9],const doubl… in db_SquaredInhomogenousHomographyError() 138 x0=H[0]*x[0]+H[1]*x[1]+H[2]; in db_SquaredInhomogenousHomographyError() 139 x1=H[3]*x[0]+H[4]*x[1]+H[5]; in db_SquaredInhomogenousHomographyError() 140 x2=H[6]*x[0]+H[7]*x[1]+H[8]; in db_SquaredInhomogenousHomographyError() 153 inline double db_ExpCauchyInhomogenousHomographyError(const double y[2],const double H[9],const dou… in db_ExpCauchyInhomogenousHomographyError() 157 sd=db_SquaredInhomogenousHomographyError(y,H,x); in db_ExpCauchyInhomogenousHomographyError() [all …]
|
D | db_image_homography.h | 46 DB_API void db_StitchProjective2D_4Points(double H[9], 61 DB_API void db_StitchAffine2D_3Points(double H[9], 100 DB_API int db_StitchRotationCommonFocalLength_3Points(double H[9],double x1[3],double x2[3],double … 169 inline void db_StitchSimilarity2D(double H[9],double **Xp,double **X,int nr_points,int orientation_… 177 H[0]=s*R[0]; H[1]=s*R[1]; H[2]=t[0]; 178 H[3]=s*R[2]; H[4]=s*R[3]; H[5]=t[1]; 179 db_Zero2(H+6); 180 H[8]=1.0;
|
D | db_rob_image_homography.cpp | 36 inline double db_RobImageHomography_Cost(double H[9],int point_count,double *x_i,double *xp_i,doubl… in db_RobImageHomography_Cost() 50 acc=db_ExpCauchyInhomogenousHomographyError(xp_i_temp,H,x_i_temp,one_over_scale2); in db_RobImageHomography_Cost() 51 acc*=db_ExpCauchyInhomogenousHomographyError(xp_i_temp+2,H,x_i_temp+2,one_over_scale2); in db_RobImageHomography_Cost() 52 acc*=db_ExpCauchyInhomogenousHomographyError(xp_i_temp+4,H,x_i_temp+4,one_over_scale2); in db_RobImageHomography_Cost() 53 acc*=db_ExpCauchyInhomogenousHomographyError(xp_i_temp+6,H,x_i_temp+6,one_over_scale2); in db_RobImageHomography_Cost() 54 acc*=db_ExpCauchyInhomogenousHomographyError(xp_i_temp+8,H,x_i_temp+8,one_over_scale2); in db_RobImageHomography_Cost() 55 … acc*=db_ExpCauchyInhomogenousHomographyError(xp_i_temp+10,H,x_i_temp+10,one_over_scale2); in db_RobImageHomography_Cost() 56 … acc*=db_ExpCauchyInhomogenousHomographyError(xp_i_temp+12,H,x_i_temp+12,one_over_scale2); in db_RobImageHomography_Cost() 57 … acc*=db_ExpCauchyInhomogenousHomographyError(xp_i_temp+14,H,x_i_temp+14,one_over_scale2); in db_RobImageHomography_Cost() 58 … acc*=db_ExpCauchyInhomogenousHomographyError(xp_i_temp+16,H,x_i_temp+16,one_over_scale2); in db_RobImageHomography_Cost() [all …]
|
D | db_image_homography.cpp | 79 void db_StitchProjective2D_4Points(double H[9], in db_StitchProjective2D_4Points() 91 db_NullVector8x9Destructive(H,c); in db_StitchProjective2D_4Points() 94 void db_StitchAffine2D_3Points(double H[9], in db_StitchAffine2D_3Points() 105 db_NullVector6x7Destructive(H,c); in db_StitchAffine2D_3Points() 106 db_MultiplyScalar6(H,db_SafeReciprocal(H[6])); in db_StitchAffine2D_3Points() 107 H[6]=H[7]=0; H[8]=1.0; in db_StitchAffine2D_3Points() 177 int db_StitchRotationCommonFocalLength_3Points(double H[9],double x1[3],double x2[3],double x3[3],d… in db_StitchRotationCommonFocalLength_3Points() 225 db_Copy9(H,hyp+9*best_sol); in db_StitchRotationCommonFocalLength_3Points() 230 db_Identity3x3(H); in db_StitchRotationCommonFocalLength_3Points()
|
D | db_rob_image_homography.h | 89 double H[9], 132 DB_API double db_RobImageHomography_Cost(double H[9],int point_count,double *x_i, 136 DB_API void db_RobCamRotation_Polish(double H[9],int point_count,double *x_i, 142 DB_API void db_RobCamRotation_Polish_Generic(double H[9],int point_count,int homography_type,
|
/packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/ |
D | db_utilities_camera.h | 156 inline void db_ImageHomographyInhomogenous(double xp[2],const double H[9],const double x[2]) in db_ImageHomographyInhomogenous() 160 x3=H[6]*x[0]+H[7]*x[1]+H[8]; in db_ImageHomographyInhomogenous() 164 xp[0]=m*(H[0]*x[0]+H[1]*x[1]+H[2]); in db_ImageHomographyInhomogenous() 165 xp[1]=m*(H[3]*x[0]+H[4]*x[1]+H[5]); in db_ImageHomographyInhomogenous() 172 inline double db_FocalFromCamRotFocalHomography(const double H[9]) in db_FocalFromCamRotFocalHomography() 176 k1=db_sqr(H[2])+db_sqr(H[5]); in db_FocalFromCamRotFocalHomography() 177 k2=db_sqr(H[6])+db_sqr(H[7]); in db_FocalFromCamRotFocalHomography() 180 return(db_SafeSqrt(db_SafeDivision(k1,1.0-db_sqr(H[8])))); in db_FocalFromCamRotFocalHomography() 184 return(db_SafeSqrt(db_SafeDivision(1.0-db_sqr(H[8]),k2))); in db_FocalFromCamRotFocalHomography() 188 inline double db_FocalAndRotFromCamRotFocalHomography(double R[9],const double H[9]) in db_FocalAndRotFromCamRotFocalHomography() [all …]
|
D | db_metrics.h | 119 inline double db_SquaredReprojectionErrorHomography(const double y[2],const double H[9],const doubl… in db_SquaredReprojectionErrorHomography() 124 x0=H[0]*x[0]+H[1]*x[1]+H[2]*x[2]; in db_SquaredReprojectionErrorHomography() 125 x1=H[3]*x[0]+H[4]*x[1]+H[5]*x[2]; in db_SquaredReprojectionErrorHomography() 126 x2=H[6]*x[0]+H[7]*x[1]+H[8]*x[2]; in db_SquaredReprojectionErrorHomography() 133 inline double db_SquaredInhomogenousHomographyError(const double y[2],const double H[9],const doubl… in db_SquaredInhomogenousHomographyError() 138 x0=H[0]*x[0]+H[1]*x[1]+H[2]; in db_SquaredInhomogenousHomographyError() 139 x1=H[3]*x[0]+H[4]*x[1]+H[5]; in db_SquaredInhomogenousHomographyError() 140 x2=H[6]*x[0]+H[7]*x[1]+H[8]; in db_SquaredInhomogenousHomographyError() 153 inline double db_ExpCauchyInhomogenousHomographyError(const double y[2],const double H[9],const dou… in db_ExpCauchyInhomogenousHomographyError() 157 sd=db_SquaredInhomogenousHomographyError(y,H,x); in db_ExpCauchyInhomogenousHomographyError() [all …]
|
D | db_image_homography.h | 46 DB_API void db_StitchProjective2D_4Points(double H[9], 61 DB_API void db_StitchAffine2D_3Points(double H[9], 100 DB_API int db_StitchRotationCommonFocalLength_3Points(double H[9],double x1[3],double x2[3],double … 169 inline void db_StitchSimilarity2D(double H[9],double **Xp,double **X,int nr_points,int orientation_… 177 H[0]=s*R[0]; H[1]=s*R[1]; H[2]=t[0]; 178 H[3]=s*R[2]; H[4]=s*R[3]; H[5]=t[1]; 179 db_Zero2(H+6); 180 H[8]=1.0;
|
D | db_rob_image_homography.cpp | 36 inline double db_RobImageHomography_Cost(double H[9],int point_count,double *x_i,double *xp_i,doubl… in db_RobImageHomography_Cost() 50 acc=db_ExpCauchyInhomogenousHomographyError(xp_i_temp,H,x_i_temp,one_over_scale2); in db_RobImageHomography_Cost() 51 acc*=db_ExpCauchyInhomogenousHomographyError(xp_i_temp+2,H,x_i_temp+2,one_over_scale2); in db_RobImageHomography_Cost() 52 acc*=db_ExpCauchyInhomogenousHomographyError(xp_i_temp+4,H,x_i_temp+4,one_over_scale2); in db_RobImageHomography_Cost() 53 acc*=db_ExpCauchyInhomogenousHomographyError(xp_i_temp+6,H,x_i_temp+6,one_over_scale2); in db_RobImageHomography_Cost() 54 acc*=db_ExpCauchyInhomogenousHomographyError(xp_i_temp+8,H,x_i_temp+8,one_over_scale2); in db_RobImageHomography_Cost() 55 … acc*=db_ExpCauchyInhomogenousHomographyError(xp_i_temp+10,H,x_i_temp+10,one_over_scale2); in db_RobImageHomography_Cost() 56 … acc*=db_ExpCauchyInhomogenousHomographyError(xp_i_temp+12,H,x_i_temp+12,one_over_scale2); in db_RobImageHomography_Cost() 57 … acc*=db_ExpCauchyInhomogenousHomographyError(xp_i_temp+14,H,x_i_temp+14,one_over_scale2); in db_RobImageHomography_Cost() 58 … acc*=db_ExpCauchyInhomogenousHomographyError(xp_i_temp+16,H,x_i_temp+16,one_over_scale2); in db_RobImageHomography_Cost() [all …]
|
D | db_image_homography.cpp | 79 void db_StitchProjective2D_4Points(double H[9], in db_StitchProjective2D_4Points() 91 db_NullVector8x9Destructive(H,c); in db_StitchProjective2D_4Points() 94 void db_StitchAffine2D_3Points(double H[9], in db_StitchAffine2D_3Points() 105 db_NullVector6x7Destructive(H,c); in db_StitchAffine2D_3Points() 106 db_MultiplyScalar6(H,db_SafeReciprocal(H[6])); in db_StitchAffine2D_3Points() 107 H[6]=H[7]=0; H[8]=1.0; in db_StitchAffine2D_3Points() 177 int db_StitchRotationCommonFocalLength_3Points(double H[9],double x1[3],double x2[3],double x3[3],d… in db_StitchRotationCommonFocalLength_3Points() 225 db_Copy9(H,hyp+9*best_sol); in db_StitchRotationCommonFocalLength_3Points() 230 db_Identity3x3(H); in db_StitchRotationCommonFocalLength_3Points()
|
D | db_rob_image_homography.h | 89 double H[9], 132 DB_API double db_RobImageHomography_Cost(double H[9],int point_count,double *x_i, 136 DB_API void db_RobCamRotation_Polish(double H[9],int point_count,double *x_i, 142 DB_API void db_RobCamRotation_Polish_Generic(double H[9],int point_count,int homography_type,
|
/packages/apps/Camera/jni/feature_stab/src/dbreg/ |
D | dbreg.h | 189 …int AddFrame(const unsigned char * const * im, double H[9], bool force_reference=false, bool prewa… 264 void Get_H_dref_to_ref(double H[9]); 268 void Get_H_dref_to_ins(double H[9]); 273 void Set_H_dref_to_ins(double H[9]); 284 void EstimateSecondaryModel(double H[9]); 371 void ComputeInliers(double H[9]); 432 inline void db_GenerateHomographyLut(float ** lut_x,float ** lut_y,int w,int h,const double H[9]) in db_GenerateHomographyLut() 454 db_Multiply3x3_3x1(xb, H, x); in db_GenerateHomographyLut() 553 inline double SquaredInhomogenousHomographyError(double y[3],double H[9],double x[3]){ in SquaredInhomogenousHomographyError() 557 x0=H[0]*x[0]+H[1]*x[1]+H[2]; in SquaredInhomogenousHomographyError() [all …]
|
D | dbreg.cpp | 310 void db_FrameToReferenceRegistration::Get_H_dref_to_ref(double H[9]) in Get_H_dref_to_ref() 312 db_Copy9(H,m_H_dref_to_ref); in Get_H_dref_to_ref() 315 void db_FrameToReferenceRegistration::Get_H_dref_to_ins(double H[9]) in Get_H_dref_to_ins() 317 db_Multiply3x3_3x3(H,m_H_dref_to_ref,m_H_ref_to_ins); in Get_H_dref_to_ins() 320 void db_FrameToReferenceRegistration::Set_H_dref_to_ins(double H[9]) in Set_H_dref_to_ins() 326 …db_Multiply3x3_3x3(m_H_dref_to_ref,H,H_ins_to_ref); // Update dref to ref using the input H from d… in Set_H_dref_to_ins() 344 int db_FrameToReferenceRegistration::AddFrame(const unsigned char * const * im, double H[9],bool fo… in AddFrame() 350 db_Copy9(H,m_H_ref_to_ins); in AddFrame() 405 m_match_index_ref,m_match_index_ins,&m_nr_matches,H,0); in AddFrame() 491 db_Copy9(H, m_H_ref_to_ins); in AddFrame() [all …]
|
/packages/apps/LegacyCamera/jni/feature_stab/src/dbreg/ |
D | dbreg.h | 189 …int AddFrame(const unsigned char * const * im, double H[9], bool force_reference=false, bool prewa… 264 void Get_H_dref_to_ref(double H[9]); 268 void Get_H_dref_to_ins(double H[9]); 273 void Set_H_dref_to_ins(double H[9]); 284 void EstimateSecondaryModel(double H[9]); 371 void ComputeInliers(double H[9]); 432 inline void db_GenerateHomographyLut(float ** lut_x,float ** lut_y,int w,int h,const double H[9]) in db_GenerateHomographyLut() 454 db_Multiply3x3_3x1(xb, H, x); in db_GenerateHomographyLut() 553 inline double SquaredInhomogenousHomographyError(double y[3],double H[9],double x[3]){ in SquaredInhomogenousHomographyError() 557 x0=H[0]*x[0]+H[1]*x[1]+H[2]; in SquaredInhomogenousHomographyError() [all …]
|
D | dbreg.cpp | 310 void db_FrameToReferenceRegistration::Get_H_dref_to_ref(double H[9]) in Get_H_dref_to_ref() 312 db_Copy9(H,m_H_dref_to_ref); in Get_H_dref_to_ref() 315 void db_FrameToReferenceRegistration::Get_H_dref_to_ins(double H[9]) in Get_H_dref_to_ins() 317 db_Multiply3x3_3x3(H,m_H_dref_to_ref,m_H_ref_to_ins); in Get_H_dref_to_ins() 320 void db_FrameToReferenceRegistration::Set_H_dref_to_ins(double H[9]) in Set_H_dref_to_ins() 326 …db_Multiply3x3_3x3(m_H_dref_to_ref,H,H_ins_to_ref); // Update dref to ref using the input H from d… in Set_H_dref_to_ins() 344 int db_FrameToReferenceRegistration::AddFrame(const unsigned char * const * im, double H[9],bool fo… in AddFrame() 350 db_Copy9(H,m_H_ref_to_ins); in AddFrame() 405 m_match_index_ref,m_match_index_ins,&m_nr_matches,H,0); in AddFrame() 490 db_Copy9(H, m_H_ref_to_ins); in AddFrame() [all …]
|
/packages/apps/Camera/perftests/panorama/input/ |
D | test_008.ppm | 25 H-/?%'" 39 LPD O>"-=K& f55OH 44 …���������������������������������������|ku^LWXFQM<F:(3=,6)"mTa����]l<H&R0�|��������������… 61 H<0=/JI%##! 74 !8 L)0P-4<P(14V.7gBJR-51*,>*-7-)6,(H=:F<86))%/ VEF?,.C/1�tw�mp�hmV;… 112 H 8<I^ZDEJ 114 …"hC?ơ�Q3-_A;�xtwTPE-,�����½��m[]RAB*M67P8:`BE> #Y;>F(,> #H)-D&)!*… 117 PWM T [L>HVz4B�>KB ;3,34:-4 130 #&-07>H DM&8B,5 148 65A"(//;')6))<//7-,PEDF<;"RABH67W?CO7;?&*>%)&8"H-11M37C(-Y>C18"/… [all …]
|
D | test_006.ppm | 42 H0 45 …���������������������������������������������������������ƴ�ȳ����˹Èu�w�zhseS^B0;O=H n]g���}ak= 46 …H(L#1�o}�����������������������������������������������������������������������������������������… 114 "'")J36bKLS<=S=7H1,bV7gZ<WW';;(1AJER%;H/<,8 143 F-1K-3J,1�w~tQX�gnH'.?!''<e>Bd=AAH!#F*1;6 "-& … 156 H-6����`loMYD%;5H(�{�])6Tg-�z|��������������������������������������������������������… 187 …#,:Q'0D#b;DkCLD#*57"WEFH67D:6F<86.*'*"-XDFnSX�tx�uzmRWZ?DL16S8=V;?pVZ?%)6 H-15% 191 6:H ;/La"*JzXY�`a�lp�qvTDE������aMPiPT`FKE,0" 199 ,[AJ�gsxWbQ!1;4%C AHKO--uSS~^bvVZ�����������������������������������������������… 245 )J%-8B&B#)O06'-=-.TDELB>>405-)''5!#=),gLQmRWP5:H-1C(->#( % [all …]
|
D | test_007.ppm | 37 '5*'7-)B74E;7:-*- #(%E,.bIKO46I.0H-/�moz_a.<!#^CE~`d�twL*,* 38 Ba8<^05F8 ?;H 42 / '!%)Q!Kk8<ئ��__�hhoQT�gkeDID#(P'H�elV]% 44 :!vX^ؽ�dIM'iCE^7:W!LV!QH!%.(1* 48 ?JLH?!( <=48T-48', =6),�Q^�x�X)5*lFLtIM�dh�QY�fn��������蠖�¶����… 69 "&*F/353-TB*f^0{sE``0&&-5<D>K ;H-:.;,7'3#'3>.:… 93 …C(*]II���ͺ�aMMoXYgPQE43O=<):#<!&Z?DkPTO.54&(:0 H!#H!#P,-oKL`58:<L(*… 94 ,!Hb57a 97 FD%%F''?"!A#"M,-H&'-%L 101 …����������������������������������������������������ɷ¢��vam}kuC0;;)43!, !bPZ�am4BH [all …]
|
D | test_003.ppm | 36 A6%"^36P,-) .H(tES|M[,a:Aâ�R16bIKfhYHFzhgQ:;lTV… 37 X5<J'.>"b?FY6=.{ZaR18%P17O.5V5<H'.7:CA5%;,"3 … 41 F=>M!)k<E�XaT#)76/> F??-Q&*{S])3T6<-H)//7!/ J#�[e… 60 …F/3),='%:#!XF8xgYspKVS.!&-64=8E5B)6)6)5!- ".)"5? =H-',CH*?D… 66 …),(%'AI "/ 6F ",*)H/-%&… 81 …)0vHSС��`h�x�hEL8_HKM6:p`aƶ�aMPZFIR;>;#'#F#*I#,a<DF#*:K*1H'. 88 KFKb#.H 6M}EM[#,Q!-0:HE ;574 5L'/oJRD'/?%)x^bF,0fKP0fAIK&.… 91 mQZ���*!0M/58 *H-1�fkF,0 99 AM"5B/<"/ ,0<0<!--8WaB=H( 122 M=>[KLA655*)6.*H?<7/,5((P<>>*-F,05L16oTYnSX5^CH4H)/"&F I"A FS
|
D | test_011.ppm | 33 80^1:O"*>H!S&565,#DL 35 l )Z?g (H 4B�gk`58>/ '#& .I,1 46 …H(�VbS'4�t��Tdf4g5s8J�FX�����������������������������������������������������������������������… 59 4 -/H776/1DQ!7 80 T16J")>H 82 H 90 OIRu#1h(0HJOLL]!t.8MMx!.iE^L7Y HS&(������������������ … 106 60,/: A6H#&P333#- 114 #"8H%#%I%B(*17 < 122 m&.>K=4,# #% 7P <6)H*)B!&8R*1F& %…
|
D | test_012.ppm | 25 V!(W035H&&O--J-,C&%;E &;!%!!, 43 . . 45:H%!'# :- 54 < 55 MQJHMA/',11,.1A 60 #,6>>=CFQQHB-HiED#X43Y54T56. ! "… 65 [AC�vxzTZ���R-3;)Y-5ҧ�֫�)H#%������ڽ�nQP(T01���E <<?M 85 #F-1E")H%,B%5E%3 , 96 7=e05W"'EFH [%KV#�BJRKT] f!TM�7D�[h�1?f"IDDA;B_^R[ 97 …(.<!#�{}hCI�]bb=CY4:<Ě��abZ67;`:<zXXX66�}}ֶ�nJKW34���Q(,65:~?H���������������������… 122 P_%l&0>> 31I. &*/&!=OV`1;033!(%.1K… [all …]
|
D | test_034.ppm | 5 …H]7Ke7Ke8Lf8Lf:Mg:Mg;Oh:Mg8Mh8Mh8Mh8Mh8Mh7Lg6Kf7Lg7Lg6Kf7Lg7Lg7Lg7Lg7Lg7Lg8Og5Kd5Kd5Kd5Kd5Kd,BZ/E^… 15 …LxnKwmLulLulLulLulLulLulLulLulOumOumPvnPvnLulLulOtlPumPvnOumQslQsl0DB.,,(,("/1)68H`ZYql`unAVO! 16 …o��n��n��m��l��l��l��l��l��i��h��i��i��g��f��b��Op�>_o:Zkd��f��f��h��i��i��k��m��p��v��[w�;I1JS&>H 20 …Og7Mf7Mf7Mf6Le6Le6Le6Le6Le5Kd4Jb4Jb6Le6Le5Kd4Ha4Ha4Ha3F`3Ia1H`/E^0F_/E^/E^!1H3/-'!-?EL[ah… 35 …wP�vP�wS�{S�{S�{P�zP�zR�zR�zT�{Q�wP�vP�vR�xS�zR�xR�xQ�wR�xQ�wQ�wS�vIvl���h��H{nK~qKsL�tL�tL�tL�tK… 37 …H/A*<(:%3"0)"-FPVZdi_fh[behookqqk�ol�pW�WY�YV�RW�SV�RW�ST�QV�RV�TV�TV�TV�TV�TT�SV�TV�TT�VS… 40 …1K3J3J3J 4K 4K3J!5L#7O3J3J 4K1I.F/H"3K#4L3J 4K 4K"6M"6M3J"6M#7O%8P%8P&:Q%8P"6M#7O';P&:O… 46 …������������̯�����������������������������������������Z_h-7L:DY7H`5E^6F_7H`7H`8Ia:Je:Je7Ke6Jd7Kb8L… 47 …����������������������������������������������������������VYf.8M:DY6F_7H`7H`7H`8Ia:Jb:Je;Kf7Ke7Ke8… 53 …����������˹��������������������������������������������������TYb/:O:DY5E^7H`7H`:Jb:Jb:Jb8Id8Id6Jd7… [all …]
|
/packages/apps/Camera/jni/feature_stab/src/dbregtest/ |
D | dbregtest.cpp | 192 double H[9],Hinv[9]; in main() local 194 db_Identity3x3(H); in main() 202 reg.AddFrame(ref.GetRowPointers(),H,false,false); in main() 224 reg.Get_H_dref_to_ins(H); in main() 226 db_GenerateHomographyLut(lut_x,lut_y,w,h,H); in main()
|
/packages/apps/LegacyCamera/jni/feature_stab/src/dbregtest/ |
D | dbregtest.cpp | 192 double H[9],Hinv[9]; in main() local 194 db_Identity3x3(H); in main() 202 reg.AddFrame(ref.GetRowPointers(),H,false,false); in main() 224 reg.Get_H_dref_to_ins(H); in main() 226 db_GenerateHomographyLut(lut_x,lut_y,w,h,H); in main()
|