Search found 8 matches
- 2015-06-12T06:19:07-07:00
- Forum: Users
- Topic: Help with batch appending three series of images
- Replies: 13
- Views: 3748
Re: Help with batch appending three series of images
That was the trick! I read somewhere that escaping wasn't necessary in the Windows CMD. Windows DOS scripts do not require parenthesis to be escaped with backslash. See Windows DOS Scripts for this and other differences to linux scripting However, after reading ImageMagick v6 Examples -- Usage under ...
- 2015-06-12T05:00:00-07:00
- Forum: Users
- Topic: Help with batch appending three series of images
- Replies: 13
- Views: 3748
Re: Help with batch appending three series of images
Thanks very much. I'm a lot further now. When looking more focused at my code I spotted a severe problem as I named all of my variables in the 'convert' line $$ G in stead of %% G. Also, my parentheses were not equal indeed. I removed all of whom I thought are unnecessary. My current code: FOR /L ...
- 2015-06-11T07:17:01-07:00
- Forum: Users
- Topic: Help with batch appending three series of images
- Replies: 13
- Views: 3748
Re: Help with batch appending three series of images
Thanks, for some reason I did not yet think of that but it was helpful in multiple aspects. I'm using G as the variable now in stead of i. I don't suspect it to make a lot of difference. When I run my current code, unfortunately I'm getting an error mentioning that the syntax of the task is not ...
- 2015-06-11T05:57:46-07:00
- Forum: Users
- Topic: Help with batch appending three series of images
- Replies: 13
- Views: 3748
Re: Help with batch appending three series of images
Hi guys, Anyone have an suggestion for my earlier post? Is there despite 142 views nobody who knows anything about FOR loops in batch files in Windows? Thanks for your response. So I have to ditch the [1-54] notation? Could anyone give an example what the FOR loop should loop like? I'm confused by ...
- 2015-06-09T01:23:09-07:00
- Forum: Users
- Topic: Help with batch appending three series of images
- Replies: 13
- Views: 3748
Re: Help with batch appending three series of images
Thanks for your response. So I have to ditch the [1-54] notation? Could anyone give an example what the FOR loop should loop like? I'm confused by the for loop syntax in the CMD. It's probably something like (part pseudo code): ----- for <wildcard i> do convert ( <wildcard i> _VisNir.png +append ...
- 2015-06-09T00:10:16-07:00
- Forum: Users
- Topic: Help with batch appending three series of images
- Replies: 13
- Views: 3748
Re: Help with batch appending three series of images
That's indeed the way I envisioned for the script to work. I looked at the windows page but I don't understand the initialization of the FOR loops. I am used to loops such as: for i = 1:54 convert ... end I'm using a batch script. I tried removing the 0's in the file names so that my current code is ...
- 2015-06-08T11:56:39-07:00
- Forum: Users
- Topic: Help with batch appending three series of images
- Replies: 13
- Views: 3748
Re: Help with batch appending three series of images
Thanks for your response. First of all, sorry for not mentioning the IM version and platform. I was planning to do so but forgot it while writing down my problem. I'm using the most current version of IM, ImageMagick-6.9.1-4-Q16-x86-dll.exe. I'm on Windows 7, 32 bit. I read about the % difference ...
- 2015-06-08T09:41:20-07:00
- Forum: Users
- Topic: Help with batch appending three series of images
- Replies: 13
- Views: 3748
Help with batch appending three series of images
Hi all, I recently found out about ImageMagick and was appealed by its possibilities. For my study I'm processing a lot of images that result from several measurements but I'm struggling to organize them in a proper way. I have three images that I was to merge into one image in a 2x2 raster. However ...