Search found 57 matches

by afre
2018-03-10T16:49:47-07:00
Forum: Bugs
Topic: showkernel=1 not outputting
Replies: 6
Views: 10653

Re: showkernel=1 not outputting

Oops, I should have provided the links. This is where the 3 ways are shown https://www.imagemagick.org/Usage/morphology/#showkernel and where every example uses -define showkernel=1 like on the convolve page. -define morphology:showkernel=1 -define convolve:showkernel=1 -define showkernel=1
by afre
2018-03-10T14:44:55-07:00
Forum: Bugs
Topic: showkernel=1 not outputting
Replies: 6
Views: 10653

Re: showkernel=1 not outputting

Thanks! I was looking at the IM v6 Examples where there are 3 ways to define this but Command-line Options does consistently have the morphology: prefix.
by afre
2018-03-10T01:19:58-07:00
Forum: Bugs
Topic: showkernel=1 not outputting
Replies: 6
Views: 10653

Re: showkernel=1 not outputting

Thanks for confirming this bug. I installed the legacy convert since that is what I am used to. By path, I meant the ones under environment variables.
by afre
2018-03-10T00:33:24-07:00
Forum: Bugs
Topic: showkernel=1 not outputting
Replies: 6
Views: 10653

showkernel=1 not outputting

In my discussion with snibgo on another forum , his example convert xc: -define showkernel=1 ^ -morphology Convolve:0 Gaussian:0x2 null: 2>&1 | findstr Kernel doesn't output anything; i.e., the part up to null: . If I do convert xc: -define showkernel=1 ^ -morphology Convolve:0 Gaussian:0x2 info...
by afre
2015-09-11T08:36:21-07:00
Forum: Users
Topic: Over Under Exposure
Replies: 10
Views: 5854

Re: Over Under Exposure

Thanks for your insight, everyone . I feel loved - haha. [Comments on "-w" and "-H 0"] I copy-pasted that from your site . I often use "-w -H 2". I don't seem to have documented my white balancing method, which involves finding how far each channel is from clipping, and...
by afre
2015-09-10T23:17:16-07:00
Forum: Users
Topic: Over Under Exposure
Replies: 10
Views: 5854

Re: Over Under Exposure

Thanks for your time, snibgo . I might just be terrible at photography: in taking photos (in manual mode) and post-processing in attempt to salvage the raws. It's all so time-consuming and nerve-racking. (Maybe I'm looking at it all wrong.) Anyway, I usually end up with a multitude of photos I think...
by afre
2015-09-10T19:14:55-07:00
Forum: Users
Topic: Over Under Exposure
Replies: 10
Views: 5854

Over Under Exposure

Hello All, I've been wondering if there's a quick (automated) way to determine if a set of images are over or under exposed, and if so by how much. I am looking to get results like this . I'm thinking that this would probably involve (crudely): dcraw -v -H 0 -6 -w -W -g 1 0 -o 0 -T -O out_raw.tiff i...
by afre
2015-04-23T13:47:11-07:00
Forum: Users
Topic: Midtone Mask
Replies: 22
Views: 11336

Re: Midtone Mask

To follow up, I found out how to use X in Windows: start X server then do commands in xterm.
by afre
2015-04-19T19:13:14-07:00
Forum: Users
Topic: Match Then Crop
Replies: 3
Views: 2620

Re: Match Then Crop

fmw42 wrote:But this function is neither scale nor rotationally invariant.
Are your scripts invariant as well? Maybe I'll try something else (and smaller images). Thanks anyway.
by afre
2015-04-19T17:26:09-07:00
Forum: Users
Topic: Match Then Crop
Replies: 3
Views: 2620

Match Then Crop

Hello All, I used a script to detect and crop a set of objects, but it isn't color managed and resizes the input. I would like to take the output, find their location in the originals and then crop to get a more accurate set. Unsure whether that's the best approach but it's a start. I've tried using...
by afre
2015-04-06T11:19:45-07:00
Forum: Users
Topic: Midtone Mask
Replies: 22
Views: 11336

Re: Midtone Mask

Getting coordinate readout ... by clicking on the image after displaying Opening every image and jotting down the coordinates is tedious. Would this be possible (in Unix)? 1) Display image. Ask for user input via mouse. 2) Retrieve coordinates of pixel location/region. 3)Close image display. Contin...
by afre
2015-04-05T19:13:33-07:00
Forum: Users
Topic: Midtone Mask
Replies: 22
Views: 11336

Re: Midtone Mask

Believe imdisplay.exe is in the Windows binary. Last time I checked, it doesn't have all the features of display . Sorry about that—I'm using IM built using snibgo's instructions (cygwin): Version: ImageMagick 6.9.0-9 Q32 x86_64 2015-03-04 http://www.imagemagick.org Copyright: Copyright (C) 1999-201...
by afre
2015-04-05T18:20:37-07:00
Forum: Users
Topic: Midtone Mask
Replies: 22
Views: 11336

Re: Midtone Mask

I would like to quickly display the result; however, when I do > display rose: -OR- convert rose: show: -OR- convert rose: win: display: unable to open X server `' @ error/display.c/DisplayImageCommand/426. -OR- > convert rose: x: convert: unable to open X server `' @ error/display.c/DisplayImages/...
by afre
2015-04-04T11:02:49-07:00
Forum: Users
Topic: Multi-line Syntax (cmd)
Replies: 4
Views: 4057

Re: Multi-line Syntax (cmd)

These days, my usual syntax is something like: for /F "usebackq" %%L in (`convert ^ .... See examples in my scripts, such as http://im.snibgo.com/eqlimit.htm#eqLimit.bat My impression is that it pipes the output from one command to another; in your examples, it's used to ECHO results or s...
by afre
2015-04-03T23:51:04-07:00
Forum: Users
Topic: Multi-line Syntax (cmd)
Replies: 4
Views: 4057

Re: Multi-line Syntax (cmd)

I do try to figure things out but could you elaborate on this?
snibgo wrote:

Code: Select all

for /F "usebackq" %%L in (`convert ^
  infile ^
  {procesing} ^
  outfile`) do {something}