[IEEE T-MM] RSBM: Decoding the Core of Family Kinship through Tri-Subject Verification

Tri-Subject Kinship Verification: Understanding the Core of A Family

2022-03-09
Qin, Xiaoqian, Tan, Xiaoyang, Chen, Songcan
Summary
Problem
Method
Results
Takeaways
Abstract

This paper introduces a specialized framework for Tri-Subject Kinship Verification, focusing on the child-parents (one-versus-two) relationship. The authors propose a Relative Symmetric Bilinear Model (RSBM) and a large-scale database (TSKinFace) to achieve SOTA performance in identifying familial ties from facial images.

TL;DR

While most AI systems try to determine if two people are related (Bi-Subject), this work shifts the focus to the nuclear family unit: verifying a child against both parents simultaneously (Tri-Subject). By introducing the Relative Symmetric Bilinear Model (RSBM) and the TSKinFace dataset, the researchers achieved over 85% accuracy, proving that "knowing both parents" is the key to solving the hardest kinship puzzles.

Background: Beyond One-on-One

Kinship verification is notoriously difficult due to the "appearance gap"—a daughter doesn't look exactly like her father due to age and gender differences. However, biology gives us a hint: a child inherits 50% of DNA from each parent. Most prior SOTA methods ignored this "tri-relationship," treating a family as a collection of independent pairs. This paper argues that the child-parents relationship is the "core of a family" and must be modeled as a single, dependent structure.

The Problem: The Partial Resemblance Paradox

Current methods fail because they assume a child looks "equally" like both parents. In reality, a child often favors one parent’s features (e.g., "having the father's eyes").

  • Prior Work Limitation: Rigid metric learning (like ITML or LMNN) forces a distance that doesn't account for this asymmetric resemblance.
  • The Gap: How do we model the conditional similarity where one parent "referees" the resemblance of the other?

Methodology: The RSBM Framework

The authors propose a three-stage pipeline:

  1. Feature Extraction: Overlapping patches are encoded using SIFT.
  2. Spatially Voted Feature Selection (FS): Instead of the usual Group Lasso (where patches are forced together), the authors use "competition before grouping." Individual features compete, and patches with the most "winning" features are selected.
  3. RSBM Core: The model uses a bilinear function . Crucially, it uses a softmax function to weight the similarity: if the system detects the child looks more like the father, it increases the weight of the father-child similarity score in the final verification.

Model Architecture Figure 1: The overall architecture showing patch extraction, feature selection, and the bilinear similarity modeling.

Experimental Results & SOTA Comparison

The authors curated the TSKinFace database, the largest of its kind with over 1,000 families. The results were clear:

  • Accuracy: The RSBM-block-FS model reached 85.4% avg, compared to just 53.4% for a standard SVM.
  • Gender Bias: Verification for sons (FM-S) was consistently more accurate than for daughters (FM-D), aligning with psychological theories that kin signals in daughters are often more subtle.
  • Boosting 1-vs-1: Interestingly, if you are trying to verify a Mother-Daughter relationship, adding the Father's image as a "reference" (even if he isn't the primary subject) significantly improves accuracy.

Verification Performance Table III: Comparison against SOTA. Notice the significant jump from ABM to RSBM-block-FS.

Deep Insight: Visualizing "Relative Similarity"

One of the most compelling parts of the study is the visualization. By multiplying the learned priors back into the images, we can see the model "learning" which parent provides the primary visual evidence for kinship in a specific family.

Relevance Visualization Figure 6: Visualizing the "resemblance prior"—the model effectively highlights which parent's features are more dominant for a given child.

Conclusion & Perspective

This work proves that Tri-Subject verification is not just a sub-field, but a more robust way to handle the noise of age and gender in computer vision.

  • Takeaway: Future AI for missing children or social media tagging shouldn't look for pairs—they should look for families.
  • Future Work: The authors suggest extending this to "General Family Structures" (grandparents, siblings).
  • Limitation: The model currently relies on SIFT/Hand-crafted features; a transition to end-to-end Deep Bilinear Pooling could potentially push these accuracies toward the 95%+ range required for law enforcement applications.

Find Similar Papers

Try Our Examples

  • Search for recent papers on tri-subject or multi-subject kinship verification using deep learning or vision transformers after 2020.
  • Which study first introduced the concept of Bilinear Models for facial similarity, and how does the trace-norm regularization used in this paper differ from standard Mahalanobis distance learning?
  • Explore if the RSBM or similar relative resemblance models have been applied to cross-generation aging facial recognition or missing person identification in social media datasets.
Contents
[IEEE T-MM] RSBM: Decoding the Core of Family Kinship through Tri-Subject Verification
1. TL;DR
2. Background: Beyond One-on-One
3. The Problem: The Partial Resemblance Paradox
4. Methodology: The RSBM Framework
5. Experimental Results & SOTA Comparison
6. Deep Insight: Visualizing "Relative Similarity"
7. Conclusion & Perspective