图像上划分网格
from PIL import Image, ImageDraw
import osfile_dir= "C:/Users/Desktop/test_images"
save_dir= "C:/Users/Desktop/pic_grid"
if not os. path. exists( save_dir) : os. mkdir( save_dir)
for img_name in os. listdir( file_dir) : w_grid = 11 h_grid = 11 w= 352 h= 352 img = Image. open ( os. path. join( file_dir, img_name) )
img = img. resize( ( w, h) )
width, height = img. size
cell_width = width // w_gridcell_height = height // h_grid
draw = ImageDraw. Draw( img) for i in range ( 1 , h_grid) : y = i * cell_heightdraw. line( ( 0 , y, width, y) , fill= ( ( int ) ( 255 ) , ( int ) ( 0 ) , ( int ) ( 0 ) ) , width= 1 )
for j in range ( 1 , w_grid) : x = j * cell_widthdraw. line( ( x, 0 , x, height) , fill= ( ( int ) ( 255 ) , ( int ) ( 0 ) , ( int ) ( 0 ) ) , width= 1 )
img. save( os. path. join( save_dir, img_name) )