Search found 6 matches

by bekalariak
2018-06-06T03:42:39-07:00
Forum: PerlMagick
Topic: Resize and image!
Replies: 4
Views: 51469

Re: Resize and image!

Yes, that was exactly that I wanted! The simplest idea are the easiest. Only a note, for future people, when we Crop the image the part of the botton is the croped. So, I use "gravity=>'Center'" to crop equaly. ------>$image->Resize(geometry=>'1280x720^'); ------>$image->Crop(geometry=>'12...
by bekalariak
2018-06-04T07:02:31-07:00
Forum: PerlMagick
Topic: Resize and image!
Replies: 4
Views: 51469

Re: Resize and image!

Sorry for my explanation. Yes, I want to stretch the image to be exactly 1280x720. But when I do that, the image looks extended. So to avoid that i want to "cut" the image above/below or left/right.
by bekalariak
2018-06-04T06:11:18-07:00
Forum: PerlMagick
Topic: Resize and image!
Replies: 4
Views: 51469

Resize and image!

Hi everyone!! I am trying to resize (in a perl script) an image that has these dimensions 4272x2848 to other one that has 1280x720. Of course, while the aspect ratios are different, the image has to be 1) cuted above/right and below/left or 2) expanded. Well, I cant find the solution to get the firs...
by bekalariak
2018-05-03T06:27:56-07:00
Forum: Users
Topic: Detect images with drops with ImageMagick
Replies: 5
Views: 5228

Re: Detect images with drops with ImageMagick

To summarize, thank you very much for your answers and advice. The way you explained probably is much easier than the ones that I did. This id what I did: 1--> convert pic.jpg -define convolve:scale='!' \ -morphology Convolve Laplacian:0 \ -auto-level pic_laplacian_positives.png 2--> convert pic_lap...
by bekalariak
2018-05-02T09:03:09-07:00
Forum: Users
Topic: Detect images with drops with ImageMagick
Replies: 5
Views: 5228

Re: Detect images with drops with ImageMagick

Yes, of course --> https://drive.google.com/drive/folders/ ... sp=sharing

Three of them are examples of pics that should not be included in the video and other two yes (first and last).
by bekalariak
2018-05-02T08:02:41-07:00
Forum: Users
Topic: Detect images with drops with ImageMagick
Replies: 5
Views: 5228

Detect images with drops with ImageMagick

Hi, I have a big amount of pictures which I will use to do some timelapses. Well, some of them have drops of rain and I would like to apply a filter (yes, cover the camera would have been a good idea..). I think one of the best options is to use ImageMagick, but i do not know what way to choose. To ...