我使用ExtractBiggestBlob将原始图像最小化到最小可能的轮廓。我只是在对原始图像进行二值化后才这样做,这样我才能获得最小的图像轮廓。如何在使用ExtractBiggestBlob后找到blob的坐标,以便我可以使用它从原始图像中进行裁剪?
编辑1: 我发现了它:
ExtractBiggestBlob BBB = new ExtractBiggestBlob();// Extract the biggest Blob Bitmap biggestBlobsImage = BBB.Apply(ChannelImage); IntPoint blobPosition = BBB.BlobPosition; //Console.WriteLine(blobPosition.X); //Console.WriteLine(blobPosition.Y);