How to apply a grey into an image?

Questions and postings pertaining to the development of ImageMagick, feature enhancements, and ImageMagick internals. ImageMagick source code and algorithms are discussed here. Usage questions which are too arcane for the normal user list should also be posted here.
Post Reply
2049651
Posts: 29
Joined: 2015-10-20T07:29:42-07:00
Authentication code: 1151

How to apply a grey into an image?

Post by 2049651 »

Hi.
I'm working on vc++. I'd like to apply scale and grey.
How do scale and grey apply to image?
Also if there is existing, would you please let me know some reference documents or site on regarding above it?

I can't find regarding scale or grey or ..in Magick++_tutorial.pdf
Also I can't find any description of what kinds type of noise are existed in Image manipulation mthods.
How do I find it?
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: How to apply a grey into an image?

Post by fmw42 »

I do not understand what you want. Are you asking about the equivalent of -scale? I do not know what grey means. Are you asking about -colorspace gray?

Please be more specific about your requests. If this is about Magick++, then you should post to that forum.

For noise, type in a terminal

convert -list noise

That will list the noise types. See +noise in the documentation at http://www.imagemagick.org/script/comma ... .php#noise. I do not use Magick++, so cannot tell you what is implemented or not there.

That is why you should post there, so the experts on Magick++ can answer this better than I.

Please always post your IM version and platform (though I suspect it is Windows). See viewtopic.php?f=1&t=9620
2049651
Posts: 29
Joined: 2015-10-20T07:29:42-07:00
Authentication code: 1151

Re: How to apply a grey into an image?

Post by 2049651 »

fmw42 wrote:I do not understand what you want. Are you asking about the equivalent of -scale? I do not know what grey means. Are you asking about -colorspace gray?

Please be more specific about your requests. If this is about Magick++, then you should post to that forum.

For noise, type in a terminal

convert -list noise

That will list the noise types. See +noise in the documentation at http://www.imagemagick.org/script/comma ... .php#noise. I do not use Magick++, so cannot tell you what is implemented or not there.

That is why you should post there, so the experts on Magick++ can answer this better than I.

Please always post your IM version and platform (though I suspect it is Windows). See viewtopic.php?f=1&t=9620
Where do I find ImageMagicK manipulation more detail description in vc++?
I'm working on vc++ with ImageMagicK.

I'd like to apply scale and grey(color space) and something like another manipulation also too, not cli.

But, I can't find any regarding scale or grey or something like any description of manipulation ..in Magick++_tutorial.pdf.

I need any description of manipulation API functions not only above things but also another also too.

How can I find these descriptions?

For example, you can find here some class description http://www.imagemagick.org/Magick++/Documentation.html
if I want to make a gray image from color image, then what should I do ?
There is no explain or example. This is what I meant.
snibgo
Posts: 12159
Joined: 2010-01-23T23:01:33-07:00
Authentication code: 1151
Location: England, UK

Re: How to apply a grey into an image?

Post by snibgo »

See http://www.imagemagick.org/Magick++/Image.html and search for "scale" and "grayscale".
snibgo's IM pages: im.snibgo.com
Post Reply