コード例 #1
0
ファイル: photo.py プロジェクト: 12019/LCD-OCR
 def debug(self, window_title="Photo"):
     assert self.coords_list and self.subimage.shape
     Plotter.outline_subimages(
         CroppableImage(self.subimage),
         self.get_lcd_object(),
         window_title=window_title
     )
コード例 #2
0
ファイル: lcd.py プロジェクト: gnome74/LCD-OCR
 def debug(self, window_title="Find rows"):
     Plotter.outline_subimages(self.image,
                               self.extract_rows(),
                               window_title=window_title)
コード例 #3
0
ファイル: photo.py プロジェクト: gnome74/LCD-OCR
 def debug(self, window_title="Photo"):
     assert self.coords_list and self.subimage.shape
     Plotter.outline_subimages(CroppableImage(self.subimage),
                               self.get_lcd_object(),
                               window_title=window_title)
コード例 #4
0
ファイル: single_row.py プロジェクト: 12019/LCD-OCR
 def debug(self, window_title="Find digits"):
     Plotter.outline_subimages(self.image, self.extract_digits_areas(), window_title=window_title)
コード例 #5
0
ファイル: single_row.py プロジェクト: gnome74/LCD-OCR
 def debug(self, window_title="Find digits"):
     Plotter.outline_subimages(self.image,
                               self.extract_digits_areas(),
                               window_title=window_title)