0

I've been able to successfully use the "Pix" type with Tesseract (see http://code.google.com/p/tesseract-ocr/wiki/APIExample), yet only "struct Pix" and "PIX" are defined in pix.h (of the Leptonica library). "Pix" (no "struct" keyword) seems to not be defined, but it must be defined somehwere.

Searching the headers for "Pix" renders too many matches to browse through for meaning. Does anyone know why "Pix" works?

Dustin Oprea
  • 9,673
  • 13
  • 65
  • 105

1 Answers1

0

Per @Eddy_Em: That it is: in C++ you don't need to write "struct A", you can just write "A".

Dustin Oprea
  • 9,673
  • 13
  • 65
  • 105