TLDR: A new AI approach improves Parkinson’s disease detection from hand-drawn patterns by dividing images into ‘chunks’ and using data augmentation. This method significantly enhances the model’s ability to generalize to new, unseen patients, achieving higher accuracy and a smaller performance drop compared to previous techniques, making early diagnosis more robust.
Parkinson’s disease (PD) is a progressive neurological disorder that significantly impacts motor skills, often manifesting as tremors, rigidity, and difficulty with fine motor activities like writing and drawing. Early and accurate detection of PD is crucial for effective management, and researchers are increasingly turning to artificial intelligence (AI) to assist in diagnosis.
A recent research paper, titled “Improving Cross-Patient Generalization in Parkinson’s Disease Detection through Chunk-Based Analysis of Hand-Drawn Patterns,” introduces a novel AI-driven approach that promises more robust and reliable detection of Parkinson’s disease from hand-drawn patterns. Authored by Mhd Adnan Albani and Riad Sonbol, this study addresses two key limitations in existing methods: the scarcity of sufficient datasets and the challenge of maintaining accuracy when dealing with data from patients the AI has never encountered before.
The core of their proposed solution lies in a two-stage process. The first stage involves classifying the type of drawing (circle, meander, or spiral), which are common tasks used in neurological assessments. The second, more critical stage, focuses on extracting features from these images and detecting PD indicators. To overcome the limitations of data scarcity and generalization, the researchers implemented a clever “chunking” strategy. This involves dividing each hand-drawn image into a 2×2 grid of smaller segments, or chunks. Each of these chunks is then processed individually to extract features and identify signs of Parkinson’s disease. An ensemble method then combines the decisions from all chunks to make a final classification for the entire drawing.
This chunk-based analysis mimics how humans might scrutinize a drawing, focusing on specific areas for irregularities before forming an overall understanding. This localized analysis allows the model to capture fine-grained spatial variations and subtle motor irregularities that might be overlooked when processing the entire image at once. Furthermore, the methodology incorporates deterministic data augmentation, a technique that artificially expands the training dataset by applying controlled rotations and noise to existing images. This not only helps in addressing the limited dataset size but also improves the model’s ability to generalize to diverse drawing styles and reduce overfitting to specific patient data.
The proposed architecture is a three-stage system: first, a ResNet-based encoder identifies the drawing type; second, a feature extractor (using ResNet, Pyramid Vision Transformer, or a hybrid model) generates a feature vector from the chunks; and third, a machine learning classifier (such as k-Nearest Neighbors, Random Forest, Decision Tree, or Neural Network) uses this vector to predict whether the drawing indicates PD or a healthy state.
Evaluated on the NewHandPD dataset, which includes circle, meander, and spiral drawings from both healthy individuals and PD patients, the new approach demonstrated impressive results. Crucially, the researchers emphasized an “individual-wise” evaluation strategy. Unlike “image-wise” evaluations, which can inadvertently include samples from the same patient in both training and testing sets (leading to overly optimistic results), the individual-wise approach ensures that the model is tested only on data from entirely unseen patients. This provides a more realistic measure of the model’s ability to generalize.
The study reported a weighted average accuracy of 97.08% for seen patients and 94.91% for unseen patients using the individual-wise evaluation. This represents a minimal drop of only 2.17 percentage points, a significant improvement over prior work which observed a much larger drop of 4.76 points. This smaller “generalization gap” highlights the robustness of the chunk-based method in capturing individual-independent handwriting characteristics.
Also Read:
- Advancing Parkinson’s Assessment with Relaxed Multimodal AI
- Advancing Skin Cancer Diagnosis: A New AI Model Combines Image Segmentation with Patient Data for Clearer, More Accurate Results
An ablation study further confirmed the critical roles of both chunking and data augmentation. Removing either of these components led to a noticeable decrease in performance, underscoring their importance in enhancing the model’s sensitivity to fine motor irregularities and improving its ability to handle inter-subject variability. This research marks a significant step forward in developing more reliable and generalizable AI tools for the early detection of Parkinson’s disease. For more details, you can refer to the full research paper available here.


