shimaa22 commited on
Commit
a0103b3
·
verified ·
1 Parent(s): 3592f93

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +25 -13
README.md CHANGED
@@ -1,26 +1,38 @@
1
  ---
2
  license: apache-2.0
3
  language:
4
- - en
 
 
 
 
 
 
 
5
  ---
6
- # 🩺 Finger Vein Feature Extractor using MobileNet + Siamese Network
7
 
8
- This pretrained model is designed for **finger vein recognition**. It uses a **MobileNet-based feature extractor** trained on finger images to extract deep features.
 
 
9
 
10
  ## 🔧 How It Works:
11
- - The model first extracts features from input finger vein images using **MobileNet**.
12
- - Then, these features are used to form **image pairs**.
13
- - A **Siamese Network** is trained on these pairs to learn a similarity metric.
14
- - Finally, the system can classify whether two finger vein images belong to the same person or not.
15
 
16
  ## 📦 Use Cases:
17
- - Biometric authentication
18
- - Finger vein matching or verification
19
- - Medical/Forensic identification tasks
20
 
21
  ## 🖼️ Input:
22
- - RGB finger vein image, typically resized to 224x224
 
23
 
24
  ## 📤 Output:
25
- - Feature vector (if using the encoder only)
26
- - Or: match / no-match (if using full Siamese classification)
 
 
 
 
1
  ---
2
  license: apache-2.0
3
  language:
4
+ - en
5
+ tags:
6
+ - finger-vein
7
+ - biometrics
8
+ - mobilenet
9
+ - siamese-network
10
+ - keras
11
+ - image-processing
12
  ---
 
13
 
14
+ # 🩺 Finger Vein Feature Extractor using MobileNet
15
+
16
+ This pretrained model is designed for **finger vein recognition**. It uses a **MobileNet-based feature extractor** trained on finger images to extract deep biometric features.
17
 
18
  ## 🔧 How It Works:
19
+ - The model first extracts features from finger vein images using **MobileNet**.
20
+ - These features are then used to form **image pairs**.
21
+ - A **deep neural network** (e.g. Siamese) is trained on these pairs to learn a similarity metric.
22
+ - Finally, the system classifies whether two finger vein images belong to the **same person** or not.
23
 
24
  ## 📦 Use Cases:
25
+ - 🔐 Biometric authentication systems
26
+ - 🔍 Finger vein matching or verification
27
+ - 🧬 Medical/Forensic identification tasks
28
 
29
  ## 🖼️ Input:
30
+ - RGB finger vein image (resized to **224×224**)
31
+ - Normalized to [0, 1]
32
 
33
  ## 📤 Output:
34
+ - Feature vector (if using encoder only)
35
+ - Or: **Match / No-match** decision (in Siamese setup)
36
+
37
+ ## 💾 Model Format:
38
+ - `model.keras` — Keras format for MobileNet feature extractor