Skip to content
Advertisement

Tag: opencv

How to draw multi-color segmented circle using OpenCV?

What is the best way to draw multi-color segmented circle using OpenCV like below? What I found, it can be: Using cv.fillPoly Many points are required for an arcs accurate drawing, the number of segments is several hundred; Using cv.line by rotating the line in a circle; Using cv.line by rotating whole image like in this similar case. Answer Using

opencv align two images by keypoints with stretching

I have two images image1 (object): ]3 Original image without marked keypoints: image2 is a white picture (500×500) In image1 and in image2 I have marked keypoints. I want to align image1 on image2 by keypoints. So the goal that both keypoints overlaps with stretching, scaling and transforming image2. This are my keypoints (csv file). The coordinates are x and

Advertisement