This commit introduces a new Help page to the PunimTag application, providing users with detailed guidance on various features and workflows. The navigation has been updated to include the Help page, improving accessibility to support resources. Additionally, the user guide has been refined to remove outdated workflow examples, ensuring clarity and relevance. The Dashboard page has also been streamlined for a cleaner interface. Documentation has been updated to reflect these changes.
14 KiB
PunimTag Web - User Guide
Complete guide to using the PunimTag web application
Table of Contents
- Getting Started
- Navigation Overview
- Page-by-Page Guide
- Workflow Examples
- Tips & Best Practices
- Troubleshooting
Getting Started
First Time Setup
-
Start the Application
- Ensure Redis is running
- Start the backend API server
- Start the frontend development server
- Open your browser to
http://localhost:3000
-
Login
- Default credentials:
- Username:
admin - Password:
admin
- Username:
- ⚠️ Important: Change these credentials in production!
- Default credentials:
-
Initial Workflow
- Scan → Import your photos
- Process → Detect faces in photos
- Identify → Name the people in your photos
- Auto-Match → Automatically match similar faces to previously identified people
- Search → Find photos by people, dates, or tags
- Tags → Tag photos and manage tags
Navigation Overview
The application uses a left sidebar navigation with the following pages:
- 🏠 Dashboard - Overview and statistics
- 📁 Scan - Import photos from folders or upload files
- ⚙️ Process - Detect and process faces in photos
- 👤 Identify - Manually identify people in faces
- 🤖 Auto-Match - Automatically match similar faces to previously identified faces
- 🔍 Search - Search and filter photos
- ✏️ Modify - Edit person information
- 🏷️ Tags - Tag photos and manage photo tags
- 🔧 Faces Maintenance - Manage face data
- ⚙️ Settings - Application settings
Page-by-Page Guide
Login Page
Purpose: Authenticate and access the application
Features:
- Username and password login
- JWT-based authentication
- Automatic redirect to dashboard after login
How to Use:
- Enter your username (default:
admin) - Enter your password (default:
admin) - Click "Login" button
- You'll be redirected to the Dashboard
Notes:
- Session persists until logout
- Default credentials are for development only
- Change credentials in production for security
Dashboard
Purpose: Overview of your photo collection and statistics
Features:
- Collection statistics
- Quick access to main features
- Recent activity summary
How to Use:
- View statistics about your photo collection
- Navigate to other pages using the sidebar
- Monitor overall system status
Current Status: Basic implementation - more features coming in future updates
Scan Page
Purpose: Import photos into your collection from folders or upload files
Features:
- Folder Selection: Browse and select folders containing photos
- Recursive Scanning: Option to scan subfolders recursively
- Duplicate Detection: Automatically detects and skips duplicate photos
- Real-time Progress: Live progress tracking during import
How to Use:
Folder Scan
- Click "Browse Folder" button
- Select a folder containing photos
- Toggle "Recursive" if you want to include subfolders
- Click "Start Scan" button
- Monitor progress in the progress bar
- View results (photos added, existing photos skipped)
What Happens:
- Photos are copied to
data/uploadsdirectory - EXIF metadata is extracted (date taken, orientation, etc.)
- Duplicate detection by checksum
- Photos are added to database
- Faces are NOT detected yet (use Process page for that)
Tips:
- Large folders may take time - be patient!
Process Page
Purpose: Detect faces in imported photos and generate face encodings
Features:
-
**face detection method used -
retinaface- Best accuracy, medium speed -
**Face recognition model used -
ArcFace- Best accuracy, medium speed -
Batch Size: Configure how many photos to process at once
-
Real-time Progress: Live progress tracking
-
Job Cancellation: Stop processing if needed
How to Use:
- Optionally set Batch Size (leave empty for default)
- Click "Start Processing" button
- Monitor progress:
- Progress bar shows overall completion
- Photo count shows photos processed
- Face count shows faces detected and stored
- Wait for completion or click "Stop Processing" to cancel
What Happens:
- DeepFace analyzes each unprocessed photo
- Faces are detected and located
- 512-dimensional face encodings are generated
- Face metadata is stored (confidence, quality, location)
- Photos are marked as processed
Tips:
- You can cancel and resume later
Identify Page
Purpose: Manually identify people in detected faces
Features:
- Face Navigation: Browse through unidentified faces
- Person Creation: Create new person records
- Similar Faces Panel: View similar faces for comparison
- Confidence Display: See match confidence percentages
- Date Filtering: Filter faces by date taken or processed
- Unique Faces Filter: Hide duplicate faces of same person
- Face Information: View face metadata (confidence, quality, detector/model)
How to Use:
Basic Identification:
- Navigate to Identify page
- View the current face on the left panel
- Select existing person from the drop down list or create new person below
- Enter person information:
- First Name (required)
- Last Name (required)
- Middle Name (optional)
- Maiden Name (optional)
- Date of Birth (required)
- Click "Identify" button to identify the face
Using Similar Faces:
- Toggle "Compare" checkbox to show similar faces
- View similar faces in the right panel
- See confidence percentages (color-coded)
- Select similar faces to bulk identify with the current left face
- Click "Identify" button to bulk identify left and all selected on the right faces to that person.
Navigation:
- Use "Next" button to move to next unidentified face
- Use "Back" button to go to previous face
- Use filters to narrow down faces to identify
Unique Faces Filter:
- Check "Unique faces only" to hide duplicates
- Shows only one representative face per person
- Similar faces panel remains unfiltered
Confidence Colors:
- 🟢 80%+ = Very High (Almost Certain)
- 🟡 70%+ = High (Likely Match)
- 🟠 60%+ = Medium (Possible Match)
- 🔴 50%+ = Low (Questionable)
- ⚫ <50% = Very Low (Unlikely)
Tips:
- Use similar faces to identify groups of photos
- Date filtering helps focus on specific time periods
- Unique faces filter reduces clutter
- Confidence scores help prioritize identification
Auto-Match Page
Purpose: Automatically match unidentified faces to identified people
Features:
- Person-Centric View: Shows identified person on left, matches on right
- Checkbox Selection: Select which faces to identify
- Confidence Display: Color-coded match confidence
- Batch Identification: Identify multiple faces at once
- Navigation: Move between different people
How to Use:
Manual Match Workflow:
- Navigate to Auto-Match page
- Faces load automatically on page load
- View identified person on the left panel
- View matching unidentified faces on the right panel
- Check boxes next to faces you want to identify
- Click "Save changes for [Person Name]" button
- Use "Next" and "Back" buttons to navigate between people
*Automatic Match Workflow:
- Navigate to Auto-Match page
- Click Run Auto-Match button
- All unidentified faces will be matched to identified faces based on the following clitiria: simillarity higher than 70% picture quality higher than 50% profile faces are excluded for better accuracy
Understanding Matches:
- Left panel shows an identified person with their reference face
- Right panel shows unidentified faces that match this person
- Confidence percentages show match quality
- Only faces above threshold are shown
Selecting Faces:
- Check boxes to select faces to identify
- Uncheck boxes to deselect
- Previously identified faces are pre-checked
- Selections persist when navigating between people
Saving Changes:
- Click "Save changes" button in left panel
- Only checked faces are identified
- Changes are saved immediately
- You can go back and uncheck faces to unidentify them
Navigation:
- "Next" button moves to next person (disabled on last person)
- "Back" button moves to previous person (disabled on first person)
- Navigation preserves checkbox selections
Tips:
- Review matches carefully before saving
- Use confidence scores to guide decisions
- You can correct mistakes by going back and unchecking
- High confidence matches (>70%) are usually accurate
Search Page
Purpose: Search and filter photos by various criteria
Features:
- People Filter: Filter by identified people
- Date Filter: Filter by date taken or date added
- Tag Filter: Filter by photo tags
- Folder Filter: Filter by source folder
- Photo Grid: Virtualized grid of matching photos
- Pagination: Navigate through search results
How to Use:
Basic Search:
- Navigate to Search page
- Use filter dropdowns to set criteria:
- People: Select one or more people
- Date Taken: Set date range
- Date Added: Set date range
- Tags: Select one or more tags
- Folder: Select source folder
- Click "Search" or filters apply automatically
- View matching photos in the grid
- Click on photos to view details
Filters:
- Multiple filters can be combined
- All filters work together (AND logic)
- Clear individual filters or reset all
Photo Grid:
- Virtualized for performance with large result sets
- Scroll to load more photos
- Click photos for details or actions
Tips:
- Combine filters for precise searches
- Use date ranges to find photos from specific periods
- Tag filtering helps find themed photos
- People filter is most useful after identification
Modify Page
Purpose: Edit person information and manage person records
Features:
- Person Selection: Choose person to edit
- Information Editing: Update names and date of birth
- Face Management: View and manage person's faces
- Person Deletion: Remove person records (with confirmation)
How to Use:
Editing Person Information:
- Navigate to Modify page
- Select person from dropdown
- Edit information fields:
- First Name
- Last Name
- Middle Name
- Maiden Name
- Date of Birth
- Click "Save Changes" button
Managing Faces:
- View all faces associated with person
- See face thumbnails
- Remove faces from person if needed (unmatch)
Tips:
- Use this to correct mistakes in identification
- Update names if you learn more information
- Be careful with deletion - it's permanent
Tags Page
Purpose: Manage photo tags and tag-photo relationships
Features:
- Tag List: View all existing tags
- Tag Creation: Create new tags
- Tag Editing: Edit tag names
- Tag Deletion: Remove tags
- Photo-Tag Linkage: Assign tags to photos
How to Use:
Creating Tags:
- Navigate to Tags page
- Click "Manage Tags" button
- Enter new tag name
- Click "Add tag" button
Managing Tags:
- Click "Manage Tags" button
- View all tags in a list
- Edit tag names by clicking edit button
- Delete tags by selecting it's check box and clicking "Delete selected tags" button
- ⚠️ Warning: Deleting a tag removes it from all photos
Assigning Tags to Photos:
- Select photos from Tags page(or from Search page)
- Use tag assignment interface
- Tags can be assigned to multiple photos at once by selecting multiple photos and clicking "Tag Selected Photos" button
- Tags can be assigned to all photos in a specific folder at once by clicking the linkage icon next to the folder name
- Tags can be assigned to a single photo by clicking the linkage icon on the right of each photo
Tips:
- Use descriptive tag names
- Create tags for events, locations, themes
- Tags help organize and find photos later Note: Tags are case insensitive!*********
Faces Maintenance Page
Purpose: Remove unwanted faces - mainly due to low quality face detections
Features:
- Face List: View all faces in database
- Face Filtering: Filter quality
- Face Deletion: Remove unwanted faces
- Bulk Operations: Perform actions on multiple faces
How to Use:
Viewing Faces:
- Navigate to Faces Maintenance page
- View list of all faces
- See face thumbnails and metadata
- Filter faces by quality (delete faces with low quality)
Deleting Faces:
- Select faces to delete
- Click "Delete Selected" button
- Confirm deletion
- ⚠️ Warning: Deletion is permanent
Bulk Operations:
- Select multiple faces
- Perform bulk actions (delete, unidentify, etc.)
- Useful for cleaning up database
Tips:
- Remove low-quality face detections
- Regular maintenance keeps database clean
Settings Page
Purpose: Configure application settings and preferences
Complete Workflow: Import and Identify Photos
-
Scan Photos
- Go to Scan page
- Browse folder or upload files
- Wait for import to complete
-
Process Faces
- Go to Process page
- Select detector and model (or use defaults)
- Click "Start Processing"
- Wait for face detection to complete
-
Identify People
- Go to Identify page
- Browse through faces
- Create person records and identify faces
- Use similar faces to help identification
-
Auto-Match Remaining
- Go to Auto-Match page
- Review automatic matches
- Select faces to identify
- Save changes
-
Search and Organize
- Go to Search page
- Filter by people, dates, or tags
- Find specific photos
- Assign tags for organization
Last Updated: October 2025
Version: 1.0
Application: PunimTag Web
For technical details and development information, see the main README.md