Search found 5 matches

by egor7
2013-04-08T03:00:46-07:00
Forum: Developers
Topic: How to modify an image by custom image filter?
Replies: 2
Views: 3695

Re: How to modify an image by custom image filter?

I've done it! Many thanks for Image Toolkit - for custom filters!
by egor7
2013-04-05T13:07:07-07:00
Forum: Developers
Topic: How to modify an image by custom image filter?
Replies: 2
Views: 3695

How to modify an image by custom image filter?

I've read an architecture page http://www.imagemagick.org/script/architecture.php and found an example to modify some image properties: (void) SetImageProperty(image,"filter:saturation:skewness",text); But I've failed to modify it pixels and failed to replace image=GetNextImageInList(image...
by egor7
2013-04-01T03:22:47-07:00
Forum: Bugs
Topic: Magick filter kit linking error.
Replies: 1
Views: 1946

Magick filter kit linking error.

In version 6.8.0 Magick Filter Kit seems stop working. Lots of warning for deprecated calls. And a fatal error on build. Build problem related to the inappropriate finding IM filters/coders paths. It is because of 'MagickCore-config --filter-path' stopped working. So how should I get filters dir? Ma...
by egor7
2012-11-16T08:32:29-07:00
Forum: Users
Topic: 16bit grayscale TIFF is too dark
Replies: 19
Views: 31821

Re: 16bit grayscale TIFF is too dark

Code: Select all

convert <img_in> -set colorspace Gray -separate -average <img_out>
gives the best result for me.
by egor7
2012-05-28T22:22:05-07:00
Forum: Users
Topic: visualizing data arrays
Replies: 4
Views: 6940

visualizing data arrays

I have some 2D arrays of type integer and want to visualize it. I dump it to file: fileHandle = fopen( "2dplot.raw", "wb" ); fwrite(myArray, WIDTH*HEIGHT, sizeof(int), fileHandle); The next code displays black-white data only (without bw gradients): display -depth 32 -size ${WIDT...