IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jan 4, 2008, 2:06:49 AM (19 years ago)
Author:
eugene
Message:

initial release of the histogram 3d color cube

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branch_20071222/Ohana/src/kapa2/include/structures.h

    r15935 r15996  
    6666} TextBox;
    6767
     68/*** 3C color cube histogram tree thingy ***/
     69typedef 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
    6882/**************** general structures ****************/
    6983typedef struct {
Note: See TracChangeset for help on using the changeset viewer.