图片目前无法预料

时间:2018-07-28 07:53:25

标签: windows batch-file

所以我正在研究NBIS。我正在尝试使用true。当我将其用于单个图像时,它可以工作,但是当我尝试为数据集运行它时,出现此错误,

  

图片目前无法正常显示

我已经在线检查过,它说它需要两倍的百分比才能起作用。我尝试过,它仍然给我同样的错误。目录都是正确的。我正在使用Windows 10

mindtct

1 个答案:

答案 0 :(得分:0)

您的代码中存在几个缺陷:

  • 要扩展变量,您必须将其用%符号(或!加上DelayedExpansion)括起来
  • 查看for /?的语法或查看http://ss64.com/nt/for.html
  • start命令使用双引号中的第一个参数作为窗口标题

@echo off
Rem set the path of the photo directory
Set "dirP=C:\Biometric\photos"
Rem set the path for the mindtct
Set "dirM=C:\Rel_5.0.0\mindtct\bin\mindtct.exe"
Set "image=*.png"
for %%A in (%image%) do START "" "%dirM%" "%dirP%" C:\Biometric\Data