0
Wie bekommt man Höhe und Breite von einem Bild?leptonica - Abmessung (Höhe/Breite)
Pix *image = pixRead((input).c_str());
Wie bekommt man Höhe und Breite von einem Bild?leptonica - Abmessung (Höhe/Breite)
Pix *image = pixRead((input).c_str());
Verwenden pixGetWidth und pixGetHeight:
Pix *image = pixRead((input).c_str());
int width = pixGetWidth(image);
int height = pixGetHeight(image);