Questions tagged [imageai]

Use for questions about using ImageAI, a python library to build applications and systems with self-contained Deep Learning and Computer Vision .

Use for questions about using ImageAI, a python library to build applications and systems with self-contained Deep Learning and Computer Vision.

Use together with .

Related Tags

Links

This tag is being discussed in Do we need [imageai]?

69 questions
0
votes
0 answers

How to check hat objects yolo can detect using detectObjectsFromImage?

I want to print all the objects that yolo can detect. I tried but could not find any solution yet! import h5py filename = "yolo.h5" h5 = h5py.File(filename,'r') #futures_data = h5['futures_data'] # VSTOXX futures data options_data =…
0
votes
0 answers

Traceback ImageAi

Good afternoon, For the second day I can't move forward because of this problem. I've been doing python recently. I downloaded all packages, checked with the versions I have python 3.10. And it gives this error every time. Tell me what to do,…
tupica228
  • 1
  • 1
0
votes
0 answers

Python3.10 ImageAI installation error likely not a problem with pip

I'm trying to install imageAI (pip install 3.10 ) on my python3.10 virtualenv, unfortunatelly I get the following error (which is unusually uge!!!): PS I tried to follow many procedures I could find online, like updating distutils, libpython and…
0
votes
2 answers

Can't import object detection imageai (python)

I installed imageai,tensorflow,keras in python with pip i typed this code from imageai.Detection import ObjectDetection it shows this error ModuleNotFoundError: No module named 'keras.layers.advanced_activations' module versions imageai -…
0
votes
0 answers

ModuleNotFoundError: No module named 'tensorflow.python.platform'

I'm using imageAI with tensorflow and keras. Now I get the problem is : ModuleNotFoundError: No module named 'tensorflow.python.platform' I have find many different methods to solve it, but they do not work for me. Hope there is someone can help me…
yannn31
  • 11
  • 4
0
votes
0 answers

Calculate the number of objects in a video using the imageai library

Hello everyone I want to count the number of objects in a video using the imageai library. This is my source code: from imageai.Detection import ObjectDetection import cv2 import time video =…
0
votes
1 answer

Virtual dog fence with ImageAI

I'd like to detect when my dog sets foot in the lawn. In the attached image, that brown-reddish dirt strip will eventually become my lawn. I have a fixed camera that streams a live video of my backyard, including the lawn. With the help of ImageAI I…
j4zzcat
  • 322
  • 2
  • 14
0
votes
1 answer

Cannot import name "BatchNormalization" from "keras.layers.normalization" after trying to install imageai 2.1.5

I've tried to install pytorch but it failed. I've also downloaded all the libraries needed for it to run (opencv-python, numpy, scipy, among others) still, nothing... How can I solve this issue? Error: File "C:\Users\Home\PycharmProjects\XG -I…
0
votes
1 answer

ImageAI/Keras can't load ResNet model

I'm trying to use the Image Prediction tool in the imageai library, and I'm getting the following two errors... As a beginner, I honestly can't make sense of the errors, and I couldn't find any answers online that worked. If anyone could please help…
Cande
  • 141
  • 2
  • 4
0
votes
1 answer

Only detect a single person using imageai.Detection

I am new to imageAI and recently I read an article about a small project of detecting pedestrians. I try to get the same result, but some problems occurred. Here is my code: from imageai.Detection import ObjectDetection import os execution_path =…
SkyeCat
  • 3
  • 3
0
votes
1 answer

Layer count mismatch when loading weights from file. ImageAi Custom

I need help... Im using imageai Custom Class to create my own detection... And here we go from imageai.Classification.Custom import ClassificationModelTrainer model_trainer =…
kndahl
  • 11
  • 4
0
votes
0 answers

Detect objects from live YouTube video and generate links

I am working on a small project where I'd like to create a browser extension to work with Youtube (or other streaming sites) to detect trendy items in the video and generate purchase links which will be shown in a column (the idea is not completely…
Satashree Roy
  • 365
  • 2
  • 9
0
votes
1 answer

MatplotlibDeprecationWarning: '.predictImage()' has been deprecated! Please use 'classifyImage()' instead

So I followed this blog to build Image Classification using ML, I had trained for 2 datasets, dogs and Pipes, and no matter which image I give it, it always says its 100% pipes with the following error, To enable them in other operations, rebuild…
0
votes
1 answer

Imageai detector RuntimeWarning

Resizing image in imageai-detector /usr/local/lib/python3.6/site-packages/imageai/Detection/Custom/init.py:1234: RuntimeWarning: overflow encountered in exp return 1. / (1. + np.exp(-x)) I keep getting this warning, it seems like it has to do with…
TkrA
  • 439
  • 1
  • 5
  • 19
0
votes
1 answer

ImageAI Object Detection Very Slow

I have been attempting to make a program that can identify objects on my screen using python. With the help of this tutorial: https://stackabuse.com/object-detection-with-imageai-in-python, I have created the following code. import pyautogui import…