Search found 25563 matches

by fmw42
2010-03-17T18:15:04-07:00
Forum: Users
Topic: Drawing performance
Replies: 27
Views: 46174

Re: Drawing performance

I've tried a pre-rendered board image (loaded from a PNG file), but that's even slower than just drawing the rectangles. Since you presumably have only a binary or just a few colors in your board, why not use a precomputed board stored as a gif with just a few colors in its palette. That would have...
by fmw42
2010-03-17T18:09:34-07:00
Forum: IMagick
Topic: PDF image colorspace [RESOLVED]
Replies: 18
Views: 37910

Re: PDF image colorspace

did you see viewtopic.php?f=18&t=15708 just two topics down the list? apparently it is not yet implemented in Imagick, but they are working on it.
by fmw42
2010-03-17T10:28:24-07:00
Forum: Users
Topic: Horizontal and Vertical Line Removal
Replies: 13
Views: 33770

Re: Horizontal and Vertical Line Removal

Two reasons my technique above with -convolve does not work is 1) your lines are not perfectly vertical and MORE IMPORTANT 2) your lines are thicker than 1 pixel wide, which was the assumption of the convolution kernel provided above for my example. Unfortunately, I am not sure what you can do to re...
by fmw42
2010-03-17T09:37:17-07:00
Forum: Users
Topic: Index problem with identify in DOS FOR loop
Replies: 17
Views: 33638

Re: Index problem with identify in DOS FOR loop

I pointed this topic to Wolgang Hugemann, who wrote the Usage Under Windows page. He asked me to post the following as he is out of town. Take a look at his Usage Under Windows page regarding "enabling delayed expansion" As I am not a Windows user, I don't understand much of this, but I th...
by fmw42
2010-03-17T09:26:45-07:00
Forum: Users
Topic: Speed up -unique-colors on a large image
Replies: 3
Views: 8460

Re: Speed up -unique-colors on a large image

If your images have only about 10 TRULY unique colors (and not just visually appearing that way), then you could try simply reducing the size of your input images, say by 10 using a non-interpolating reduction such as -sample and then get the unique colors. convert image.tif -sample 10% -unique-colo...
by fmw42
2010-03-17T09:22:04-07:00
Forum: Users
Topic: Horizontal and Vertical Line Removal
Replies: 13
Views: 33770

Re: Horizontal and Vertical Line Removal

-convolve was broken for a few releases between about 6.5.9.5 and 6.6.0.3. I believe it was fixed in 6.6.0.4 and definitely by 6.6.0.5
by fmw42
2010-03-17T09:16:00-07:00
Forum: Kudos and Rants
Topic: Installing ImageMagick/ Mogrify ... Whisky Tango Foxtrot
Replies: 10
Views: 59055

Re: Installing ImageMagick/ Mogrify ... Whisky Tango Foxtrot

Perhaps that is a lightroom issue. You don't need lightroom to run mogrify. You can open a terminal window or DOS window and run it in command line mode to process every image in some folder. It is not limited to 9 images. See syntax at http://www.imagemagick.org/Usage/basics/#mogrify I understand y...
by fmw42
2010-03-16T17:57:32-07:00
Forum: Users
Topic: Drawing performance
Replies: 27
Views: 46174

Re: Drawing performance

Is "mpr" a pseudo-format that keeps the image data in memory? I've been looking for something like that but couldn't find it in the documentation. I've tried a pre-rendered board image (loaded from a PNG file), but that's even slower than just drawing the rectangles. I can't use your meth...
by fmw42
2010-03-16T15:50:26-07:00
Forum: Users
Topic: convex hull of connected components
Replies: 2
Views: 6251

Re: convex hull of connected components

nothing explicitly exists today to my knowledge. however Anthony is still working on his morphology functionality and perhaps he might look into adding the convex hull if practical.
by fmw42
2010-03-16T15:38:25-07:00
Forum: Users
Topic: Drawing performance
Replies: 27
Views: 46174

Re: Drawing performance

draw the board by tiling a 2x2 pattern.

convert \( -size 15x15 xc:black xc:white -append \) \( +clone -flip \) +append \
-write mpr:checks +delete -size 240x240 tile:mpr:checks board.png


You can play with the colors and size of the squares and the size of the result to achieve your board design.
by fmw42
2010-03-16T09:21:18-07:00
Forum: IMagick
Topic: Adjusting color with raito and offset [Optimization Needed]
Replies: 3
Views: 9767

Re: Adjusting image color with raito and offset

Don't know Imagick, but in command line, see the following functions:

-cdl --- http://www.imagemagick.org/script/comma ... ns.php#cdl

-function polynomial --- http://www.imagemagick.org/script/comma ... p#function
by fmw42
2010-03-15T19:41:27-07:00
Forum: Developers
Topic: Hiring you as an Expert
Replies: 5
Views: 10536

Re: Hiring you as an Expert

Worldwide-USA wrote:Fred
10am PDT / noon CDT will be fine.
GoToMeeting is a service I and others use to bring you in remotely to view my screen with me.
It is really simple.
We can use reqular telephone for audio.
I will call you & email you at that time.
What is your email address?
Kevin
fmw at alink dot net
by fmw42
2010-03-15T19:12:02-07:00
Forum: Developers
Topic: Hiring you as an Expert
Replies: 5
Views: 10536

Re: Hiring you as an Expert

Sorry, I don't have GoToMeeting.

I do not have Skype.

I am on the West Coast in Sunnyvale, CA

A 10 AM PDT would be better for me via conference telephone or just by email.

Fred
by fmw42
2010-03-15T17:33:33-07:00
Forum: Users
Topic: Index problem with identify in DOS FOR loop
Replies: 17
Views: 33638

Re: Index problem with identify in DOS FOR loop

see http://www.imagemagick.org/Usage/windows/#calc_set

perhaps that will give you some clues how to do it
by fmw42
2010-03-15T17:17:44-07:00
Forum: Users
Topic: Index problem with identify in DOS FOR loop
Replies: 17
Views: 33638

Re: Index problem with identify in DOS FOR loop

Sorry, I am using a Mac. Don't know much about Windows/DOS