Home > Blockchain >  Marking image by their co-ordinates
Marking image by their co-ordinates

Time:11-17

First of all I'm new to imaging, so I did a lot of research but found close to no related answer. I have co-ordinates of multiple images. I want a way to know if there's any way I can use those coordinates to put a mark [like- x, o] on the images.

list of specific coordinates of single image -

297 50
1404 321
1034 835
967 911
1063 935

I want to find out if there's any way I can use these coordinates to mark specific areas on my image. Thanks in advance.

CodePudding user response:

Your question is too broad. However, since you tagged the question with python, I assume that you want to do all this in python.

Use mark_circle_0 mark_cross_0

View the images in new tabs to check the marks.

  • Related