Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
08a9bd1
Add 4k_dummy0xFF.img
stevehuang82 Jan 17, 2025
9dbcbc1
add yolov8n gender classification example
kris-himax Feb 13, 2025
3c7cf77
add yolo11n od no post-proccessing inference example
kris-himax Feb 20, 2025
6bd00a3
Update kws_pdm_record.mk about wrong version cmsisnn
kris-himax Apr 16, 2025
9448d1f
update readme
kris-himax Aug 18, 2025
d4570e0
Update README.md
kris-himax Oct 15, 2025
69f1caf
feat: Add face embedding firmware app (SCRFD + MobileFaceNet 128D)
suharvest Dec 15, 2025
70880ff
feat: Add model conversion and quantization tools
suharvest Dec 15, 2025
538c5ec
feat: Add face recognition debug tools
suharvest Dec 15, 2025
c4144b3
docs: Update documentation and build scripts
suharvest Dec 15, 2025
29acf7d
chore: Update build config and prebuilt libraries
suharvest Dec 15, 2025
c5b5b4e
docs: Add flash utility script and development guides
suharvest Dec 15, 2025
596bfba
fix: Correct face alignment preprocessing for accurate recognition
suharvest Dec 15, 2025
4d38405
feat: Add debug logging and frame stability tracking to face database
suharvest Dec 15, 2025
72b3c1e
Merge face-embedding features from Seeed_Grove_Vision_AI_Module_V2
suharvest Dec 15, 2025
0d66d0b
chore: update sscma_micro to latest (c7ed52a)
suharvest Dec 15, 2025
3551515
docs: update tflm_face_embedding README and config
suharvest Dec 15, 2025
82d739b
docs: add demo GIF to tflm_face_embedding README
suharvest Dec 15, 2025
ac5246f
docs: Add SSCMA integration analysis for face embedding
suharvest Dec 15, 2025
639f0c7
perf: Optimize MobileFaceNet tensor arena from 1200KB to 700KB
suharvest Dec 15, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 50 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,50 @@
# Prerequisites
*.d

# Compiled Object files
*.slo
*.lo
*.o
*.obj

# Precompiled Headers
*.gch
*.pch

# Compiled Dynamic libraries
*.so
*.dylib
*.dll

# Fortran module files
*.mod
*.smod

# Compiled Static libraries
*.lai
*.la
*.lib

# Executables
*.exe
*.out
*.app

# Various build files
EPII_CM55M_APP_S/obj_*/**
we2_image_gen_local/output_*/**
we2_image_gen_local/Images*.txt
we2_image_gen_local/secureboot_tool/*
*.elf
*.map
*.img

# macOS
.DS_Store
*.DS_Store

# VScode
.vscode
.vscode/

# Logs
*.log
Expand All @@ -18,4 +60,10 @@ we2_image_gen_local/output_case1_sec_wlcsp/**
we2_image_gen_local/Images_ForSendData.txt
we2_image_gen_local/Images.txt

*.img
# Project specific
model_zoo/tflm_face_recognition/calibration_data/
*.bin
*.pb
.venv/
debug_output/
*.jpg
Loading