Search found 5 matches

by monicam
2018-04-08T22:37:08-07:00
Forum: Users
Topic: How to create a loop to batch combine 2 images into 1
Replies: 9
Views: 6644

Re: How to create a loop to batch combine 2 images into 1

Hi @snibgo,

The terminal gives out the following:

“0 ??
[img1.jpg] [img15.jpg]
“2 ??
[img2.jpg] [img21.jpg]
“4 ??
[img24.jpg] [img36.jpg]
“6 ??
[img4.jpg] []

I actually tried renaming the photos and it merges together the same photos regardless of what they're named. And it skips over everything ...
by monicam
2018-04-08T19:32:42-07:00
Forum: Users
Topic: How to create a loop to batch combine 2 images into 1
Replies: 9
Views: 6644

Re: How to create a loop to batch combine 2 images into 1

Hi @snibgo,

When I replace the echo command with the convert command or when I run both, the result is still that only 8 images get merged to 4 photos. The rest of the photos get ignored.

The commands I tried are:
arr=(`ls *.jpg`)
num=${#arr[*]}
for ((i=0; i<num; i=i+2)); do
echo “$i $j”
j=$((i ...
by monicam
2018-04-08T17:48:49-07:00
Forum: Users
Topic: How to create a loop to batch combine 2 images into 1
Replies: 9
Views: 6644

Re: How to create a loop to batch combine 2 images into 1

Hi @fmw42, thanks for your reply. Actually I’m wondering if there is a way to loop over maybe a hundred or more photos. Would you know how to do that? Thanks a lot
by monicam
2018-04-08T08:38:32-07:00
Forum: Users
Topic: How to create a loop to batch combine 2 images into 1
Replies: 9
Views: 6644

Re: How to create a loop to batch combine 2 images into 1

Hi @snibgo, I’m not sure why it only works for the first 6-10 photos. Would you know other ways to loop?
by monicam
2018-04-07T22:21:39-07:00
Forum: Users
Topic: How to create a loop to batch combine 2 images into 1
Replies: 9
Views: 6644

How to create a loop to batch combine 2 images into 1

Hi,

I'm trying to find a way to batch combine multiple pairs of images into a single image. I have a folder of hundreds of photos -- img01, img02,... -- and I'm trying to merge pairs of these into 1: img01 + img02 --> img01_02
img 519 + img 520 --> img519_520

The images all have the same ...