Returns a vector representing the direction of a feature with the given theta direction in an INT_FEATURE_STRUCT.
| 68 | // Returns a vector representing the direction of a feature with the given |
| 69 | // theta direction in an INT_FEATURE_STRUCT. |
| 70 | FCOORD FeatureDirection(uinT8 theta) { |
| 71 | return FCOORD(cos_table[theta], sin_table[theta]); |
| 72 | } |
| 73 | |
| 74 | namespace tesseract { |
| 75 |
no test coverage detected