Search found 25563 matches

by fmw42
2019-10-18T14:29:58-07:00
Forum: Users
Topic: deskew
Replies: 6
Views: 78737

Re: deskew

contrast-stretch looks at the histogram. When you crop, the histogram will differ from the original.
by fmw42
2019-10-18T10:00:57-07:00
Forum: Users
Topic: convert jpg to RGB components
Replies: 1
Views: 44256

Re: convert jpg to RGB components

I am not sure what you mean. If you mean to separate the RGB channels from the image, then convert image.jpg -separate channel.png The result will be channel-0.png for red, channel-1.png for green and channel-2.png for blue. Or convert image.jpg -channel r -separate red.png convert image.jpg -channe...
by fmw42
2019-10-17T23:16:47-07:00
Forum: Users
Topic: Missing delegate for "http"
Replies: 3
Views: 48962

Re: Missing delegate for "http"

I think your policy.xml file needs permission to do http: processing. There you will find <!-- <policy domain="delegate" rights="none" pattern="HTTPS" /> --> Uncomment and set the rights to read or read|write What do you get from convert -version on both systems in term...
by fmw42
2019-10-17T18:15:54-07:00
Forum: Users
Topic: Adaptive sharpen slow - any way to speed up?
Replies: 5
Views: 69323

Re: Adaptive sharpen slow - any way to speed up?

You are using Q16 as per your listed information. However, the date of your version is 20170114, which is 2.5 years old (01/14/2017). You should see if there is an upgrade or patch to a current date. How many cores does your computer have. More cores means faster processing, generally. However, on s...
by fmw42
2019-10-17T18:06:36-07:00
Forum: Bugs
Topic: Annotate worked in earlier versions
Replies: 1
Views: 42708

Re: Annotate worked in earlier versions

With regard to image rotation, some images contain EXIF meta data for the image orientation. Use -auto-orient to have them rotated properly. Font names only work if they have been entered into the type.xml file. This can be done using Anthony's script https://www.imagemagick.org/Usage/scripts/imagic...
by fmw42
2019-10-17T13:38:46-07:00
Forum: Users
Topic: Detecting multiple images in one image file
Replies: 19
Views: 116099

Re: Detecting multiple images in one image file

See https://imagemagick.org/script/command-line-processing.php https://imagemagick.org/Usage/reference.html https://imagemagick.org/Usage/ https://imagemagick.org/Usage/basics/ https://imagemagick.org/script/command-line-options.php https://imagemagick.org/script/sitemap.php https://imagemagick.org/...
by fmw42
2019-10-17T10:22:28-07:00
Forum: Users
Topic: Adaptive sharpen slow - any way to speed up?
Replies: 5
Views: 69323

Re: Adaptive sharpen slow - any way to speed up?

What is your Imagemagick version, Q level and platform? How big is your image? Do you have enough RAM for the process?
by fmw42
2019-10-17T10:18:58-07:00
Forum: Users
Topic: Compare images and generate list of images which are not same
Replies: 4
Views: 65318

Re: Compare images and generate list of images which are not same

NCC does image normalization by subtracting the mean and dividing by the standard deviation 1) To insert an image inline in your compare command would need scripting and that is OS dependent. You would have to loop over each image and put the image into the command as a variable. 2) It would not mat...
by fmw42
2019-10-17T09:53:31-07:00
Forum: Users
Topic: text list to individual images
Replies: 5
Views: 67046

Re: text list to individual images

Imagemagick 7.0.4.x is rather old. Perhaps upgrade first and report the full 7.0.x.x. version in the future. Sorry, I am not Windows user and do not know how to script for it. So I cannot help.
by fmw42
2019-10-17T09:41:23-07:00
Forum: Users
Topic: Convert - Mogrify - Append - Same Filename | Windows IM7.0.8
Replies: 8
Views: 62613

Re: Convert - Mogrify - Append - Same Filename | Windows IM7.0.8

These commands work for me. Try them and let us know. Create named images from Imagemagick internal images. magick logo: logo.png magick rose: rose.png magick logo.png -set filename:fn "%t" rose: +append "%[filename:fn]_x1.png" magick rose: logo.png -set filename:fn "%t"...
by fmw42
2019-10-17T09:33:12-07:00
Forum: Users
Topic: text list to individual images
Replies: 5
Views: 67046

Re: text list to individual images

What is your IM version and platform/OS. Your request would need scripting and that would be OS dependent (and not formally what this forum is about).
by fmw42
2019-10-17T09:03:03-07:00
Forum: Magick.NET
Topic: Is it possible to compare 2 images and see the diff?
Replies: 2
Views: 48539

Re: Is it possible to compare 2 images and see the diff?

I do not use Magick.NET. But in looking at your code, you are using -compose difference -composite in command line, but using compare in Magick.NET. They are not equivalent. The output from compare is color coded over one of the two images. The output from composite, you color code the difference. Y...
by fmw42
2019-10-16T19:46:39-07:00
Forum: Users
Topic: How delete rows from pictures?
Replies: 2
Views: 53720

Re: How delete rows from pictures?

I am not sure there is a simple easy answer. The line on the right can be chopped off by using -chop. Or use connected components to located the small lines and numbers and fill those regions with white. The diagonal line is much harder. The only thing that comes to mind is changing the black color ...
by fmw42
2019-10-16T19:41:15-07:00
Forum: Developers
Topic: How delete rows from pictures?
Replies: 1
Views: 43788

Re: How delete rows from pictures?

Please do not post the same question to multiple forums. This question belongs only in the User's forum.