I am training some images using imageAI object detection. What i want to do is draw a polygon shaped data annotation around the objects in an image. Not a square box. Even though I ca draw the shape, the imageAI class doesn't consider polygon shapes. If some one can help me to find if is there is some model where polygon shapes are allowed in image training, that would be great.
How to draw a polygon shaped data annotation shape for image detection?
257 Views Asked by Nats De At
1
There are 1 best solutions below
Related Questions in ARTIFICIAL-INTELLIGENCE
- Dots and Boxes with apha-beta pruning
- Node.js Chatbot Error: GoogleGenerativeAIError - Content should have 'parts' property with an array of Parts
- Integrating Mesonet algorithm with a webUI for deepfake detection model
- Pneumonia detection, using transfer learning
- Anybody knows where to learn AIMA python library?
- Training model for AirPassengers dataset
- I have question about the meanings of words coming out during training YOLOv7(WongKinYiu)
- LangChain OpenAI Agent with Sources
- recognize_google fails with WinError 10060
- combination of 2 classes
- How to Text To Speech a IA text generation that is streaming response
- How to integrate source section in chat gpt API in py?
- Why does this error keep showing, what am i missing? await message.channel.send(f"Answer: {bot_response}") IndentationError: unexpected indent
- How can I upload/attach file like PDF in Google Gemini AI API ? (Model Gemini 1.5 Pro)
- How to use Google Gemini API call to upload pdf, ppt, docs, etc files?
Related Questions in POLYGON
- How can i show the layer like polygon cover all marker in mapbox
- Rotate a multipolygon without changing the inner spatial relation
- fabric.js reset polygon bounding box after a point is moved
- How do I find the line segments formed by the meeting of two sides of two polygons?
- Draw polygon next to an another one
- cannot import name 'RESTClient' from 'polygon'
- Edited polygon not showing up after saving changes in Google Maps API
- Given a convex polygon as a set of edges how to fill the area inside depending on the distance to the closest edge
- Distribution of n number of equi-distant point in polygon
- Subtracting polygons and converting them to not have holes in python
- Algorithm to convert SVG path to CSS clip path polygon
- Update a polygon that have intersections in two or more polygons
- SVG Coordinates not working with % values
- Drawing and editing geofence using @react-google-maps/api
- "QGIS: Displaying labels outside polygons for line features inside using field values"
Related Questions in OBJECT-RECOGNITION
- How to code in Java in to train a xml file with positive and negative examples image for an image recognition model by using HOG Features
- Tracking detected objects in OpenCV
- What is going wrong when trying to apply a gabor filter to an image?
- Saving bounding box region as an image in a custom folder
- Matching unique objects in a collection of images using object detection and similarity measures
- Using Yolo in Unity's Virtual Environment or Using any OR model in Unity
- YOLO multiple annotations on same object
- Bad results using OpenCV with Yolov5 comparing with pure Yolov5
- How to draw squares around objects in image and count them?
- Find closest match of image to +10.000 others with similar features
- TensorFlow object detection results showing 'N/A'
- Real-time video streaming with OpenCV and React JS
- Pytorch/YOLOv5 - Compare detected Object if it's the same
- Images labeling for object detection when object is larger than the image
- PCL 3D Object Recognition based on Correspondence Grouping seems to be unstable
Related Questions in IMAGEAI
- Playing with ImageAI and I get error --> UnicodeDecodeError: 'charmap' codec can't decode byte 0x81 in position 1822: character maps to <undefined>
- error detector.setModelPath( os.path.join(execution_path , "resnet50_coco_best_v2.0.1.h5"))
- Mage.ai in Docker with MYSQL in Docker 2003 (HY000): Can't connect to MySQL server on '*********:33060' (99)
- Flask app deployed on PythonAnywhere with Machine Learning model not responding
- OpenCV error when using Live Feed for imageAI tutorial
- picamera2 interfacing with ImageAI yolov3 ValueError: Ensure you specified correct input image, input type, output type and/or output image path
- Drawing bounding box with ImageAI
- the imageai module requires Pytorch to work in Python3.10
- ImageAI variable shape and value shape are different
- Can't import object detection imageai (python)
- ModuleNotFoundError: No module named 'tensorflow.python.platform'
- Display live camera feed with object recognition markers Python ImageAI OpenCV
- python imageai error `Function call stack: train_function`
- Calculate the number of objects in a video using the imageai library
- Virtual dog fence with ImageAI
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
ImageAI only supports PascalVOC image annotation format, which is upright rectangular bounding boxes. You would need to change frameworks for this to work. For a workaround, consider using an image editing tool to get rid of the background and then provide a square bounding box.