此时图像出人意料
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了此时图像出人意料相关的知识,希望对你有一定的参考价值。
所以我正在研究NBIS。我试图使用mindtct
。当我将它用于单个图像时,它可以正常工作,但当我尝试为数据集运行它时,我收到此错误,
此时的形象出人意料
我在网上查了一下,它说需要双倍的工作量。我试过了,它仍然给我同样的错误。目录都是正确的。我正在使用Windows 10
@echo off
Rem set the path of the photo directory
Set dirP= C:Biometricphotos
Rem set the path for the mindtct
Set dirM= "C:Rel_5.0.0mindtctin"mindtct.exe
Set image="*.png"
for %%A in image
do(
START dirM dirP C:BiometricData
)
答案
您的代码中存在一些缺陷:
- 要扩展变量,您需要将其括在
%
符号中(或使用DelayedExpansion封装!
) - 请参阅
for /?
的语法或查看http://ss64.com/nt/for.html - start命令使用双引号中的第一个参数作为窗口标题
@echo off
Rem set the path of the photo directory
Set "dirP=C:Biometricphotos"
Rem set the path for the mindtct
Set "dirM=C:Rel_5.0.0mindtctinmindtct.exe"
Set "image=*.png"
for %%A in (%image%) do START "" "%dirM%" "%dirP%" C:BiometricData
以上是关于此时图像出人意料的主要内容,如果未能解决你的问题,请参考以下文章