Hi everyone
for a glass fiber project I need to find every of these fibers. The first picture is a good fibre, the second is not so good
actually I inverted the complete picture and did a Blob detection. My parameters are:
Cv2.BitwiseNot(picture, picture);
var detectorParams = new SimpleBlobDetector.Params
{
MinThreshold = 0,
MaxThreshold = 220,
FilterByArea = true,
MinArea = 100,
MaxArea = 300
};
var simpleBlobDetector = SimpleBlobDetector.Create(detectorParams);
var keyPoints = simpleBlobDetector.Detect(picture);
I just can find the fibres that are very bright. unfortunately not the grey ones and also not the uncomplete ones. How can I find the rest of the fibres? I thought the Max Threshold of 220 should find the most of the Blobs.
Thanks for helping
Best Regards
Manu