我正在尝试编写一个函数,该函数将获取图像并返回一个图像列表,其中仅包含使用 EMGU.CV 或 Magick.Net 或 AForge.Net 的表格,例如对于下图,该函数应返回 2 个带有两个表格的图像在图像中。
private static List<Image> FindTables(Image img)
{
var masterImage = (Bitmap)img;
var image = new Image<Gray, byte>(masterImage);
var copyImg = new Image<Bgr, byte>(masterImage);
List<Image> tables = new List<Images>
//Find all tables and add to tables variable
return tables;
}