davidb1
davidb1
Yup meant tesseract itself. Any chance for a build with `5 alpha`?
``` class TesseractProcess(Process): def __init__(self, language, img): Process.__init__(self) self.tesseractInstance = PyTessBaseAPI( lang=language, psm=PSM.AUTO_OSD) self.img = img def run(self): confidence = 0 self.tesseractInstance.SetImage(self.img) print("Image set") arr = list(self.tesseractInstance.AllWordConfidences()) if len(arr) >...
Look here in "Installation" part: [https://github.com/matterport/Mask_RCNN/blob/master/samples/balloon/README.md](https://github.com/matterport/Mask_RCNN/blob/master/samples/balloon/README.md)
Follow the installation instructions and you'll get it. It's in balloon_dataset.zip on the releases page: [https://github.com/matterport/Mask_RCNN/releases](https://github.com/matterport/Mask_RCNN/releases)