- Timestamp:
- Jan 4, 2008, 2:06:49 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branch_20071222/Ohana/src/kapa2/include/structures.h
r15935 r15996 66 66 } TextBox; 67 67 68 /*** 3C color cube histogram tree thingy ***/ 69 typedef struct CCNode { 70 // for the moment, this structure is specific to the color-histogram analysis. if 71 // this were a void *pointer and we defined some additional apis, we could use this 72 // structure to track any 3D space 73 int count; 74 int pixel; 75 char bottom; 76 float min[3]; // min value for each of the 3 dimensions for this node 77 float mid[3]; // mid-point for each of the 3 dimensions for this node 78 float max[3]; // max value for each of the 3 dimensions for this node 79 struct CCNode *sub[2][2][2]; 80 } CCNode; 81 68 82 /**************** general structures ****************/ 69 83 typedef struct {
Note:
See TracChangeset
for help on using the changeset viewer.
