Giter VIP home page Giter VIP logo

Comments (27)

kiwionly avatar kiwionly commented on July 20, 2024 1

hi all, I just port it to 2.2.0.

still cannot use plugin to install, but clone this repository then using maven to build should not be a problem.

https://github.com/kiwionly/elasticsearch-image

from elasticsearch-image.

rskvazh avatar rskvazh commented on July 20, 2024

+1

from elasticsearch-image.

jm2garrido avatar jm2garrido commented on July 20, 2024

+1 too.

I think there is no alternatives to this plugin, it is the only way to use LIRE, isn't it?

from elasticsearch-image.

Wenbo-Li avatar Wenbo-Li commented on July 20, 2024

+1

I think elasticsearch-image is a powerful tool which can be used in the real world. If stopped, it's a pity

from elasticsearch-image.

kwatkins avatar kwatkins commented on July 20, 2024

+1

from elasticsearch-image.

se7en007 avatar se7en007 commented on July 20, 2024

+1

from elasticsearch-image.

gastonwu avatar gastonwu commented on July 20, 2024

+1

from elasticsearch-image.

sourcedexter avatar sourcedexter commented on July 20, 2024

+1

from elasticsearch-image.

fabriziofortino avatar fabriziofortino commented on July 20, 2024

+1

from elasticsearch-image.

fabriziofortino avatar fabriziofortino commented on July 20, 2024

I have found this fork https://github.com/Jmoati/elasticsearch-image that seems to be updated to elasticsearch 2.1

from elasticsearch-image.

fabriziofortino avatar fabriziofortino commented on July 20, 2024

That's great! Thanks @kiwionly

from elasticsearch-image.

nakaji-dayo avatar nakaji-dayo commented on July 20, 2024

great!

from elasticsearch-image.

sourcedexter avatar sourcedexter commented on July 20, 2024

@kiwionly , i built and installed the plugin but elastic search throws a lot of exceptions when started because of the plugin,was anyone able to successfully use it ?

from elasticsearch-image.

kiwionly avatar kiwionly commented on July 20, 2024

U need to use elastic 2.2.0, try use gradle to build, it should be ok.
On Mar 2, 2016 12:44 PM, "Akshay Pai" [email protected] wrote:

@kiwionly https://github.com/kiwionly , i built and installed the
plugin but elastic search throws a lot of exceptions when started because
of the plugin,was anyone able to successfully use it ?


Reply to this email directly or view it on GitHub
#19 (comment)
.

from elasticsearch-image.

utsav09211 avatar utsav09211 commented on July 20, 2024

Hi @kiwionly . Thanks for the plugin. Wanted to know if there is any way to implement LSAFilter (or any other lire filter which does reranking based on feature) inside the plugin. ?

from elasticsearch-image.

kiwionly avatar kiwionly commented on July 20, 2024

hi, currently that is no filter within plugin.

I not sure how should filter implements yet.

On Mar 2, 2016 8:26 PM, "utsav09211" [email protected] wrote:

Hi @kiwionly https://github.com/kiwionly . Thanks for the plugin.
Wanted to know if there is any way to implement LSAFilter (or any other
lire filter which does reranking based on feature) inside the plugin. ?


Reply to this email directly or view it on GitHub
#19 (comment)
.

from elasticsearch-image.

kiwionly avatar kiwionly commented on July 20, 2024

just upgrade LIRE version to 1.0b2.
make maven for supported in eclipse project only.
use Gradle for build instead.

from elasticsearch-image.

saurabheights avatar saurabheights commented on July 20, 2024

Thanks @kiwionly . This is great news. Will spend this weekend to test this out.

from elasticsearch-image.

fabriziofortino avatar fabriziofortino commented on July 20, 2024

gradle all the things!!! 👍

from elasticsearch-image.

sourcedexter avatar sourcedexter commented on July 20, 2024

@kiwionly , I am using your Lire-Plugin for Elastic search 2.2.0 . When I index any number of images using JCD, the index works fine but when I search using JCD, then for many images, i get ArrayIndeOutOfBounds eecption, but fr toher images it searches fine. Any idea on that ?

from elasticsearch-image.

kiwionly avatar kiwionly commented on July 20, 2024

Hi, i do try on FTCH and had image index issue when batch index. When using
head plugin, no issue.

For CEDD, no index and search problem.

I still no time to look into that, not sure is problem from es or lire.
On Apr 5, 2016 2:12 PM, "Akshay Pai" [email protected] wrote:

@kiwionly https://github.com/kiwionly , I am using your Lire-Plugin for
Elastic search 2.2.0 . When I index any number of images using JCD, the
index works fine but when I search using JCD, then for many images, i get
ArrayIndeOutOfBounds eecption, but fr toher images it searches fine. Any
idea on that ?


You are receiving this because you were mentioned.
Reply to this email directly or view it on GitHub
#19 (comment)

from elasticsearch-image.

sourcedexter avatar sourcedexter commented on July 20, 2024

@kiwionly , i found the issue, its to do with the way byte array is set in the plugin , il probably raise a PR on your Repo, with the fix

from elasticsearch-image.

kiwionly avatar kiwionly commented on July 20, 2024

Ok cool ! Thx !
On Apr 7, 2016 12:07 PM, "Akshay Pai" [email protected] wrote:

@kiwionly https://github.com/kiwionly , i found the issue, its to do
with the way byte array is set in the plugin , il probably raise a PR on
your Repo, with the fix


You are receiving this because you were mentioned.
Reply to this email directly or view it on GitHub
#19 (comment)

from elasticsearch-image.

emaza avatar emaza commented on July 20, 2024

elastic.version = 2.2.0
using branch : https://github.com/kiwionly/elasticsearch-image
I created the plugin via gradle and unzip to %elasticsearch%/plugins folder.
Then trying to create mapping like example in Redme. I have this "unsupported parameters" error:

-first create index:
curl -XPUT 'localhost:9200/test?pretty'
-second crete mapping
"like example in README.md"
--return
{
"error": {
"root_cause": [
{
"type": "mapper_parsing_exception",
"reason": "Mapping definition for [my_img] has unsupported parameters: [feature : {CEDD={hash=[BIT_SAMPLING]}, JCD={hash=[BIT_SAMPLING, LSH]}}] [metadata : {jpeg.image_width={type=string}, jpeg.image_height={type=string}}]"
}
],
"type": "mapper_parsing_exception",
"reason": "Mapping definition for [my_img] has unsupported parameters: [feature : {CEDD={hash=[BIT_SAMPLING]}, JCD={hash=[BIT_SAMPLING, LSH]}}] [metadata : {jpeg.image_width={type=string}, jpeg.image_height={type=string}}]"
},
"status": 400
}

from elasticsearch-image.

negon avatar negon commented on July 20, 2024

@emaza did you manage to solve this issue?

from elasticsearch-image.

emaza avatar emaza commented on July 20, 2024

@negon I did not, I'm sorry

from elasticsearch-image.

AntonioReyes avatar AntonioReyes commented on July 20, 2024

anyone using this plugin or an alternative with elastic v5.5 ?

from elasticsearch-image.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.