Algorithm for automatic reading of dimensions from a technical drawing
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Good morning, I'd like to develop software that will: - read dimensions from a technical drawing in PDF/DWG/DXF format (reading the length and width of a part from the dimension line for a given item) + read the material grade (from the assembly table) - then, based on boundary conditions, the program will determine which part will be laser-processed (thickness < 25 mm) or plasma-processed (> 25 mm < 100 mm) + whether or not it will be a bent element. I've seen that Python can do this. The biggest problem is how the program will find the dimensions and determine the dimensions: length x width. The drawing has many dimension lines. While the grade is usually listed in the table in the lower right corner, the dimensions are arranged differently. I'd appreciate any advice on how to approach this.