Search found 29 matches

by 2049651
2016-02-10T00:38:11-07:00
Forum: Developers
Topic: The difference of Gaussian Blur between Gimp's and ImageMagick's.
Replies: 0
Views: 6566

The difference of Gaussian Blur between Gimp's and ImageMagick's.

Hello Everyone, Now, I'm trying to implement to apply Gaussian blur by using ImageMagick. So, I am referring from Gimp Image manipulation tool's Gaussian Blur. But I found that the output of the gimp's and ImageMagick's are so many different. I don't know what the reason of the difference. So I want...
by 2049651
2015-12-06T02:06:29-07:00
Forum: Magick++
Topic: the result image data is always flip verticalized.
Replies: 5
Views: 13851

Re: the result image data is always flip verticalized.

see http://www.imagemagick.org/script/command-line-options.php#auto-orient Thanks, But It seems that it need EXIF information as following instruction. -auto-orient adjusts an image so that its orientation is suitable for viewing (i.e. top-left orientation). This operator reads and resets the EXIF ...
by 2049651
2015-12-05T22:40:36-07:00
Forum: Magick++
Topic: the result image data is always flip verticalized.
Replies: 5
Views: 13851

Re: the result image data is always flip verticalized.

fmw42 wrote:IPL is probably not seeing the rotation information in the meta data. IM has a -auto-orient that you can use to fix the orientation.
What is a -auto-orient?
How can I use to fix the orientation?
by 2049651
2015-12-05T03:50:08-07:00
Forum: Magick++
Topic: the result image data is always flip verticalized.
Replies: 5
Views: 13851

the result image data is always flip verticalized.

Hi I am using Intel IPL library and ImageMagicK Library. When I firstly get image date from ImageMagicK I put the data to IPL. Then IPL can get image data. When I display what I got a image data form IPL. I found the result image data is always flip verticalized. you can see as following the problem...
by 2049651
2015-11-29T05:41:13-07:00
Forum: Developers
Topic: RESOLVED: horrible output of an image resize
Replies: 9
Views: 10978

Re: horrible output of an image resize

How can I close this posting? I found an my Imagemagick result not bad.
by 2049651
2015-11-25T23:44:51-07:00
Forum: Developers
Topic: Class 'Image' not found in vc++.
Replies: 1
Views: 4689

Class 'Image' not found in vc++.

Hi. When I use 'Image m_image' in local function like example, it works good. But, I've got an error when 'Image m_image' move to header .h for using class member. Class 'Image' not found. I can't understand it. Does anyone know how to solve this problem? the code is as following. #pragma once #incl...
by 2049651
2015-11-18T21:17:18-07:00
Forum: Developers
Topic: RESOLVED: horrible output of an image resize
Replies: 9
Views: 10978

Re: horrible output of an image resize

What is the point of your double resize? What do you hope to gain from that or what is its purpose. I would agree with user snibgo. Such drastic size changes will degrade the image no matter what resize filter you use. Also IM 6.2.8 is ancient -- almost 650 versions old. You should try to upgrade i...
by 2049651
2015-11-18T17:26:20-07:00
Forum: Developers
Topic: RESOLVED: horrible output of an image resize
Replies: 9
Views: 10978

RESOLVED: horrible output of an image resize

Hi. Now I've just check about the output of resize function of IM. I have worked on 6.2.8 x86 dll and vc++. Is this the best output of ImageMagicK? If yes, I'm afraid, I have to find another Image processing library. You can also see the output the same as following me. 1.read the pengguin image at ...
by 2049651
2015-11-18T16:56:37-07:00
Forum: Developers
Topic: How can I apply bicubic resize(scale)?
Replies: 3
Views: 10159

Re: How can I apply bicubic resize(scale)?

-filter Catrom -resize is equivalent to bicubic (keys cubic convolution). See http://www.imagemagick.org/Usage/filter/#catrom-c Please always provide your IM version and platform with questions on the forum. Thanks my IM is 6.8.9 win dll x86. Also I have worked on vc++ instead of cli mode. So would...
by 2049651
2015-11-18T08:46:40-07:00
Forum: Developers
Topic: How can I apply bicubic resize(scale)?
Replies: 3
Views: 10159

How can I apply bicubic resize(scale)?

Hi.
I'd like to apply bicubic resize or scale in imageMagick.
But it seems there are not existed in there.
So how do iI apply those image scale manipulation methods in my image by imagemagick?
by 2049651
2015-11-16T00:22:41-07:00
Forum: Developers
Topic: How to apply a grey into an image?
Replies: 3
Views: 6432

Re: How to apply a grey into an image?

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 -...
by 2049651
2015-11-15T23:00:57-07:00
Forum: Developers
Topic: How to apply a grey into an image?
Replies: 3
Views: 6432

How to apply a grey into an image?

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 de...
by 2049651
2015-11-04T03:28:14-07:00
Forum: Developers
Topic: How could I load *pixel to scretchBlt() function?
Replies: 2
Views: 5136

Re: How could I load *pixel to scretchBlt() function?

How do I delete before posting?
by 2049651
2015-11-04T00:49:05-07:00
Forum: Developers
Topic: How could I load *pixel to scretchBlt() function?
Replies: 2
Views: 5136

How could I load *pixel to scretchBlt() function?

I'd like to display to MFC view which pixels of ImageMagicK. I've got a variable like this pixelpacket *pixel from ImageMagicK library. Pixelpacket * pixel = my_image.getpixels(0,0,640,480); I think that I have to use *pixel for displaying at MFC then it will might be work. I'd like to use stretchBl...
by 2049651
2015-10-27T18:56:33-07:00
Forum: Developers
Topic: How can I get NtMagick binary file?
Replies: 4
Views: 5904

Re: How can I get NtMagick binary file?

fmw42 wrote:Search Google. There are plenty of references there.
Would you please let me know where to get the reference? Especially, I want to use ImageMagicK in MFC step by step. Sample example also good. Please