第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機(jī)立即綁定

基于elasticsearch的圖片相似搜索

標(biāo)簽:
JavaScript

在git上发现有类似的项目
https://github.com/ascribe/image-match/blob/master/docs/source/start.rst
帮助文档地址是
https://image-match.readthedocs.io/en/latest/start.html。

需要先建立索引

import osimport hashlibfrom elasticsearch import Elasticsearch, ConnectionError, RequestError, NotFoundErrorfrom image_match.elasticsearch_driver import SignatureESDOC_TYPE = 'image'MAPPINGS = {  "mappings": {    DOC_TYPE: {      "dynamic": True,      "properties": {        "metadata": {            "type": "object",            "dynamic": True,            "properties": {                "tenant_id": { "type": "string", "index" : "not_analyzed"   }            }        }      }    }  }}def setup_index():    es = Elasticsearch()    try:        es.indices.create(index="images",  body=MAPPINGS)    except RequestError as e:        if e.error == u'index_already_exists_exception':            es.indices.delete(index_name)        else:            raisesetup_index()

然后dump数据

from elasticsearch import Elasticsearchfrom image_match.elasticsearch_driver import SignatureESes = Elasticsearch()ses = SignatureES(es)ses.add_image('https://upload.wikimedia.org/wikipedia/commons/thumb/e/ec/Mona_Lisa,_by_Leonardo_da_Vinci,_from_C2RMF_retouched.jpg/687px-Mona_Lisa,_by_Leonardo_da_Vinci,_from_C2RMF_retouched.jpg')ses.add_image('https://pixabay.com/static/uploads/photo/2012/11/28/08/56/mona-lisa-67506_960_720.jpg')ses.add_image('https://upload.wikimedia.org/wikipedia/commons/e/e0/Caravaggio_-_Cena_in_Emmaus.jpg')ses.add_image('https://c2.staticflickr.com/8/7158/6814444991_08d82de57e_z.jpg')

索引结果如下


然后进行检索

ses.search_image('https://pixabay.com/static/uploads/photo/2012/11/28/08/56/mona-lisa-67506_960_720.jpg')

返回结果如下, dist越小越好。

[ {'dist': 0.0,  'id': u'AVM37oZq0osmmAxpPvx7',  'metadata': None,  'path': u'https://pixabay.com/static/uploads/photo/2012/11/28/08/56/mona-lisa-67506_960_720.jpg',  'score': 7.937254}, {'dist': 0.22095170140933634,  'id': u'AVM37nMg0osmmAxpPvx6',  'metadata': None,  'path': u'https://upload.wikimedia.org/wikipedia/commons/thumb/e/ec/Mona_Lisa,_by_Leonardo_da_Vinci,_from_C2RMF_retouched.jpg/687px-Mona_Lisa,_by_Leonardo_da_Vinci,_from_C2RMF_retouched.jpg',  'score': 0.28797293}, {'dist': 0.42557196987336648,  'id': u'AVM37p530osmmAxpPvx9',  'metadata': None,  'path': u'https://c2.staticflickr.com/8/7158/6814444991_08d82de57e_z.jpg',  'score': 0.0499953}]

點(diǎn)擊查看更多內(nèi)容
TA 點(diǎn)贊

若覺得本文不錯,就分享一下吧!

評論

作者其他優(yōu)質(zhì)文章

正在加載中
  • 推薦
  • 評論
  • 收藏
  • 共同學(xué)習(xí),寫下你的評論
感謝您的支持,我會繼續(xù)努力的~
掃碼打賞,你說多少就多少
贊賞金額會直接到老師賬戶
支付方式
打開微信掃一掃,即可進(jìn)行掃碼打賞哦
今天注冊有機(jī)會得

100積分直接送

付費(fèi)專欄免費(fèi)學(xué)

大額優(yōu)惠券免費(fèi)領(lǐng)

立即參與 放棄機(jī)會
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號

舉報

0/150
提交
取消