Find Tables in Image using C#
问题 I am trying to write a function that will take an image and return me a list of images with only tables using EMGU.CV or Magick.Net or AForge.Net for example for the below image the function should return 2 images with the two tables in the image. 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