Skip to content Skip to sidebar Skip to footer
Showing posts with the label Computer Vision

How Does Cv2.floodfill Work?

here is a example code showing usage of cv2.floodfill function import cv2 import numpy as np import… Read more How Does Cv2.floodfill Work?

How To Use Opencv Copyto() Function?

I have read through the documentation for copyTo() but am still confused on how this function would… Read more How To Use Opencv Copyto() Function?

Problems During Skeletonization Image For Extracting Contours

I found this code to get a skeletonized image. I have a circle image (https://docs.google.com/file/… Read more Problems During Skeletonization Image For Extracting Contours

How To Distinguish Filled Circle/contour And Unfilled Circle/contour In Opencv?

I am unable to differentiate the below two contours. cv2.contourArea is giving the same value for b… Read more How To Distinguish Filled Circle/contour And Unfilled Circle/contour In Opencv?

Overlapping Sliding Windows Over Image

My objective is to have a sliding window slide over an image in overlapping steps so that I can run… Read more Overlapping Sliding Windows Over Image

Find The Points Beyond A Line Using Python

With reference to the question asked here Drawing a line given the angle and a point on the line, I… Read more Find The Points Beyond A Line Using Python