Questions tagged [libpuzzle]

The Puzzle library is designed to quickly find visually similar images (gif, png, jpg), even if they have been resized, recompressed, recolored or slightly modified.

The Puzzle library is designed to quickly find visually similar images (gif, png, jpg), even if they have been resized, recompressed, recolored or slightly modified.

https://github.com/jedisct1/libpuzzle

3 questions
0
votes
0 answers

Installing custom php extension does not show in phpinfo() even though ini file calls it

I used to have this extension running before my reinstall of php. phpinfo() shows my ini file is located at /etc/php/7.4/apache2/php.ini In the php.ini file I have: extension=/usr/lib/php/20190902/libpuzzle.so The error.log shows: PHP Warning: …
Brént Russęll
  • 756
  • 6
  • 17
0
votes
1 answer

How do I check if pieces are put together in Android puzzle game?

I have 4 pieces initially. A child must put them in this correct order: heart, yellow star, green star, grey star. I suspect i can create some kind of container for every piece where they are drag-and-dropped: I implemented drag-drop, but how to…
ERJAN
  • 23,696
  • 23
  • 72
  • 146
0
votes
0 answers

Cilk Program has different speeds

I have a cilk program that is using the libpuzzle library. My task is to parallelize the sorting of images based on their resemblance and I am using a parallel cilk for loop to compare all the images with a reference image. What I noticed was that…