SlideShare a Scribd company logo
SEGMENTATION-BASED HISTORICAL HANDWRITTEN 
WORD SPOTTING USING DOCUMENT-SPECIFIC LOCAL 
FEATURES 
KONSTANTINOS ZAGORIS1,2 
IOANNIS PRATIKAKIS1 
BASILIS GATOS2 
Visual Computing Group 
Democritus University of Thrace 
Dept. of Electrical and Computer Engineering 
Xanthi, Greece 
National Centre of Scientific Research “Demokritos” 
Institute of Informatics and Telecommunications 
Athens, Greece 
1 
2
WHAT IS KEY WORD SPOTTING? 
• It is the task of identifying locations on a document image which have high 
probability to contain an instance of a queried word 
• without explicitly recognizing it. 
• It is related to Content-Based Image Retrieval systems. 
• Searching a word image from a set of unindexed document images using the image 
content as the only information source.
CURRENT LITERATURE TRENDS 
• Currently there are two distinct trends. 
(i) Segmentation-based and (ii) Segmentation-free approaches. 
• Their fundamental difference concerns the search space 
- segmented word images (segmentation-based) 
- complete document image (segmentation-free). 
We address the word spotting problem with a segmentation-based 
approach.
PREVIOUS LITERATURE 
Rath and Manmatha calculate two families of feature sets. 
• scalar type features that include aspect ratio, area, etc. 
• profile-based features that are based on horizontal and vertical words 
projections and the upper and lower word profiles. 
Zagoris et. al. created a similar set of profile-based features but: 
• encoded Discrete Cosine Transformation and 
• quantize through the Gustafson - Kessel fuzzy algorithm. 
Rodriguez and Perronnin extract features from a sliding window, based 
on the first gradient and inspired by the SIFT keypoint descriptor.
BAG-OF-VISUAL WORDS MODEL 
Recently, there was an influx of works based on the local features in the form of the 
Bag-of-Visual Words model. 
Llados et. al. evaluate the performance of various word descriptors : 
• a bag of visual words procedure (BoVW), 
• a pseudo-structural representation based on Loci Features, 
• a structural approach by using words as graphs, and 
• sequences of column features based on DTW. 
They found that the statistical approach of the BoVW produces the best results, 
although the memory requirements to store the descriptors are significant.
PROBLEMS WITH CURRENT LOCAL FEATURES 
Most works using local features are based on the Scale Invariant Feature 
Transform (SIFT) in order to describe the local information 
• The original application of these local features are the natural images which they 
have many structural differences compared to document images 
• The detection of the most powerful edges through pyramid scaling creates local 
points between text lines. 
• Invariant properties in the descriptor results in noise amplification so they are 
more sensitive to the noise and the complex texture of the background.
TEXTURE VS SHAPE FEATURES 
Features for word spotting which rely only on word shape characteristics are not 
effective in dealing with a document collection created by different writers, containing 
significant writing style variations. 
Although slant and skew preprocessing techniques can reduce the shape variations, 
they cannot eliminate the problem as the whole structure of the word is different in 
most of the cases. 
In this respect, we argue that although the shape information is meaningful, the 
texture information in a spatial context is more reliable.
DOCUMENT SPECIFIC LOCAL FEATURES (DSLF) 
Taking into account the aforementioned considerations, we propose: 
• novel local features which are specific for documents and a 
• matching procedure that does not rely on codebook creation (as on 
BoVW).
PROPOSED WORD SPOTTING FRAMEWORK 
Document 
Dataset 
Word Image 
Segmentation 
Word Image 
DSLF Calculation 
Matching Process 
Display Results 
Database DSLF Calculation 
ONLINE 
OFFLINE
KEYPOINT DETECTION AND SELECTION 
Keypoint Detection 
CCs Analysis 
Local Point Selection 
Gradient 
Orientation 
Quantization 
Convex Hull 
Corner 
Detection 
Entropy-based Final Keypoints Keypoint Filtering
KEYPOINT DETECTION AND SELECTION 
original document 
image 
orientation of the gradient 
vector 
quantization of the gradient 
vector orientation 
initial keypoints final keypoints
FEATURE EXTRACTION 
• The feature for the local keypoint is calculated upon the quantized gradient angles 
• An area of 18x18 pixels around the kP, is divided into 9 cells with size 6x6 for each of them. 
• Each cell is represented by a 3-bin histogram (each bin corresponds to a quantization level). 
• Each pixel accumulates a vote in the corresponding angle histogram bin. The strength of 
voting depends on the norm of the gradient vector and on the distance from the location of 
local point as shown at the following equation: 
x, y x, y x, y V  s  G 
    2 2 
, 
2 
1 
LP LP 
3 9 2 
x y 
x x y y 
s 
   
   
• The task of the 푠푥,푦 variable is to weigh the pixel participation to the histogram taking into account 
its distance from the kP.
MATCHING PROCEDURE 
• In the case of segmentation-based word spotting, the aim is to match the query 
keypoints to the corresponding keypoints of any word image in the document. 
• Local Proximity Nearest Neighbor (LPNN) search is implemented. 
• The advantage of LPNN search is two-fold: 
 it enables a search in focused areas instead of searching in a brute force manner and 
 it goes beyond the typical use of a descriptor by the incorporation of spatial context in the 
local search addressed.
MATCHING PROCEDURE 
Update the location for each keypoint to a 
new normalized space: 
′ 
= 
푝푥푖 
푝푥푖 
−푐푥 
퐷푥 
′ 
= 
, 푝푦푖 
푝푦푖 
−푐푦 
퐷푦 
where: 
푐푥, 푐푦 = 
푘 푖=푥1 
푖 
푝푘 
, 
푘 푖=푦1 
푖 
푝푘 
퐷푥 = 
푘 푝푥푖 
푖=1 
− 푐푥 
푘 
, 퐷푦 = 
푘 푝푦푖 
푖=1 
− 푐푦 
푘 
k denotes the total number of the keypoints in 
a word image.
EVALUATION - DATASETS 
BENTHAM DATASET 
• It consists of 50 high quality (approximately 3000 
pixel width and 4000 pixel height) handwritten 
manuscripts written by Jeremy Bentham (1748- 
1832). 
• The variation of the same word is extreme and 
involves writing style, font size, noise as well as their 
combination.
EVALUATION - DATASETS 
WASHINGTON DATASET 
• It consists of 20 document images from George 
Washington Collection of the Library of Congress 
• The documents are were scanned from microfilm in 
300 dpi resolution.
EVALUATION STRATEGY 
• Two evaluation metrics: Precision at the k Top Retrieved words (P@k) and the Mean Average 
Precision (MAP). 
• P@5 is the precision at top 5 retrieved words. This metric defines how successfully the 
algorithms produce relevant results to the first 5 positions of the ranking list 
• MAP is a typical measure for the performance of information retrieval systems 
• For the experiments, the word image segmentation information is taken from the ground truth 
corpora. 
• The total word image queries for the Washington dataset was 1570 and for the Bentham dataset 
was 3668. 
• Both query sets contain words appearing in various frequencies and sizes 
• Evaluated against two previous segmentation-based profile-based strategies 
• Then, in order to highlight the advantage of the proposed DSLF, it was replaced by the SIFT but the 
proposed matching algorithm remained the same.
OVERALL PERFORMANCE EVALUATION RESULTS 
Washington 
0.660 0.637 
0.631 0.600 0.608 0.577 
0.436 0.440 
0.800 
0.700 
0.600 
0.500 
0.400 
0.300 
0.200 
0.100 
0.000 
P@5 MAP 
WS CSPD SIFT Proposed Method 
Bentham 
0.701 0.680 
0.642 0.630 
0.629 0.615 
0.528 0.506 
0.800 
0.700 
0.600 
0.500 
0.400 
0.300 
0.200 
0.100 
0.000 
P@5 MAP 
WS CSPD SIFT Proposed Method
CONCLUSION 
In this work, novel local features are proposed driven by the challenges presented in 
historical handwritten word spotting scenarios. 
The proposed method outperformed both the profile-based strategies and the SIFT 
local features. 
Moreover, a matching procedure was presented based on Local Proximity Nearest 
Neighbour, that augments performance in terms of effectiveness and efficiency 
incorporating spatial context. 
The proposed framework achieves better performance after a consistent evaluation 
against two profile-based approaches as well as the proposed approach with the 
popular SIFT local features in two different handwritten datasets.
ΕΥΧΑΡΙΣΤΩ ΠΟΛY! 
THANK YOU!

More Related Content

PPTX
Text extraction using document structure features and support vector machines
PPTX
ICFHR 2014 Competition on Handwritten KeyWord Spotting (H-KWS 2014)
PPTX
Handwritten and Machine Printed Text Separation in Document Images using the ...
PPTX
Scene Text Detection on Images using Cellular Automata
PPTX
MultiModal Retrieval Image
PPTX
Developing Document Image Retrieval System
PPTX
Automatic Image Annotation
PPT
Color reduction using the combination of the kohonen self organized feature m...
Text extraction using document structure features and support vector machines
ICFHR 2014 Competition on Handwritten KeyWord Spotting (H-KWS 2014)
Handwritten and Machine Printed Text Separation in Document Images using the ...
Scene Text Detection on Images using Cellular Automata
MultiModal Retrieval Image
Developing Document Image Retrieval System
Automatic Image Annotation
Color reduction using the combination of the kohonen self organized feature m...

What's hot (17)

PDF
Self-Directing Text Detection and Removal from Images with Smoothing
PDF
IRJET- Object Detection using Hausdorff Distance
PPTX
Text extraction from images
PDF
Enhancement and Segmentation of Historical Records
PDF
Currency recognition on mobile phones
PPT
Das09112008
PDF
Integrated Hidden Markov Model and Kalman Filter for Online Object Tracking
PDF
50120140501016
PDF
Improved wolf algorithm on document images detection using optimum mean techn...
PDF
A Literature Survey: Neural Networks for object detection
PDF
C04741319
PDF
AN IMPROVED MULTI-SOM ALGORITHM
PPT
Technical Portion of PhD Research
PDF
Kernel based similarity estimation and real time tracking of moving
PDF
DETECTION OF DENSE, OVERLAPPING, GEOMETRIC OBJECTS
PPTX
Text detection and recognition from natural scenes
PPTX
Self-organizing map
Self-Directing Text Detection and Removal from Images with Smoothing
IRJET- Object Detection using Hausdorff Distance
Text extraction from images
Enhancement and Segmentation of Historical Records
Currency recognition on mobile phones
Das09112008
Integrated Hidden Markov Model and Kalman Filter for Online Object Tracking
50120140501016
Improved wolf algorithm on document images detection using optimum mean techn...
A Literature Survey: Neural Networks for object detection
C04741319
AN IMPROVED MULTI-SOM ALGORITHM
Technical Portion of PhD Research
Kernel based similarity estimation and real time tracking of moving
DETECTION OF DENSE, OVERLAPPING, GEOMETRIC OBJECTS
Text detection and recognition from natural scenes
Self-organizing map
Ad

Viewers also liked (16)

PPTX
Svm based cbir of breast masses on mammograms
PPT
Spotting Customers in Trouble
PDF
A Semi-Automatic Annotation Tool For Arabic Online Handwritten Text
PPTX
Content and Metadata Based Image Document Retrieval (in Greek)
PPTX
Comparative Performance Evaluation of Image Descriptors Over IEEE 802.11b Noi...
PDF
A simple text ine segmentation method for handwritten documents1
DOCX
Word segmentation method for handwritten documents based on structured learning
PDF
Holistic Approach for Arabic Word Recognition
PPTX
Query expansion based on visual content new
PPTX
Segmentation and recognition of handwritten gurmukhi script
PDF
Dynamic Two-Stage Image Retrieval from Large Multimodal Databases
PPT
Online handwritten script recognition
PDF
Performance of Statistics Based Line Segmentation System for Unconstrained H...
PPT
Ppt On Lcm & Hcf Questions For Cat Preparation
PPT
Arabic Handwritten Script Recognition Towards Generalization: A Survey
PPTX
Automatic handwriting recognition
Svm based cbir of breast masses on mammograms
Spotting Customers in Trouble
A Semi-Automatic Annotation Tool For Arabic Online Handwritten Text
Content and Metadata Based Image Document Retrieval (in Greek)
Comparative Performance Evaluation of Image Descriptors Over IEEE 802.11b Noi...
A simple text ine segmentation method for handwritten documents1
Word segmentation method for handwritten documents based on structured learning
Holistic Approach for Arabic Word Recognition
Query expansion based on visual content new
Segmentation and recognition of handwritten gurmukhi script
Dynamic Two-Stage Image Retrieval from Large Multimodal Databases
Online handwritten script recognition
Performance of Statistics Based Line Segmentation System for Unconstrained H...
Ppt On Lcm & Hcf Questions For Cat Preparation
Arabic Handwritten Script Recognition Towards Generalization: A Survey
Automatic handwriting recognition
Ad

Similar to Segmentation - based Historical Handwritten Word Spotting using document-specific Local Features (20)

PDF
BAG OF VISUAL WORDS FOR WORD SPOTTING IN HANDWRITTEN DOCUMENTS BASED ON CURVA...
PDF
Bag of Visual Words for Word Spotting in Handwritten Documents Based on Curva...
PDF
Bag of Visual Words for Word Spotting in Handwritten Documents Based on Curva...
PDF
A NOVEL APPROACH FOR WORD RETRIEVAL FROM DEVANAGARI DOCUMENT IMAGES
PDF
Feature Extraction and Feature Selection using Textual Analysis
PDF
Manuscript Character Recognition: Overview of features for the Feature Vector
PDF
Flickr Image Classification using SIFT Algorism
PPT
ECCV2010: feature learning for image classification, part 1
PDF
F010433136
PPTX
A Higher-Level Visual Representation For Semantic Learning In Image Databases
PDF
2D FEATURES-BASED DETECTOR AND DESCRIPTOR SELECTION SYSTEM FOR HIERARCHICAL R...
PDF
2D FEATURES-BASED DETECTOR AND DESCRIPTOR SELECTION SYSTEM FOR HIERARCHICAL R...
PDF
2D Features-based Detector and Descriptor Selection System for Hierarchical R...
PPT
Compact and Distinctive Visual Vocabularies for Efficient Multimedia Data Ind...
PDF
Computer Vision: Visual Extent of an Object
PDF
Vocabulary length experiments for binary image classification using bov approach
PPTX
Evolving a Medical Image Similarity Search
DOCX
Variable length signature for near-duplicate
PDF
Fusion of demands in review of bag of-visual words
PDF
Face Recognition using Feature Descriptors and Classifiers
BAG OF VISUAL WORDS FOR WORD SPOTTING IN HANDWRITTEN DOCUMENTS BASED ON CURVA...
Bag of Visual Words for Word Spotting in Handwritten Documents Based on Curva...
Bag of Visual Words for Word Spotting in Handwritten Documents Based on Curva...
A NOVEL APPROACH FOR WORD RETRIEVAL FROM DEVANAGARI DOCUMENT IMAGES
Feature Extraction and Feature Selection using Textual Analysis
Manuscript Character Recognition: Overview of features for the Feature Vector
Flickr Image Classification using SIFT Algorism
ECCV2010: feature learning for image classification, part 1
F010433136
A Higher-Level Visual Representation For Semantic Learning In Image Databases
2D FEATURES-BASED DETECTOR AND DESCRIPTOR SELECTION SYSTEM FOR HIERARCHICAL R...
2D FEATURES-BASED DETECTOR AND DESCRIPTOR SELECTION SYSTEM FOR HIERARCHICAL R...
2D Features-based Detector and Descriptor Selection System for Hierarchical R...
Compact and Distinctive Visual Vocabularies for Efficient Multimedia Data Ind...
Computer Vision: Visual Extent of an Object
Vocabulary length experiments for binary image classification using bov approach
Evolving a Medical Image Similarity Search
Variable length signature for near-duplicate
Fusion of demands in review of bag of-visual words
Face Recognition using Feature Descriptors and Classifiers

Recently uploaded (20)

PDF
. Radiology Case Scenariosssssssssssssss
PPTX
famous lake in india and its disturibution and importance
PPTX
Protein & Amino Acid Structures Levels of protein structure (primary, seconda...
PPTX
2. Earth - The Living Planet Module 2ELS
DOCX
Viruses (History, structure and composition, classification, Bacteriophage Re...
PPTX
INTRODUCTION TO EVS | Concept of sustainability
PPTX
Introduction to Fisheries Biotechnology_Lesson 1.pptx
PPTX
TOTAL hIP ARTHROPLASTY Presentation.pptx
PDF
AlphaEarth Foundations and the Satellite Embedding dataset
PPTX
neck nodes and dissection types and lymph nodes levels
PPTX
Classification Systems_TAXONOMY_SCIENCE8.pptx
PPTX
ognitive-behavioral therapy, mindfulness-based approaches, coping skills trai...
PDF
Formation of Supersonic Turbulence in the Primordial Star-forming Cloud
PPTX
ECG_Course_Presentation د.محمد صقران ppt
PPTX
G5Q1W8 PPT SCIENCE.pptx 2025-2026 GRADE 5
PDF
IFIT3 RNA-binding activity primores influenza A viruz infection and translati...
PDF
Unveiling a 36 billion solar mass black hole at the centre of the Cosmic Hors...
PPT
POSITIONING IN OPERATION THEATRE ROOM.ppt
PPTX
GEN. BIO 1 - CELL TYPES & CELL MODIFICATIONS
PPTX
cpcsea ppt.pptxssssssssssssssjjdjdndndddd
. Radiology Case Scenariosssssssssssssss
famous lake in india and its disturibution and importance
Protein & Amino Acid Structures Levels of protein structure (primary, seconda...
2. Earth - The Living Planet Module 2ELS
Viruses (History, structure and composition, classification, Bacteriophage Re...
INTRODUCTION TO EVS | Concept of sustainability
Introduction to Fisheries Biotechnology_Lesson 1.pptx
TOTAL hIP ARTHROPLASTY Presentation.pptx
AlphaEarth Foundations and the Satellite Embedding dataset
neck nodes and dissection types and lymph nodes levels
Classification Systems_TAXONOMY_SCIENCE8.pptx
ognitive-behavioral therapy, mindfulness-based approaches, coping skills trai...
Formation of Supersonic Turbulence in the Primordial Star-forming Cloud
ECG_Course_Presentation د.محمد صقران ppt
G5Q1W8 PPT SCIENCE.pptx 2025-2026 GRADE 5
IFIT3 RNA-binding activity primores influenza A viruz infection and translati...
Unveiling a 36 billion solar mass black hole at the centre of the Cosmic Hors...
POSITIONING IN OPERATION THEATRE ROOM.ppt
GEN. BIO 1 - CELL TYPES & CELL MODIFICATIONS
cpcsea ppt.pptxssssssssssssssjjdjdndndddd

Segmentation - based Historical Handwritten Word Spotting using document-specific Local Features

  • 1. SEGMENTATION-BASED HISTORICAL HANDWRITTEN WORD SPOTTING USING DOCUMENT-SPECIFIC LOCAL FEATURES KONSTANTINOS ZAGORIS1,2 IOANNIS PRATIKAKIS1 BASILIS GATOS2 Visual Computing Group Democritus University of Thrace Dept. of Electrical and Computer Engineering Xanthi, Greece National Centre of Scientific Research “Demokritos” Institute of Informatics and Telecommunications Athens, Greece 1 2
  • 2. WHAT IS KEY WORD SPOTTING? • It is the task of identifying locations on a document image which have high probability to contain an instance of a queried word • without explicitly recognizing it. • It is related to Content-Based Image Retrieval systems. • Searching a word image from a set of unindexed document images using the image content as the only information source.
  • 3. CURRENT LITERATURE TRENDS • Currently there are two distinct trends. (i) Segmentation-based and (ii) Segmentation-free approaches. • Their fundamental difference concerns the search space - segmented word images (segmentation-based) - complete document image (segmentation-free). We address the word spotting problem with a segmentation-based approach.
  • 4. PREVIOUS LITERATURE Rath and Manmatha calculate two families of feature sets. • scalar type features that include aspect ratio, area, etc. • profile-based features that are based on horizontal and vertical words projections and the upper and lower word profiles. Zagoris et. al. created a similar set of profile-based features but: • encoded Discrete Cosine Transformation and • quantize through the Gustafson - Kessel fuzzy algorithm. Rodriguez and Perronnin extract features from a sliding window, based on the first gradient and inspired by the SIFT keypoint descriptor.
  • 5. BAG-OF-VISUAL WORDS MODEL Recently, there was an influx of works based on the local features in the form of the Bag-of-Visual Words model. Llados et. al. evaluate the performance of various word descriptors : • a bag of visual words procedure (BoVW), • a pseudo-structural representation based on Loci Features, • a structural approach by using words as graphs, and • sequences of column features based on DTW. They found that the statistical approach of the BoVW produces the best results, although the memory requirements to store the descriptors are significant.
  • 6. PROBLEMS WITH CURRENT LOCAL FEATURES Most works using local features are based on the Scale Invariant Feature Transform (SIFT) in order to describe the local information • The original application of these local features are the natural images which they have many structural differences compared to document images • The detection of the most powerful edges through pyramid scaling creates local points between text lines. • Invariant properties in the descriptor results in noise amplification so they are more sensitive to the noise and the complex texture of the background.
  • 7. TEXTURE VS SHAPE FEATURES Features for word spotting which rely only on word shape characteristics are not effective in dealing with a document collection created by different writers, containing significant writing style variations. Although slant and skew preprocessing techniques can reduce the shape variations, they cannot eliminate the problem as the whole structure of the word is different in most of the cases. In this respect, we argue that although the shape information is meaningful, the texture information in a spatial context is more reliable.
  • 8. DOCUMENT SPECIFIC LOCAL FEATURES (DSLF) Taking into account the aforementioned considerations, we propose: • novel local features which are specific for documents and a • matching procedure that does not rely on codebook creation (as on BoVW).
  • 9. PROPOSED WORD SPOTTING FRAMEWORK Document Dataset Word Image Segmentation Word Image DSLF Calculation Matching Process Display Results Database DSLF Calculation ONLINE OFFLINE
  • 10. KEYPOINT DETECTION AND SELECTION Keypoint Detection CCs Analysis Local Point Selection Gradient Orientation Quantization Convex Hull Corner Detection Entropy-based Final Keypoints Keypoint Filtering
  • 11. KEYPOINT DETECTION AND SELECTION original document image orientation of the gradient vector quantization of the gradient vector orientation initial keypoints final keypoints
  • 12. FEATURE EXTRACTION • The feature for the local keypoint is calculated upon the quantized gradient angles • An area of 18x18 pixels around the kP, is divided into 9 cells with size 6x6 for each of them. • Each cell is represented by a 3-bin histogram (each bin corresponds to a quantization level). • Each pixel accumulates a vote in the corresponding angle histogram bin. The strength of voting depends on the norm of the gradient vector and on the distance from the location of local point as shown at the following equation: x, y x, y x, y V  s  G     2 2 , 2 1 LP LP 3 9 2 x y x x y y s       • The task of the 푠푥,푦 variable is to weigh the pixel participation to the histogram taking into account its distance from the kP.
  • 13. MATCHING PROCEDURE • In the case of segmentation-based word spotting, the aim is to match the query keypoints to the corresponding keypoints of any word image in the document. • Local Proximity Nearest Neighbor (LPNN) search is implemented. • The advantage of LPNN search is two-fold:  it enables a search in focused areas instead of searching in a brute force manner and  it goes beyond the typical use of a descriptor by the incorporation of spatial context in the local search addressed.
  • 14. MATCHING PROCEDURE Update the location for each keypoint to a new normalized space: ′ = 푝푥푖 푝푥푖 −푐푥 퐷푥 ′ = , 푝푦푖 푝푦푖 −푐푦 퐷푦 where: 푐푥, 푐푦 = 푘 푖=푥1 푖 푝푘 , 푘 푖=푦1 푖 푝푘 퐷푥 = 푘 푝푥푖 푖=1 − 푐푥 푘 , 퐷푦 = 푘 푝푦푖 푖=1 − 푐푦 푘 k denotes the total number of the keypoints in a word image.
  • 15. EVALUATION - DATASETS BENTHAM DATASET • It consists of 50 high quality (approximately 3000 pixel width and 4000 pixel height) handwritten manuscripts written by Jeremy Bentham (1748- 1832). • The variation of the same word is extreme and involves writing style, font size, noise as well as their combination.
  • 16. EVALUATION - DATASETS WASHINGTON DATASET • It consists of 20 document images from George Washington Collection of the Library of Congress • The documents are were scanned from microfilm in 300 dpi resolution.
  • 17. EVALUATION STRATEGY • Two evaluation metrics: Precision at the k Top Retrieved words (P@k) and the Mean Average Precision (MAP). • P@5 is the precision at top 5 retrieved words. This metric defines how successfully the algorithms produce relevant results to the first 5 positions of the ranking list • MAP is a typical measure for the performance of information retrieval systems • For the experiments, the word image segmentation information is taken from the ground truth corpora. • The total word image queries for the Washington dataset was 1570 and for the Bentham dataset was 3668. • Both query sets contain words appearing in various frequencies and sizes • Evaluated against two previous segmentation-based profile-based strategies • Then, in order to highlight the advantage of the proposed DSLF, it was replaced by the SIFT but the proposed matching algorithm remained the same.
  • 18. OVERALL PERFORMANCE EVALUATION RESULTS Washington 0.660 0.637 0.631 0.600 0.608 0.577 0.436 0.440 0.800 0.700 0.600 0.500 0.400 0.300 0.200 0.100 0.000 P@5 MAP WS CSPD SIFT Proposed Method Bentham 0.701 0.680 0.642 0.630 0.629 0.615 0.528 0.506 0.800 0.700 0.600 0.500 0.400 0.300 0.200 0.100 0.000 P@5 MAP WS CSPD SIFT Proposed Method
  • 19. CONCLUSION In this work, novel local features are proposed driven by the challenges presented in historical handwritten word spotting scenarios. The proposed method outperformed both the profile-based strategies and the SIFT local features. Moreover, a matching procedure was presented based on Local Proximity Nearest Neighbour, that augments performance in terms of effectiveness and efficiency incorporating spatial context. The proposed framework achieves better performance after a consistent evaluation against two profile-based approaches as well as the proposed approach with the popular SIFT local features in two different handwritten datasets.

Editor's Notes

  • #5: Although there is an abundance of systems suitable for both modern and historical printed material, very few of these systems are suitable to handwritten documents due to noise sensitivity, character variation and text layout complexity:
  • #7: we argue that it is not beneficial in document images to incorporate invariant properties in the descriptor of the local points as it results in noise amplification. We believe that the features that are invariant to rotation are more sensitive to the noise and the complex texture of the background.
  • #8: Features for word spotting which rely only on word shape characteristics are not effective in dealing with a document collection created by different writers, containing significant writing style variations. Although slant and skew preprocessing techniques can reduce the shape variations, they cannot eliminate the problem as the whole structure of the word is different in most of the cases. In this respect, we argue that although the shape information is meaningful, the texture information in a spatial context is more reliable.
  • #9: For the sake of clarity, it is worth to note that since the focus of this work is on features extraction and matching, the segmented word images used in the proposed approach are achieved from the available ground truth dataset without involving any particular word image segmentation method.
  • #10: But initially let’s look the proposed word spotting framework
  • #15: In the next stage, the LPNN for each keypoint that resides on the query image is addressed. LPNN is realized in a search area which is computed by taking into account a percentage (25%) of the already calculated distances Dx,Dy. During search, if there is one or more word keypoints in the proximity of the query keypoint under consideration, the Euclidean distance between their descriptors is calculated and the minimum distance is kept. This is repeated for each keypoint in the query image. The final similarity measure is the sum of all the minimal distances. If there is not a local point in its proximity then a penalty value is added to the similarity measure and it is equal to maximum Euclidean distance that can be calculated between the keypoint descriptors. As a final stage, the system presents to the user all the word images based on ascending sort order of the calculated similarity measure.
  • #19: The proposed method outperformed both the profile-based strategies and the SIFT local features. It is worth to note, that the profile-based features were applied in words that were binarized, denoised, de-skew and de-slant as opposed to the local features that were applied to the original word images. Moreover, although the SIFT descriptor contains more information than the proposed local features (128 values against only 27), the latter performed better in both datasets