Search found 5 matches
- 2013-04-08T03:00:46-07:00
- Forum: Developers
- Topic: How to modify an image by custom image filter?
- Replies: 2
- Views: 4251
Re: How to modify an image by custom image filter?
I've done it! Many thanks for Image Toolkit - for custom filters!
- 2013-04-05T13:07:07-07:00
- Forum: Developers
- Topic: How to modify an image by custom image filter?
- Replies: 2
- Views: 4251
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) with ...
(void) SetImageProperty(image,"filter:saturation:skewness",text);
But I've failed to modify it pixels and failed to replace image=GetNextImageInList(image) with ...
- 2013-04-01T03:22:47-07:00
- Forum: Bugs
- Topic: Magick filter kit linking error.
- Replies: 1
- Views: 2412
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 ...
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 ...
- 2012-11-16T08:32:29-07:00
- Forum: Users
- Topic: 16bit grayscale TIFF is too dark
- Replies: 19
- Views: 38703
Re: 16bit grayscale TIFF is too dark
Code: Select all
convert <img_in> -set colorspace Gray -separate -average <img_out>
- 2012-05-28T22:22:05-07:00
- Forum: Users
- Topic: visualizing data arrays
- Replies: 4
- Views: 7912
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 ${WIDTH}x${HEIGHT ...
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 ${WIDTH}x${HEIGHT ...