Currently I'm developing image processing application with Windows Forms. My app has some stages like:
- Find line between 2 pages on image; 开发者_运维问答
- Deskew image;
- Find content area;
- ...
For now I have TabControl. Each tab has it's own PictureBox for one stage. When I'm going through stages, appropriate tab is selected. On the last stage I have about 5 PictureBoxes with large images. This approach is not very good because at the end there is large memory consumption.
But I can't find out another approach. Maybe you can propose something?
精彩评论