Search found 2 matches

by Kjartan
2011-10-13T05:56:27-07:00
Forum: Windows COM+ & Visual Basic
Topic: morphology problem, syntax?
Replies: 1
Views: 15057

morphology problem, syntax?

dim Img, strResult, str
Set Img = Server.CreateObject("ImageMagickObject.MagickImage.1")
strResult = Img.Convert(redRC, _
"-threshold=99%",_
"+depth",_
"-morphology","Distance Euclidean:1,67000",_
"-morphology","Close Disk",_
"-morphology","Open Disk",_
"-auto-level",_
"+matte ...
by Kjartan
2011-09-12T05:24:18-07:00
Forum: Users
Topic: Selection through fuzz? Red-eye removal.
Replies: 2
Views: 6664

Selection through fuzz? Red-eye removal.

Hello!

I have stumbled upon a particular problem which I seem to be unable to solve. My goal is to remove red-eyes through a web interface.

convert.exe before.jpg -region "230x140+60+130" ^ // input from user
-fill black ^
-fuzz 25%% ^
-opaque rgb("192","00","10") ^

after.jpg
My current ...