Giter VIP home page Giter VIP logo

Comments (7)

supereng avatar supereng commented on May 12, 2024 1

Thanks a lot dear, you are really awesome 👍

from imageai.

OlafenwaMoses avatar OlafenwaMoses commented on May 12, 2024 1

You are welcome.

from imageai.

OlafenwaMoses avatar OlafenwaMoses commented on May 12, 2024

All you need is to convert the image to a Numpy Array and set input_type ="array" . See details of detectObjectsFromImage parameters from documentation below.

http://imageai.readthedocs.io/en/latest/detection/index.html

from imageai.

OlafenwaMoses avatar OlafenwaMoses commented on May 12, 2024

To speed the detection by removing the latency of saving the detected image, refer to #9

from imageai.

supereng avatar supereng commented on May 12, 2024

I did below but it also gives me an error

from PIL import Image;
image_arr = np.asarray(Image.open(test.jpg).convert('RGB'));
returned_image,detections=detector.detectObjectsFromImage(input_image=image_arr,output_type="array", extract_detected_objects=False,minimum_percentage_probability = 30)

Can you give me an Example

from imageai.

supereng avatar supereng commented on May 12, 2024

AttributeError: 'numpy.ndarray' object has no attribute 'seek'

from imageai.

OlafenwaMoses avatar OlafenwaMoses commented on May 12, 2024

Remove the
.convert('RGB') and replace it as seen below

image_arr = np.asarray(Image.open('test.jpg'), dtype='float64')

I also noticed that in the code you posted above, you did Image.open(test.jpg), instead of the Image.open('test.jpg') . You omitted the quotation.

from imageai.

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.