So I'm working on NBIS. I was trying to use mindtct
. It works when I use it for an individual image but when I was trying to run it for a dataset I get this error,
image was unexpected at this time
I've checked online and it says that it needs double % for it to work. I tried that and it still gives me the same errors. The directories are all correct. I'm using Windows 10
@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
)