Hi,
yes, the "SPHERE to CUBE MULTIRES droplet.bat" was currently designed to handle only one file as input,
but this can be changed easily:
open the "SPHERE to CUBE MULTIRES droplet.bat" with a texteditor (e.g. notepad)
and replace it's content with the following one:
|
Source code
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
@echo off
IF %1 == "" GOTO ERROR
IF NOT EXIST %1 GOTO ERROR
for %%i in (%*) do (
"%~dp0\ktransform" cube6 %%i "%%~dpni.tif"
"%~dp0\kmakemultires" "%%~dpni_*.tif" -waitkey=false
del "%%~dpni_l.tif"
del "%%~dpni_f.tif"
del "%%~dpni_r.tif"
del "%%~dpni_b.tif"
del "%%~dpni_u.tif"
del "%%~dpni_d.tif"
)
GOTO DONE
:ERROR
echo ERROR - drop spherical panorama images to create cubical multires panos...
:DONE
pause
|
then it is possible to drop more than one image at once

(in the next release these changes will be also included)
best regards,
Klaus