Home
last modified time | relevance | path

Searched refs:m_h (Results 1 – 7 of 7) sorted by relevance

/packages/apps/LegacyCamera/jni/feature_stab/src/dbregtest/
DPgmImage.cpp23 m_w(0),m_h(0),m_colors(255),m_format(PGM_BINARY_GRAYMAP),m_over_allocation(256) in PgmImage()
30 m_colors(255),m_w(w),m_h(h),m_format(format),m_over_allocation(256) in PgmImage()
36 m_colors(255),m_w(w),m_h(h),m_format(PGM_BINARY_GRAYMAP),m_over_allocation(256) in PgmImage()
42 m_colors(255),m_w(w),m_h(h),m_format(PGM_BINARY_GRAYMAP),m_over_allocation(256) in PgmImage()
52 m_colors(255),m_w(0),m_h(0),m_format(PGM_BINARY_GRAYMAP),m_over_allocation(256) in PgmImage()
70 dst.m_h = src.m_h; in DeepCopy()
90 m_data.resize(m_w*m_h+m_over_allocation); in SetFormat()
93 m_data.resize(m_w*m_h*3+m_over_allocation); in SetFormat()
104 m_data.resize(m_w*m_h+m_over_allocation); in SetData()
105 memcpy(&m_data[0],data,m_w*m_h); in SetData()
[all …]
DPgmImage.h55 int GetHeight() const { return m_h; } in GetHeight()
63 …unsigned char ** GetRowPointers() { if ( m_rows.size() == m_h ) return &m_rows[0]; else return NUL… in GetRowPointers()
85 int m_h; variable
/packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/
Ddb_feature_detection.cpp1566 m_w=0; m_h=0; in db_CornerDetector_f()
1580 db_FreeStrengthImage_f(m_strength_mem,m_strength,m_h); in Clean()
1582 m_w=0; m_h=0; in Clean()
1613 m_h=im_height; in Start()
1620 m_max_nr=db_maxl(1,1+(m_w*m_h*m_area_factor)/10000); in Start()
1624 m_strength=db_AllocStrengthImage_f(&m_strength_mem,m_w,m_h); in Start()
1633 db_HarrisStrength_f(m_strength,img,m_w,m_h,m_temp_f,m_cw); in DetectCorners()
1637 max_val=db_MaxImage_Aligned16_f(m_strength,3,3,m_w-6,m_h-6); in DetectCorners()
1642 …db_ExtractCornersSaturated(m_strength,BORDER,BORDER,m_w-BORDER-1,m_h-BORDER-1,m_bw,m_bh,m_area_fac… in DetectCorners()
1648 m_w=0; m_h=0; in db_CornerDetector_u()
[all …]
Ddb_feature_detection.h81 int m_w,m_h,m_cw,m_bw,m_bh; variable
169 int m_w,m_h,m_bw,m_bh; variable
Ddb_feature_matching.h147 int m_w,m_h,m_bw,m_bh,m_nr_h,m_nr_v,m_bd,m_target; variable
246 int m_w,m_h,m_bw,m_bh,m_nr_h,m_nr_v,m_bd,m_target; variable
Ddb_feature_matching.cpp3178 m_w=0; m_h=0; in db_Matcher_f()
3196 m_w=0; m_h=0; in Clean()
3203 m_h=im_height; in Init()
3211 m_kA=(long)(256.0*((double)(m_w*m_w))/((double)(m_h*m_h))); in Init()
3245 m_w=0; m_h=0; in db_Matcher_u()
3254 Init(cm.m_w, cm.m_h, cm.m_max_disparity, cm.m_target, cm.m_max_disparity_v); in db_Matcher_u()
3260 Init(cm.m_w, cm.m_h, cm.m_max_disparity, cm.m_target, cm.m_max_disparity_v); in operator =()
3280 m_w=0; m_h=0; in Clean()
3289 m_h=im_height; in Init()
3303 m_kB=(int)(max_disparity_v*m_h); in Init()
[all …]
/packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
DImageUtils.cpp179 int m_h = height; in imageTypeToRowPointers() local
182 ImageType *m_rows = new ImageType[m_h]; in imageTypeToRowPointers()
184 for (i=0;i<m_h;i++) { in imageTypeToRowPointers()