Search found 7 matches

by mfranquelo
2017-08-06T08:11:30-07:00
Forum: Magick.NET
Topic: C# Imagemagick subtraction syntax
Replies: 7
Views: 15573

Re: C# Imagemagick subtraction syntax

according to the command line it seems i need to (compare them) raw.Compare(blur,ErrorMetric.Absolute, diffImage); and then compose them?
by mfranquelo
2017-08-06T06:05:46-07:00
Forum: Magick.NET
Topic: C# Imagemagick subtraction syntax
Replies: 7
Views: 15573

Re: C# Imagemagick subtraction syntax

Im using Magick.net so i don't really know which is this particular command on the command line. I just want to output the difference between two images :? it could be related to this i guess: http://www.multipole.org/discourse-server/viewtopic.php?t=16279 and this: https://www.imagemagick.org/Usage...
by mfranquelo
2017-08-06T05:42:48-07:00
Forum: Magick.NET
Topic: C# Imagemagick subtraction syntax
Replies: 7
Views: 15573

Re: C# Imagemagick subtraction syntax

The question is: How does magick know which one is "second" image?

The structure is like this first image (which is the one i am declaring) and [v] for second image, that i don't know where to declare it. :(
by mfranquelo
2017-08-06T05:13:24-07:00
Forum: Magick.NET
Topic: C# Imagemagick subtraction syntax
Replies: 7
Views: 15573

Re: C# Imagemagick subtraction syntax

I am trying to convert those commands to Magick.net C# syntax, yes.

For subtraction i mean that i want to output the mathematical difference between two inputs.
It works with image.Fx(u-0.5) for example. But i can't seem to figure out the structure for two images.
by mfranquelo
2017-08-06T04:29:11-07:00
Forum: Magick.NET
Topic: Beginner question
Replies: 2
Views: 10355

Re: Beginner question

Thank you dlemstra,

It worked.
by mfranquelo
2017-08-06T04:18:58-07:00
Forum: Magick.NET
Topic: C# Imagemagick subtraction syntax
Replies: 7
Views: 15573

C# Imagemagick subtraction syntax

Dear all, Could anyone point me how to do a subtraction between two images? I can't seem to find good documentation in C# (or similar) for this. Is it using the method FX or composite? This is my code: - Simple gaussian blur and difference between the original image and the gaussian blurred image. c...
by mfranquelo
2017-08-05T07:18:03-07:00
Forum: Magick.NET
Topic: Beginner question
Replies: 2
Views: 10355

Beginner question

Dear all, I've just started playing with C# and Magick.Net but i am getting the following error when trying to read parameters of a file. Magick.Net was installed using NuGet on Visual studio 2013. Initialized. This is my code: using (MagickImage image = new MagickImage(@"D:\test01.jpg")) ...