예제 #1
0
파일: buddies.py 프로젝트: gabisurita/GDAd
 def correction_matrix_masked(self, x, y, mask):
     return image.calculate_correction_matrix_masked(
         self.obj.surface.surface,
         mask,
         self.matrix,
         x, y
     )
예제 #2
0
파일: buddies.py 프로젝트: bgeneto/sdaps
    def correction_matrix_masked(self, x, y, mask):
        assert(not self.obj.ignored)

        return image.calculate_correction_matrix_masked(
            self.obj.surface.surface,
            mask,
            self.matrix,
            x, y
        )
예제 #3
0
파일: buddies.py 프로젝트: marvin2k/sdaps
    def correction_matrix_masked(self, x, y, mask):
        assert(not self.obj.ignored)

        return image.calculate_correction_matrix_masked(
            self.obj.surface.surface,
            mask,
            self.matrix,
            x, y
        )