1.for循环
for i:=1 to 4 by 1
endfor
2.读取图像
read_image(image,filename)
3.遍历图像
for i:=1 to 4 by 1
read_image(image,‘F:/‘+i+‘.jpg‘)
endfor
4.list file(‘flie‘,‘directories‘,‘recursive‘,‘follow_links‘,‘maxdepth‘,‘max_files‘)
file--指定搜索格式为文件
directories--指定搜索格式为文件夹
recursive--指定可以遍历子文件夹里的文件
max_depth 5--指定遍历深度
max_files 1000--指定遍历的最大文件数
5.选择符合规则的索引
tuple_regexp select(ImageFiles,[‘\\.(tif|tiff|bmp)‘],ImageFiles)
时间: 2024-10-10 00:35:11