Search found 61 matches
- 2019-04-15T03:08:18-07:00
- Forum: Users
- Topic: [solved] Reverse polar coordinates?
- Replies: 8
- Views: 10212
Re: [solved] Reverse polar coordinates?
Just wanted to say thanks again for the help! I wrote a node module (for a larger OSS project I'm working on) that uses the code Fred posted in this thread. Here's the repo: https://github.com/mhulse/fisheye The above module is a work in progress for my own personal use (so, not publishing via npm ...
- 2019-04-15T02:50:57-07:00
- Forum: Users
- Topic: Rule of thumb: When to use +repage?
- Replies: 7
- Views: 16667
Re: Rule of thumb: When to use +repage?
So, yes, all three occurrences of "+repage" in that command are overkill. Awesome! Thank you so much for the help snibgo. I removed repage from my script. Currently, I'm only rotating between 0 or 180, and I think I read that imagemagick will ignore 0 for rotate as it's not doing anything (my ...
- 2019-04-10T21:35:18-07:00
- Forum: Users
- Topic: Rule of thumb: When to use +repage?
- Replies: 7
- Views: 16667
Re: Rule of thumb: When to use +repage?
Thank you so much for the additional tips Fred and GeeMack! This information is super helpful!
You guys rock!
You guys rock!
- 2019-04-10T20:28:18-07:00
- Forum: Users
- Topic: Rule of thumb: When to use +repage?
- Replies: 7
- Views: 16667
Re: Rule of thumb: When to use +repage?
Awesome! Thank you Fred! That's very helpful.
Also, I'm reading up on "virtual canvas" now:
https://www.imagemagick.org/Usage/basic ... ual_canvas
Much appreciated!
Also, I'm reading up on "virtual canvas" now:
https://www.imagemagick.org/Usage/basic ... ual_canvas
Much appreciated!
- 2019-04-10T18:28:39-07:00
- Forum: Users
- Topic: Rule of thumb: When to use +repage?
- Replies: 7
- Views: 16667
Rule of thumb: When to use +repage?
Hello, The docs I could find say: Use +repage to completely remove/reset the virtual canvas meta-data from the images. Is there a rule of thumb for when to +repage? For example, this command: magick \ convert \ pano.jpg \ -virtual-pixel mirror \ -background black \ -roll +50%+0% \ +repage \ -rotate ...
- 2019-04-09T09:33:31-07:00
- Forum: Users
- Topic: [solved] Reverse polar coordinates?
- Replies: 8
- Views: 10212
Re: [solved] Reverse polar coordinates?
SO COOL! This is amazing. I am seriously blown away. Until now, I thought only a Photoshop plugin could get this kind of quality result. Thank you so much for your help Fred, I can't thank you enough for showing me all of these tricks! This is just so COOL!!!!
- 2019-04-08T23:45:38-07:00
- Forum: Users
- Topic: [solved] Reverse polar coordinates?
- Replies: 8
- Views: 10212
Re: Reverse polar coordinates?
Try -virtual-pixel mirror or random. Mind ..... BLOWN! A M A Z I N G! Also, this: -distort polar 0 Does an amazing job! I love how it doesn't "pinch" the center! I'm going to try and apply that to my tiny planet effect as I love the non-pinched look so much more than the pinched. Thank you so much ...
- 2019-04-08T23:17:53-07:00
- Forum: Users
- Topic: [solved] Reverse polar coordinates?
- Replies: 8
- Views: 10212
Re: Reverse polar coordinates?
WOW WOW and WOW!!!!!!!!
That is AMAZING. You guys are genius!
Thank you so much for the help, code examples and guidance! I owe you both several Oregon micro brews.
Thank you GeeMack and Fred!!!!
That is AMAZING. You guys are genius!
Thank you so much for the help, code examples and guidance! I owe you both several Oregon micro brews.
Thank you GeeMack and Fred!!!!
- 2019-04-08T22:17:45-07:00
- Forum: Users
- Topic: [solved] Reverse polar coordinates?
- Replies: 8
- Views: 10212
[solved] Reverse polar coordinates?
Hello, I am using this to make a "tiny planet" or "fisheye" effect (source is equirectangular image): magick \ convert \ ${args.input} \ -distort Arc 360 \ ${args.output} Just curious if anyone knows if there is a straight forward way of flipping that? So the sky is on the inside and the land on the ...
- 2019-02-19T22:34:44-07:00
- Forum: Users
- Topic: Montage and the crop the output in one command?
- Replies: 7
- Views: 6753
Re: Montage and the crop the output in one command?
Thanks again for the help snibgo and Fred, it's much appreciated. Here's what I'm using to combine and crop: magick \ montage \ +frame \ +shadow \ -tile 5x3 \ -geometry 512x512+0+0 \ "$currentDir/tile_*.jpg" \ +depth \ miff:- \ | \ magick \ - \ -quality 100 \ -crop 2508x1254+0+0 \ "$currentDir.jpg ...
- 2019-02-18T12:20:02-07:00
- Forum: Users
- Topic: Montage and the crop the output in one command?
- Replies: 7
- Views: 6753
Re: Montage and the crop the output in one command?
see https://imagemagick.org/script/porting.php#cli Note for other tools such as montage, mogrify, identify, you do need to preface those with magick. Just not convert. Thank you so much for the help! I love ImageMagick. Not only is the tool itself amazing, but people like you and snibgo make it so ...
- 2019-02-18T10:53:30-07:00
- Forum: Users
- Topic: Montage and the crop the output in one command?
- Replies: 7
- Views: 6753
Re: Montage and the crop the output in one command?
Thanks Fred and snibgo!!!! I greatly appreciate the assistance!
It's been about a year since I last used IM on the regular... I didn't realize there was a new command name! That's cool! I need to read up on the changes since I last used IM.
Thanks again!!!!
It's been about a year since I last used IM on the regular... I didn't realize there was a new command name! That's cool! I need to read up on the changes since I last used IM.
Thanks again!!!!
- 2019-02-18T01:24:29-07:00
- Forum: Users
- Topic: Montage and the crop the output in one command?
- Replies: 7
- Views: 6753
Montage and the crop the output in one command?
Hello, I have a set of tiles that I am using montage to create an equirectangular image using IM/montage/bash. The resulting image output of the montage command needs to be cropped. I've tried variations of: montage \ +frame \ +shadow \ -quality 100 \ -tile 5x3 \ -geometry 512x512+0+0 \ -crop ...
- 2017-09-03T21:10:08-07:00
- Forum: Users
- Topic: Equirectangluar to Little/Tiny Planet/Sky photos?
- Replies: 8
- Views: 9706
Re: Equirectangluar to Little/Tiny Planet/Sky photos?
I have added a new script, tiny planet, that transforms the spherical panorama to a linear fisheye image. This is much faster than my recent script, pano2fisheye. The new script also allows one to create a spinning planet animation Wow, thank so much! I can't wait to try it out!!!! Sorry for my ...
- 2017-08-05T12:45:50-07:00
- Forum: Users
- Topic: Equirectangluar to Little/Tiny Planet/Sky photos?
- Replies: 8
- Views: 9706
Re: Equirectangluar to Little/Tiny Planet/Sky photos?
I have some bash unix shell scripts that convert fisheye views (fisheye, defisheye, fisheye2pano, fisheye2rect), but they are mostly going the other way, from vertically fisheye to horizontal views. See my scripts at the link below. However, they are slow in imagemagick due to having to use a very ...