Search found 3 matches

by nmp
2018-04-23T10:42:09-07:00
Forum: Users
Topic: mogrify -implode: Reversible?
Replies: 6
Views: 4649

Re: mogrify -implode: Reversible?

Creating an identity displacement map is a fantastic idea. I'll give it a shot.

To answer your question as to why I wish to invert implode, I created a deep learning semantic segmentation model using FCN-8s for axial CT adominal images https://github.com/NVIDIA/DIGITS/tree/master/examples/medical ...
by nmp
2018-04-22T16:36:31-07:00
Forum: Users
Topic: mogrify -implode: Reversible?
Replies: 6
Views: 4649

Re: mogrify -implode: Reversible?

Blurriness would be fine as I was more interested in returning the original image's geometry...but that's most likely not possible. Thanks.
by nmp
2018-04-22T14:45:16-07:00
Forum: Users
Topic: mogrify -implode: Reversible?
Replies: 6
Views: 4649

mogrify -implode: Reversible?

Hello,

Is it possible to implode an image then explode it back to the original image? For example:

mogrify -path output_directory1/ -border 20x20 -implode 0.6 -shave 20x20 test.png

cd output_directory

mogrify -path output_directory2/ -border 20x20 -implode -0.6 -shave 20x20 test.png

This naive ...