コード例 #1
0
ファイル: detectors.py プロジェクト: StarkitRobots/detectors
    def apply(self, img):
        result, success_curr = image_processing.find_max_bounding_box(img)

        self.success.append(success_curr)

        #print ("max area cc bbox", result)

        return result
コード例 #2
0
ファイル: detectors.py プロジェクト: StarkitRobots/kondo
 def apply(self, img):
     return image_processing.find_max_bounding_box(img)