X-Git-Url: https://www.fleuret.org/cgi-bin/gitweb/gitweb.cgi?p=folded-ctf.git;a=blobdiff_plain;f=pose_cell_hierarchy.h;h=2ecfde9476b87fc08482504e678b13d28d15af80;hp=ffd2146ca4a2d8efc0f4f1992389eae866f5ab91;hb=28fa0ccaecec204d1781135c75c2b2ab13153312;hpb=f7e3efe41ffb65d89e8f2ce814c23ff90ad24f34 diff --git a/pose_cell_hierarchy.h b/pose_cell_hierarchy.h index ffd2146..2ecfde9 100644 --- a/pose_cell_hierarchy.h +++ b/pose_cell_hierarchy.h @@ -22,14 +22,14 @@ #include "pose_cell_set.h" #include "labelled_image_pool.h" -struct RelativeBodyPoseCell { - Interval _body_xc, _body_yc; +struct RelativeBellyPoseCell { + Interval _belly_xc, _belly_yc; }; class PoseCellHierarchy { static const scalar_t pseudo_infty = 10000; - static const scalar_t body_resolution = 0.5; + static const scalar_t belly_resolution = 0.5; static const int nb_radius_1 = 16; static const int nb_radius_2 = 16; @@ -40,9 +40,9 @@ class PoseCellHierarchy { scalar_t _max_head_radius; int _root_cell_nb_xy_per_scale; - int _nb_body_cells; + int _nb_belly_cells; - RelativeBodyPoseCell *_body_cells; + RelativeBellyPoseCell *_belly_cells; public: PoseCellHierarchy();