I have png image that I used opencv cv2 to load as follow:
im1 = cv2.imread("/media/mark/B37B-0280/dataset_grad/test/formatted/200000.png", 0)
what I want is to convert it to svg so I tried the potrace as suggested in this link but when I do the following:
bmp = potrace.Bitmap(im1)
path = bmp.trace()
it does not save the image.. I do not know how to save it as svg after those steps.. please kindly help me