/// <summary> /// Find Boxes that bound chars in processed bitmap /// </summary> private Rectangle[] FindChars(int minCharHeight, int maxCharHeight) { return(Boxes.Where(x => x.Height >= minCharHeight && x.Height <= maxCharHeight).ToArray()); }
public List <Box> listaBoxPorStatus(bool status) { return(Boxes.Where(x => x.Ocupado == status).ToList()); }