Image Processing Tool
-
I've recently scanned some old family picture albums into one image per album page. Is there any (free) tool that can separate each image into the number of pictures per page automatically? I'm looking for some smart software that can detect the picture frames and separate them for me. Thanks!
-
I've recently scanned some old family picture albums into one image per album page. Is there any (free) tool that can separate each image into the number of pictures per page automatically? I'm looking for some smart software that can detect the picture frames and separate them for me. Thanks!
Don't search for this tool, Save paper! Anyways, if you already have the images, what prevents you from looping the pages for each image? Every language would have this feature,
foreach (var image in images) {
// process the image
}Each image into number of pictures?
The shit I complain about It's like there ain't a cloud in the sky and it's raining out - Eminem ~! Firewall !~
-
The software that came with my Canon printer / scanner can do that and auto-rotate the pictures as well during scanning. It's called Canon My Image Garden. It's available for download if you Google. But I don't know if it will work with other scanners or it it can do it with images that have already been scanned in. Edit: maybe try this[^]
-
The software that came with my Canon printer / scanner can do that and auto-rotate the pictures as well during scanning. It's called Canon My Image Garden. It's available for download if you Google. But I don't know if it will work with other scanners or it it can do it with images that have already been scanned in. Edit: maybe try this[^]
-
Don't search for this tool, Save paper! Anyways, if you already have the images, what prevents you from looping the pages for each image? Every language would have this feature,
foreach (var image in images) {
// process the image
}Each image into number of pictures?
The shit I complain about It's like there ain't a cloud in the sky and it's raining out - Eminem ~! Firewall !~
I think you have seriously misunderstood something! :doh:
Anything that is unrelated to elephants is irrelephant
Anonymous
-----
The problem with quotes on the internet is that you can never tell if they're genuine
Winston Churchill, 1944
-----
I'd just like a chance to prove that money can't make me happy.
Me, all the time -
I've recently scanned some old family picture albums into one image per album page. Is there any (free) tool that can separate each image into the number of pictures per page automatically? I'm looking for some smart software that can detect the picture frames and separate them for me. Thanks!
I used ImageMagic to divide 3x2 scans of cards into individual cards. Something like
convert LargeImage.bmp -resize width x height smallimage%03d.bmp
. I can't recall the exact command, but ImageMagic really is magic. Did it perfectly once I got the command spot on.No object is so beautiful that, under certain conditions, it will not look ugly. - Oscar Wilde
-
I used ImageMagic to divide 3x2 scans of cards into individual cards. Something like
convert LargeImage.bmp -resize width x height smallimage%03d.bmp
. I can't recall the exact command, but ImageMagic really is magic. Did it perfectly once I got the command spot on.No object is so beautiful that, under certain conditions, it will not look ugly. - Oscar Wilde
I've used ImageMagick before and it works for fixed locations. Unfortunately, the pictures in the albums weren't the same size or placed in the same place. AutoSplitter on the other hand allows you to measure the picture diagonally and that's that. I finished splitting almost 90 unique images into 300 in an hour.
-
Don't search for this tool, Save paper! Anyways, if you already have the images, what prevents you from looping the pages for each image? Every language would have this feature,
foreach (var image in images) {
// process the image
}Each image into number of pictures?
The shit I complain about It's like there ain't a cloud in the sky and it's raining out - Eminem ~! Firewall !~
-
Don't search for this tool, Save paper! Anyways, if you already have the images, what prevents you from looping the pages for each image? Every language would have this feature,
foreach (var image in images) {
// process the image
}Each image into number of pictures?
The shit I complain about It's like there ain't a cloud in the sky and it's raining out - Eminem ~! Firewall !~