Papers for

digital diagram creators

Papers whose findings have a practical use for this group, as judged from the abstract. Open a paper to read what it means in practice.

Lightweight neural network recognizes hand-drawn shapes in real time

A Lightweight Convolutional Neural Network for Real-Time Recognition of Hand-Drawn Geometric Shapes

Abstract: Recognizing hand-drawn geometric shapes is a foundational sub-problem of sketch recognition, with applications in education, human-computer interaction, and diagram digitization. This paper presents the design, implementation, and evaluation of a desktop application that recognizes four basic hand-drawn geometric shapes, circle, square, rectangle, and triangle using a compact Convolutional Neural Network (CNN). A dataset of 2,000 labeled 28x28-pixel shape images was collected independently and released publicly. The classifier consists of three convolutional blocks (16, 32, and 64 filters) with max-pooling, an in-model data-augmentation stage (random horizontal flip, rotation, and zoom), a dropout-regularized dense layer of 128 units, and a 4-way linear output layer, totaling 97{,}956 trainable parameters. The network is trained with the Adam optimizer on a sparse categorical cross-entropy objective computed directly on logits. On an 80/20 train-validation split, the model achieves 94.80% training accuracy and 96.01% validation accuracy with a validation loss of 0.1437. A Tkinter-based graphical interface allows a user to draw a shape with the mouse and receive an immediate class prediction with a confidence score. We situate this system within the broader sketch and shape-recognition literature, compare its accuracy against related hand-drawn shape classification studies, and discuss the limitations inherent to a small, single-contributor dataset. The complete source code, trained model, and per-class datasets are released publicly to support reproducibility.

Mon 21 SeptComputer Vision and Pattern RecognitionMachine Learning
The gist
Recognizing simple hand-drawn shapes is useful for things like teaching and making diagrams on computers. The authors built a small neural network that can tell if a drawing is a circle, square, rectangle, or triangle almost instantly. They trained it on a small collection of 2,000 images they made and tested it to get over 95% accuracy when guessing the shapes. They also made a simple program where you can draw a shape and it will tell you what it thinks it is right away. The authors shared all their code and data so others can use or improve their work.
Open 2609.24384v1