Search found 2 matches

by 100find
2018-02-06T06:54:31-07:00
Forum: PerlMagick
Topic: Expensive resizing to multiple output files
Replies: 3
Views: 53019

Re: Expensive resizing to multiple output files

Several years ago, I met the same problem, and my solution is reading the image file into Mem and use Blob model to load the image from mem several times .
The Clone method is very smart.
by 100find
2018-02-06T02:52:20-07:00
Forum: PerlMagick
Topic: How to get Perceptual Hash in perl code
Replies: 1
Views: 44491

How to get Perceptual Hash in perl code

I leverage the Perceptual Hash to identify similar images, and it works well now. :lol: I got the Perceptual Hash (42 floats) only by command : indentify -verbose -moments , which works very slowly because every images needs to lauch a "identify" process in Mem. Is there any possible way t...