-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
250 lines (239 loc) · 14 KB
/
Copy pathindex.html
File metadata and controls
250 lines (239 loc) · 14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Mac Vision Tools is a macOS menu bar app for real-time local computer vision, object detection, emotion detection, privacy monitoring, and focus tracking.">
<title>Mac Vision Tools</title>
<link rel="icon" type="image/png" sizes="32x32" href="/assets/favicon-32.png">
<link rel="apple-touch-icon" sizes="180x180" href="/assets/apple-touch-icon.png">
<link rel="manifest" href="/assets/site.webmanifest">
<meta name="theme-color" content="#111819">
<link rel="stylesheet" href="website/styles.css">
</head>
<body>
<header class="site-header">
<a class="brand" href="#top" aria-label="Mac Vision Tools home">
<span class="brand-mark"></span>
<span>Mac Vision Tools</span>
</a>
<nav class="site-nav" aria-label="Primary navigation">
<a href="#modes">Modes</a>
<a href="#models">Models</a>
<a href="#privacy">Privacy</a>
<a href="privacy/">Policy</a>
<a href="#download">Download</a>
</nav>
</header>
<main id="top">
<section class="hero" aria-labelledby="hero-title">
<div class="screenshot-field" aria-hidden="true">
<img class="shot shot-standard" src="images/standard.png" alt="">
<img class="shot shot-emotion" src="images/emotion.png" alt="">
<img class="shot shot-privacy" src="images/privacy.png" alt="">
</div>
<div class="hero-shade"></div>
<div class="hero-copy">
<p class="eyebrow">Local Core ML vision for macOS</p>
<h1 id="hero-title">Mac Vision Tools</h1>
<p class="hero-text">A menu bar workspace for real-time object detection, emotion monitoring, privacy guardrails, and focus sessions from camera or screen capture.</p>
<div class="hero-actions">
<a class="button primary" href="https://github.com/christofilojohn/MacVisionTools">GitHub Repo</a>
<a class="button secondary" href="https://github.com/christofilojohn/MacVisionTools/releases">Download Release</a>
</div>
</div>
</section>
<section id="modes" class="section mode-band" aria-labelledby="modes-title">
<div class="section-inner">
<div class="section-heading">
<p class="eyebrow">Four workflows</p>
<h2 id="modes-title">Built for live visual awareness</h2>
</div>
<div class="mode-grid">
<article class="mode-card accent-orange">
<span class="mode-label">Standard</span>
<h3>Object detection</h3>
<p>Run a bundled SSD MobileNet detector or bring your own Core ML model for labeled detections.</p>
</article>
<article class="mode-card accent-pink">
<span class="mode-label">Emotion</span>
<h3>Face emotion cues</h3>
<p>Detect faces first, classify the visible emotion, and keep a short recent history.</p>
</article>
<article class="mode-card accent-red">
<span class="mode-label">Privacy</span>
<h3>Presence threshold</h3>
<p>Count visible people and start the screen saver when your configured threshold is reached.</p>
</article>
<article class="mode-card accent-blue">
<span class="mode-label">Focus</span>
<h3>Attention timer</h3>
<p>Use native Apple Vision head-pose tracking to count focused time toward a session goal.</p>
</article>
</div>
</div>
</section>
<section class="section screenshot-section" aria-labelledby="screens-title">
<div class="section-inner">
<div class="section-heading">
<p class="eyebrow">Camera or screen</p>
<h2 id="screens-title">Choose the capture source and display style</h2>
</div>
<div class="screenshot-row">
<figure>
<img src="images/standard.png" alt="Mac Vision Tools standard detection window">
<figcaption>Windowed detection preview</figcaption>
</figure>
<figure>
<img src="images/emotion.png" alt="Mac Vision Tools emotion monitoring panel">
<figcaption>Emotion mode controls</figcaption>
</figure>
<figure>
<img src="images/privacy.png" alt="Mac Vision Tools privacy guard panel">
<figcaption>Privacy guard threshold</figcaption>
</figure>
<figure>
<img src="images/focus.png" alt="Mac Vision Tools focus timer panel">
<figcaption>Native focus tracking</figcaption>
</figure>
</div>
</div>
</section>
<section id="models" class="section models-band" aria-labelledby="models-title">
<div class="section-inner">
<div class="section-heading">
<p class="eyebrow">Model contracts</p>
<h2 id="models-title">Know what to train or drop in</h2>
<p>Mac Vision Tools accepts local Core ML models. Use these contracts when replacing a bundled model, training a new one, or choosing whether a file belongs in detection or emotion mode.</p>
</div>
<div class="model-grid">
<article class="model-card accent-orange">
<span class="mode-label">Bundled detector</span>
<h3>SSD MobileNet V2 COCO</h3>
<p>Used by Standard Detection and Privacy Guard for live object labels and person counting.</p>
<div class="spec-list">
<div class="spec-row">
<span class="spec-key">Task</span>
<span class="spec-value">Object detection</span>
</div>
<div class="spec-row">
<span class="spec-key">Classes</span>
<div class="spec-value">80 COCO object classes. Privacy Guard depends on the <code>person</code> class being present and named clearly.
<details class="class-list">
<summary>View the bundled COCO labels</summary>
<p>person, bicycle, car, motorcycle, airplane, bus, train, truck, boat, traffic light, fire hydrant, stop sign, parking meter, bench, bird, cat, dog, horse, sheep, cow, elephant, bear, zebra, giraffe, backpack, umbrella, handbag, tie, suitcase, frisbee, skis, snowboard, sports ball, kite, baseball bat, baseball glove, skateboard, surfboard, tennis racket, bottle, wine glass, cup, fork, knife, spoon, bowl, banana, apple, sandwich, orange, broccoli, carrot, hot dog, pizza, donut, cake, chair, couch, potted plant, bed, dining table, toilet, tv, laptop, mouse, remote, keyboard, cell phone, microwave, oven, toaster, sink, refrigerator, book, clock, vase, scissors, teddy bear, hair drier, toothbrush.</p>
</details>
</div>
</div>
<div class="spec-row">
<span class="spec-key">Input</span>
<span class="spec-value">Bundled export uses 320 x 320 image input. Custom detectors can use another size if the Core ML model is accepted by Vision.</span>
</div>
<div class="spec-row">
<span class="spec-key">Output</span>
<span class="spec-value">Vision object detections, or SSD-style multi-array boxes, scores, class ids, and count outputs compatible with the app parser.</span>
</div>
<div class="spec-row">
<span class="spec-key">Train/drop in</span>
<span class="spec-value">Train a Core ML detector with stable labels, select it in Standard Detection first, then use it for Privacy Guard only if it reliably emits <code>person</code>.</span>
</div>
</div>
</article>
<article class="model-card accent-pink">
<span class="mode-label">Bundled classifier</span>
<h3>EmotiEff emotion model</h3>
<p>Used by Emotion mode after Apple Vision finds and crops a visible face.</p>
<div class="spec-list">
<div class="spec-row">
<span class="spec-key">Task</span>
<span class="spec-value">Face emotion classification</span>
</div>
<div class="spec-row">
<span class="spec-key">Classes</span>
<span class="spec-value">7 bundled labels: <code>Angry</code>, <code>Disgust</code>, <code>Fear</code>, <code>Happy</code>, <code>Neutral</code>, <code>Sad</code>, and <code>Surprise</code>.</span>
</div>
<div class="spec-row">
<span class="spec-key">Input</span>
<span class="spec-value">Face crop supplied by Apple Vision and scaled to the bundled model's 224 x 224 image input. Train replacement classifiers on face crops, not full camera frames.</span>
</div>
<div class="spec-row">
<span class="spec-key">Output</span>
<span class="spec-value">Predicted class label and confidences compatible with Vision classification results.</span>
</div>
<div class="spec-row">
<span class="spec-key">Train/drop in</span>
<span class="spec-value">Export an image classifier as Core ML. Keep labels equivalent to the bundled emotions so colors, history, and summaries stay meaningful.</span>
</div>
</div>
</article>
<article class="model-card accent-blue">
<span class="mode-label">System framework</span>
<h3>Apple Vision</h3>
<p>Used for face detection, face crops, landmarks, and native focus tracking.</p>
<div class="spec-list">
<div class="spec-row">
<span class="spec-key">Classes</span>
<span class="spec-value">No trainable app classes. Apple Vision provides system observations instead of a bundled model file.</span>
</div>
<div class="spec-row">
<span class="spec-key">Drop in</span>
<span class="spec-value">Nothing to replace for Focus mode. The app uses the macOS framework automatically.</span>
</div>
</div>
</article>
<article class="model-card accent-green">
<span class="mode-label">User-selected</span>
<h3>Custom Core ML models</h3>
<p>Select local model files when experimenting with your own detector or classifier.</p>
<div class="spec-list">
<div class="spec-row">
<span class="spec-key">Formats</span>
<span class="spec-value"><code>.mlmodel</code>, <code>.mlpackage</code>, or compiled <code>.mlmodelc</code> files and folders selected from your Mac.</span>
</div>
<div class="spec-row">
<span class="spec-key">Detection</span>
<span class="spec-value">Use Standard Detection to validate labels and boxes. Privacy Guard needs a detector that emits people as <code>person</code>.</span>
</div>
<div class="spec-row">
<span class="spec-key">Emotion</span>
<span class="spec-value">Use a classifier with labels that match or clearly map to the 7 bundled emotion labels above.</span>
</div>
<div class="spec-row">
<span class="spec-key">Licensing</span>
<span class="spec-value">Custom models stay local, and you are responsible for permission to use or redistribute any model you select.</span>
</div>
</div>
</article>
</div>
<p class="model-note">For export details, see the <a href="docs/model-replacement.md">model replacement notes</a>. For bundled notices, see the app's Notices view and repository credits.</p>
</div>
</section>
<section id="privacy" class="section privacy-band" aria-labelledby="privacy-title">
<div class="section-inner split">
<div>
<p class="eyebrow">On-device by design</p>
<h2 id="privacy-title">Inference stays local</h2>
</div>
<div class="privacy-copy">
<p>Mac Vision Tools uses Core ML, Vision, AVFoundation, and ScreenCaptureKit on your Mac. Camera and screen frames are processed for live detections and are not saved by the app.</p>
<p>Permissions are explicit: camera capture needs Camera access, and screen capture needs Screen Recording access in macOS System Settings.</p>
<p>The app does not create accounts, run analytics, track users, or send camera or screen content to a server. Custom Core ML models selected by the user stay on the Mac.</p>
<p>Privacy Guard starts the macOS screen saver when the configured person threshold is reached. macOS controls whether the screen saver requires a password.</p>
<p><a class="text-link" href="privacy/">Read the full privacy policy</a></p>
</div>
</div>
</section>
<section id="download" class="section download-band" aria-labelledby="download-title">
<div class="section-inner download-inner">
<p class="eyebrow">Open source macOS utility</p>
<h2 id="download-title">Build it, run it, adapt it</h2>
<p>The app ships with bundled models and also accepts custom Core ML model files for mode-specific experiments.</p>
<div class="download-actions">
<a class="button primary" href="https://github.com/christofilojohn/MacVisionTools/releases">Download Release</a>
<a class="button secondary light" href="https://github.com/christofilojohn/MacVisionTools">Read on GitHub</a>
</div>
</div>
</section>
</main>
</body>
</html>