コード例 #1
0
ファイル: image_editor.py プロジェクト: Natsik/S_Ch_Imaging
 def inversion(self):
     new_c_img = self.c_img.copy()
     MS2.c_inversion_func(self.c_img, new_c_img, self.np_shape[1] * 3, self.np_shape[0])
     self.c_img = new_c_img
コード例 #2
0
ファイル: image_editor.py プロジェクト: Natsik/S_Ch_Imaging
 def dilatation(self):
     new_c_img = self.c_img.copy()
     MS2.c_dilatation_func(self.c_img, new_c_img, self.np_shape[1] * 3, self.np_shape[0])
     self.c_img = new_c_img