Questions tagged [image-annotations]

16 questions
3
votes
1 answer

Does BatchAnnotateImagesResponse in Google Cloud Vision API preserve the order of the images in batchAnnotateImages request?

Given a list of image urls I want to annotate each image, i.e. extract text from each image. For that, I want to use Google Cloud Vision API client library in Java. Here is my pseudocode: List imageUrls = ...; List
alex
  • 942
  • 1
  • 10
  • 26
2
votes
1 answer

Diagnose crashes of FiftyOne app – logs or other tools

We need to make a FiftyOne instance available to multiple users via a web browser. We need to start a process and have it run, even after we log off from the session that initiated the app processes. I’m using the following command to start the…
Cola
  • 2,097
  • 4
  • 24
  • 30
1
vote
0 answers

How to add text to an image in R based not on specific coordinates but features of the image

I'm trying to use R to annotate images (as either png or tiff) of tumor samples with a value according to where the corresponding region number is on the image. The numbers next to the circles represent certain regions where protein expression was…
mfeldbauer
  • 132
  • 1
  • 9
1
vote
0 answers

how to convert json polygon annotation to yolov8 format

How can I convert the annotations of a solar panel dataset, which are currently in a JSON format, to be compatible with the YOLO model for use in my deep learning projects? The dataset includes both images and their corresponding annotations. Here…
1
vote
1 answer

Different image sizes as inputs for Tensorflow 2 Object Detection API

When using Tensorflow 2 object detection api when do I normalize images of different sizes. Do I preprocess all the images to be same size then annotate with object bounding box? Or do the models somehow do the resizing internally and adjusts the…
1
vote
0 answers

React native image annotations containing a link to a site

I am a complete beginner at react-native. I am trying to create an app where i can take multiple photos and add a tag/label with a link to a website to each of the photos. These links when tapped need to take the user to the specified website. I…
MRWHITE
  • 11
  • 1
1
vote
0 answers

Is there an annotation tool for instance segmentation on Ipad?

Is there an annotation tool to produce multi layer (for overlapping objects within the image) and pixel exact image annotations on IPad? Background to my question: There a lot of annotation tools for Linux and Windows (e.g. the ones listed here:…
user3063903
  • 95
  • 1
  • 7
1
vote
1 answer

Is there a way to upload images with annotations (labeled images) to custom vision?

I have hundreds of labeled images and do not want to redo that work in the custom vision labeling tool. Is there a way to upload labeled images to custom vision? Or to Azure ML or Azure ML Studio? Does any vision services in Azure provide for…
0
votes
1 answer

Place interactive markers on image with React

Help please. I have an image like this image below to display on a home page ( a much larger one). Notice that there is a white and blue marker with a black arrow in the middle on the "FORGE" house. The same for the "Rentals" house. Each one of…
GeekyCode
  • 349
  • 1
  • 9
0
votes
1 answer

How to convert the annotation values of image data into yolo v4 format and upload the images in custom vision

I tried uploading the image dataset from Image datasetwith annotation around 500 images . But getting error "Image status : Invalid Region" This is the label.txt for single image This is the image I have no idea about how to code this and calculate…
0
votes
3 answers

Image annotation conversion from json format to YOLOv7 format

I am trying object detection in YOLOv7. As I have downloaded some public dataset for training, I got annotations in JSON format. { "width": 4608, "height": 3456, "ispano": false, "objects": [ { "key": "o5a4uvvzxdp6dod5uiexhl", …
0
votes
0 answers

Determine the project used by Vision Api

I'm working on a project on gcp using the OCR service from Google Vision. My code is simple, I've declared a vision ImageAnnotatorClient like this: client = vision.ImageAnnotatorClient() and then call some batch annotation request like…
0
votes
0 answers

How to edit already annotated images (rectangular bounding box)?

I have a CSV containing xMin, yMin, xMax, yMax of the box. Now I want a tool by which I can edit the annotation I have already done. If someone can suggest an open source tool or python script which can help achieve the same. Example I want to make…
0
votes
1 answer

How to add marker on image in reactJS with ZoomIn and ZoomOut

I want to add marker as a pointer on the image in my react application. Image should be able to zoom in zoom out. But point should not get zoom. Anyone know the library for it or related stuff, please help
TejalC
  • 27
  • 5
0
votes
1 answer

How to overlap two label to make mask for segmentation in ITK-snap?

I'm annotating CT scan slices(Nifti format) with ITK-snap. One slice contains two labels(Subarachnoid and Intraparenchymal) in the same area. Here is the original annotated image link: https://ibb.co/FJpyVZF Since two labels are overlapping, the…