Home
last modified time | relevance | path

Searched refs:H (Results 1 – 25 of 40) sorted by relevance

12

/packages/apps/Camera/jni/feature_stab/db_vlvm/
Ddb_utilities_camera.h156 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 …]
Ddb_metrics.h119 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 …]
Ddb_image_homography.h46 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;
Ddb_rob_image_homography.cpp36 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 …]
Ddb_image_homography.cpp79 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()
Ddb_rob_image_homography.h89 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/
Ddb_utilities_camera.h156 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 …]
Ddb_metrics.h119 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 …]
Ddb_image_homography.h46 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;
Ddb_rob_image_homography.cpp36 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 …]
Ddb_image_homography.cpp79 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()
Ddb_rob_image_homography.h89 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/
Ddbreg.h189 …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 …]
Ddbreg.cpp310 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/
Ddbreg.h189 …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 …]
Ddbreg.cpp310 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/
Dtest_008.ppm25 H-/?%'"
39 L�P�D O>"-=K& f55OH
44 …�������������������������������׻��������|ku^LWXFQM<F:(3=,6)" mTa����]l<H&R0�|��������������…
61 H< 0�= /�JI%��#��#�!��������
74 ���! 8 ��L)0P-4<P(14 V.7gBJR-51* ,>*-7-)6,(H=:F<86))%/ VEF?,.C/1�tw�mp�hmV;…
112 H 8��<��I�^ ZD�E�J
114 …"����hC?ơ�Q3-_A;�xtwTPE-,�����½��m[]RAB*��M67P8:`BE�> #Y;>F(,> #H)-D&)!�������*…
117 P W M T [L >��H�Vz4B�>KB� ;�3��,��3��4��:-4
130 #�&-07>H DM&8B,5
148 65�A"(//;')6))<//7-,PEDF<;" RABH67W?CO7;?&*>%)& 8"H-11M37C(-Y>C18"�/ …
[all …]
Dtest_006.ppm42 H0
45 …���������������������������������������������������������ƴ�ȳ����˹Èu�w�zhseS^B0;O=H  n]g���}ak=
46H(L#1�o}�����������������������������������������������������������������������������������������…
114 " '" )�J36bKLS<=S=7H1,bV7gZ<WW';; (1�AJER%;H/<,8
143 F-1K-3J,1�w~tQX�gnH'.?!'������'�<e>Bd=AAH!#F*��1�; 6�� �������"- & �����…
156  H-6����`loMYD%; 5H(�{�])6T g-�z|��������������������������������������������������������…
187 …#,:Q'0D#b;DkCLD#*57"WEFH67D:6F<86.*'*"-XDFnSX�tx�uzmRWZ?DL16S8=V;?pVZ?%)6 H-15%
191 �� ������6��:�H ;��/��L a"*J zXY�`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 …]
Dtest_007.ppm37 '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!L V!QH!%. (������������1*
48 ?J LH?!��( <=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;;)4  3!, !bPZ�am4BH
[all …]
Dtest_003.ppm36 A�6�%��"��^36P,-)�������������� ����������.H(tES|M[, a:Aâ�R16bIKfhYHFzhgQ:;lTV…
37 ����X5<J'.>"b?FY6=. {ZaR18����% P17O.5V5<H'.7����:�CA�5��%;,������"3 …
41 F=>M!)k<E�XaT#)7 6�/��>� F??-Q&*{S]�� ��������) 3T6<-H)//7!�/� J#�[e…
60 …F/3),='%:#!XF8xgYspKVS.�!&�-6 4=8E5B)6 )6 )5!- ". )"5? =H-��������',CH*?D…
66 …),(�%��'�AI "/ 6F ",�������������� �� ������*)H/-����� %&…
81 …���������)�0 vHSС��`h�x�hEL8_HKM6:p`aƶ�aMPZFIR;>;#' ������#F#*I#,a<DF#*:K*1H'.�
88 K F Kb#.H 6�M}EM[#,Q!-��0��:�H� E� ;�5��7 4 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,05L16oTYnSX������5^CH4H)/"�&F I"A FS
Dtest_011.ppm33 80 ^1:O"*>H!S&56��5��,��#��DL
35 l )Z?��g (H 4��B�gk`58>/ '�#����&������������ ��.I,��1
46H(�VbS'4�t��Tdf4g5s8J�FX�����������������������������������������������������������������������…
59 4 -��/��H776/��1�DQ!7
80 T16��J")>H
82 H
90 O� I�Ru#1h(0HJOLL]!t.8MMx!.iE��^ L 7��Y H�S&(������������������ ���…
106 6�0��,��/��: A6H#&P333#-
114 #�"��8H%#�%�I%B(�*�1 7 <
122 m&.>�K =4 ,#���������� ��#��%��������� ��7�P < 6 ) H*)B!&8R*1F&�� �%���…
Dtest_012.ppm25 V!(W035H&&O--J-,C&%;E &;��!�%�����!�!�,
43 . .� 45: H%!������'���������������# :-�������� 
54 <�
55 MQ JH�M A/��'��,��1�1�,��.��1��A
60 ��������#��,��6��>�>��=��C��F��Q�Q�HB�-�HiED#��X43Y54T56.� �������!��� ��"…
65 ��[AC�vxzTZ���R-3;)�Y-5ҧ�֫�)H#%������ڽ�nQP(T01���E <�<�?�M
85 #�F-1E")H%,B%5E%3 ,�
96 7�= e05W"'E F H [%KV#�BJRK�T] f!TM� �7D�[h�1?f"I�D��D�A�;��B��_^�R�[�
97 …(.<!#�{}hCI�]bb=CY4:<Ě��abZ67;`:<zXXX66�}}ֶ�nJKW34���Q(,6�5�:�~?H���������������������…
122 P_%l&0>�>� 3��1�I.� &�*�/�&��!��= OV`1;0 ����������3 3 !����(��%.�1�K …
[all …]
Dtest_034.ppm5H]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^!1H 3/ -'!-?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…
37H/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/
Ddbregtest.cpp192 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/
Ddbregtest.cpp192 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()

12