Identifying 2 same images using Java

前端 未结 10 2463
别那么骄傲
别那么骄傲 2020-12-28 21:10

I have a problem in my web crawler where I am trying to retrieve images from a particular website. Problem is that often I see images that are exactly same but different in

10条回答
  •  情话喂你
    2020-12-28 21:41

    I would think you don't need an image library to do this - simply fetching the URL content and comparing the two streams as byte arrays should do it.

    Unless of course you are interested in identifying similar images as well.

提交回复
热议问题