How to know if an images is similar to another (slightly different angle but same point of view)

前端 未结 2 584
夕颜
夕颜 2021-02-04 17:50

I\'ve checked methods like Phasher to get similar images. Basically to resize images to 8x8, grayscale, get average pixel and create a binary hash of each pixel comparing if it\

2条回答
  •  再見小時候
    2021-02-04 18:17

    You can try an upper bound if the hashes doesn't match compare how many pixels match from the 8x8 grid. Maybe you can try to match the colors like in photo mosaic:Photo Mosaic Algorithm. How to create a mosaic photo given the basic image and a list of tiles?.

提交回复
热议问题