Spaces:
Running
on
L40S
Running
on
L40S
File size: 17,189 Bytes
d69879c e123fec d69879c e123fec d69879c e123fec 22b2a6e d69879c e123fec d69879c e123fec d69879c e123fec d69879c e123fec d69879c e123fec d69879c e123fec d69879c e123fec d69879c e123fec d69879c e123fec d69879c e123fec d69879c e123fec d69879c e123fec d69879c e123fec d69879c 0a5e214 e123fec 0a5e214 d69879c e123fec d69879c e123fec d69879c e123fec d69879c e123fec d69879c e123fec d69879c e123fec d69879c e123fec d69879c e123fec d69879c e123fec d69879c |
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 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 |
import React, { useState, useEffect, useRef, useCallback } from 'react';
import * as vision from '@mediapipe/tasks-vision';
import { facePoke } from '@/lib/facePoke';
import { useMainStore } from './useMainStore';
import useThrottledCallback from 'beautiful-react-hooks/useThrottledCallback';
import { landmarkGroups, FACEMESH_LIPS, FACEMESH_LEFT_EYE, FACEMESH_LEFT_EYEBROW, FACEMESH_RIGHT_EYE, FACEMESH_RIGHT_EYEBROW, FACEMESH_FACE_OVAL } from './landmarks';
import type { ActionMode, ClosestLandmark, LandmarkCenter, LandmarkGroup, MediaPipeResources } from '@/types';
export function useFaceLandmarkDetection() {
const setError = useMainStore(s => s.setError);
const previewImage = useMainStore(s => s.previewImage);
const handleServerResponse = useMainStore(s => s.handleServerResponse);
const faceLandmarks = useMainStore(s => s.faceLandmarks);
////////////////////////////////////////////////////////////////////////
// if we only send the face/square then we can use 138ms
// unfortunately it doesn't work well yet
// const throttleInMs = 138ms
const throttleInMs = 220
////////////////////////////////////////////////////////////////////////
// State for face detection
const [isMediaPipeReady, setIsMediaPipeReady] = useState(false);
const [isDrawingUtilsReady, setIsDrawingUtilsReady] = useState(false);
// State for mouse interaction
const [dragStart, setDragStart] = useState<{ x: number; y: number } | null>(null);
const [isDragging, setIsDragging] = useState(false);
const dragStartRef = useRef<{ x: number; y: number } | null>(null);
const [currentLandmark, setCurrentLandmark] = useState<ClosestLandmark | null>(null);
const [previousLandmark, setPreviousLandmark] = useState<ClosestLandmark | null>(null);
const [currentOpacity, setCurrentOpacity] = useState(0);
const [previousOpacity, setPreviousOpacity] = useState(0);
// Refs
const canvasRef = useRef<HTMLCanvasElement>(null);
const mediaPipeRef = useRef<MediaPipeResources>({
faceLandmarker: null,
drawingUtils: null,
});
const setActiveLandmark = useCallback((newLandmark: ClosestLandmark | undefined) => {
//if (newLandmark && (!currentLandmark || newLandmark.group !== currentLandmark.group)) {
setPreviousLandmark(currentLandmark || null);
setCurrentLandmark(newLandmark || null);
setCurrentOpacity(0);
setPreviousOpacity(1);
//}
}, [currentLandmark, setPreviousLandmark, setCurrentLandmark, setCurrentOpacity, setPreviousOpacity]);
// Initialize MediaPipe
useEffect(() => {
console.log('Initializing MediaPipe...');
let isMounted = true;
const initializeMediaPipe = async () => {
const { FaceLandmarker, FilesetResolver, DrawingUtils } = vision;
try {
console.log('Initializing FilesetResolver...');
const filesetResolver = await FilesetResolver.forVisionTasks(
"https://cdn.jsdelivr.net/npm/@mediapipe/tasks-vision@0.10.3/wasm"
);
console.log('Creating FaceLandmarker...');
const faceLandmarker = await FaceLandmarker.createFromOptions(filesetResolver, {
baseOptions: {
modelAssetPath: `https://storage.googleapis.com/mediapipe-models/face_landmarker/face_landmarker/float16/1/face_landmarker.task`,
delegate: "GPU"
},
outputFaceBlendshapes: true,
runningMode: "IMAGE",
numFaces: 1
});
if (isMounted) {
console.log('FaceLandmarker created successfully.');
mediaPipeRef.current.faceLandmarker = faceLandmarker;
setIsMediaPipeReady(true);
} else {
faceLandmarker.close();
}
} catch (error) {
console.error('Error during MediaPipe initialization:', error);
setError('Failed to initialize face detection. Please try refreshing the page.');
}
};
initializeMediaPipe();
return () => {
isMounted = false;
if (mediaPipeRef.current.faceLandmarker) {
mediaPipeRef.current.faceLandmarker.close();
}
};
}, []);
// New state for storing landmark centers
const [landmarkCenters, setLandmarkCenters] = useState<Record<LandmarkGroup, LandmarkCenter>>({} as Record<LandmarkGroup, LandmarkCenter>);
// Function to compute the center of each landmark group
const computeLandmarkCenters = useCallback((landmarks: vision.NormalizedLandmark[]) => {
const centers: Record<LandmarkGroup, LandmarkCenter> = {} as Record<LandmarkGroup, LandmarkCenter>;
const computeGroupCenter = (group: Readonly<Set<number[]>>): LandmarkCenter => {
let sumX = 0, sumY = 0, sumZ = 0, count = 0;
group.forEach(([index]) => {
if (landmarks[index]) {
sumX += landmarks[index].x;
sumY += landmarks[index].y;
sumZ += landmarks[index].z || 0;
count++;
}
});
return { x: sumX / count, y: sumY / count, z: sumZ / count };
};
centers.lips = computeGroupCenter(FACEMESH_LIPS);
centers.leftEye = computeGroupCenter(FACEMESH_LEFT_EYE);
centers.leftEyebrow = computeGroupCenter(FACEMESH_LEFT_EYEBROW);
centers.rightEye = computeGroupCenter(FACEMESH_RIGHT_EYE);
centers.rightEyebrow = computeGroupCenter(FACEMESH_RIGHT_EYEBROW);
centers.faceOval = computeGroupCenter(FACEMESH_FACE_OVAL);
centers.background = { x: 0.5, y: 0.5, z: 0 };
setLandmarkCenters(centers);
// console.log('Landmark centers computed:', centers);
}, []);
// Function to find the closest landmark to the mouse position
const findClosestLandmark = useCallback((mouseX: number, mouseY: number, isGroup?: LandmarkGroup): ClosestLandmark => {
const defaultLandmark: ClosestLandmark = {
group: 'background',
distance: 0,
vector: {
x: mouseX,
y: mouseY,
z: 0
}
}
if (Object.keys(landmarkCenters).length === 0) {
console.warn('Landmark centers not computed yet');
return defaultLandmark;
}
let closestGroup: LandmarkGroup | null = null;
let minDistance = Infinity;
let closestVector = { x: 0, y: 0, z: 0 };
let faceOvalDistance = Infinity;
let faceOvalVector = { x: 0, y: 0, z: 0 };
Object.entries(landmarkCenters).forEach(([group, center]) => {
const dx = mouseX - center.x;
const dy = mouseY - center.y;
const distance = Math.sqrt(dx * dx + dy * dy);
if (group === 'faceOval') {
faceOvalDistance = distance;
faceOvalVector = { x: dx, y: dy, z: 0 };
}
// filter to keep the group if it is belonging to `ofGroup`
if (isGroup) {
if (group !== isGroup) {
return
}
}
if (distance < minDistance) {
minDistance = distance;
closestGroup = group as LandmarkGroup;
closestVector = { x: dx, y: dy, z: 0 }; // Z is 0 as mouse interaction is 2D
}
});
// Fallback to faceOval if no group found or distance is too large
if (minDistance > 0.05) {
// console.log('Distance is too high, so we use the faceOval group');
closestGroup = 'background';
minDistance = faceOvalDistance;
closestVector = faceOvalVector;
}
if (closestGroup) {
// console.log(`Closest landmark: ${closestGroup}, distance: ${minDistance.toFixed(4)}`);
return { group: closestGroup, distance: minDistance, vector: closestVector };
} else {
// console.log('No group found, returning fallback');
return defaultLandmark
}
}, [landmarkCenters]);
// Detect face landmarks
const detectFaceLandmarks = useCallback(async (imageDataUrl: string) => {
const { setFaceLandmarks,setBlendShapes } = useMainStore.getState();
// console.log('Attempting to detect face landmarks...');
if (!isMediaPipeReady) {
console.log('MediaPipe not ready. Skipping detection.');
return;
}
const faceLandmarker = mediaPipeRef.current.faceLandmarker;
if (!faceLandmarker) {
console.error('FaceLandmarker is not initialized.');
return;
}
const drawingUtils = mediaPipeRef.current.drawingUtils;
const image = new Image();
image.src = imageDataUrl;
await new Promise((resolve) => { image.onload = resolve; });
const faceLandmarkerResult = faceLandmarker.detect(image);
// console.log("Face landmarks detected:", faceLandmarkerResult);
setFaceLandmarks(faceLandmarkerResult.faceLandmarks);
setBlendShapes(faceLandmarkerResult.faceBlendshapes || []);
if (faceLandmarkerResult.faceLandmarks && faceLandmarkerResult.faceLandmarks[0]) {
computeLandmarkCenters(faceLandmarkerResult.faceLandmarks[0]);
}
if (canvasRef.current && drawingUtils) {
drawLandmarks(faceLandmarkerResult.faceLandmarks[0], canvasRef.current, drawingUtils);
}
}, [isMediaPipeReady, isDrawingUtilsReady, computeLandmarkCenters]);
const drawLandmarks = useCallback((
landmarks: vision.NormalizedLandmark[],
canvas: HTMLCanvasElement,
drawingUtils: vision.DrawingUtils
) => {
const ctx = canvas.getContext('2d');
if (!ctx) return;
ctx.clearRect(0, 0, canvas.width, canvas.height);
if (canvasRef.current && previewImage) {
const img = new Image();
img.onload = () => {
canvas.width = img.width;
canvas.height = img.height;
const drawLandmarkGroup = (landmark: ClosestLandmark | null, opacity: number) => {
if (!landmark) return;
const connections = landmarkGroups[landmark.group];
if (connections) {
ctx.globalAlpha = opacity;
drawingUtils.drawConnectors(
landmarks,
connections,
{ color: 'orange', lineWidth: 4 }
);
}
};
drawLandmarkGroup(previousLandmark, previousOpacity);
drawLandmarkGroup(currentLandmark, currentOpacity);
ctx.globalAlpha = 1;
};
img.src = previewImage;
}
}, [previewImage, currentLandmark, previousLandmark, currentOpacity, previousOpacity]);
useEffect(() => {
if (isMediaPipeReady && isDrawingUtilsReady && faceLandmarks.length > 0 && canvasRef.current && mediaPipeRef.current.drawingUtils) {
drawLandmarks(faceLandmarks[0], canvasRef.current, mediaPipeRef.current.drawingUtils);
}
}, [isMediaPipeReady, isDrawingUtilsReady, faceLandmarks, currentLandmark, previousLandmark, currentOpacity, previousOpacity, drawLandmarks]);
useEffect(() => {
let animationFrame: number;
const animate = () => {
setCurrentOpacity((prev) => Math.min(prev + 0.2, 1));
setPreviousOpacity((prev) => Math.max(prev - 0.2, 0));
if (currentOpacity < 1 || previousOpacity > 0) {
animationFrame = requestAnimationFrame(animate);
}
};
animationFrame = requestAnimationFrame(animate);
return () => cancelAnimationFrame(animationFrame);
}, [currentLandmark]);
// Canvas ref callback
const canvasRefCallback = useCallback((node: HTMLCanvasElement | null) => {
if (node !== null) {
const ctx = node.getContext('2d');
if (ctx) {
// Get device pixel ratio
const pixelRatio = window.devicePixelRatio || 1;
// Scale canvas based on the pixel ratio
node.width = node.clientWidth * pixelRatio;
node.height = node.clientHeight * pixelRatio;
ctx.scale(pixelRatio, pixelRatio);
mediaPipeRef.current.drawingUtils = new vision.DrawingUtils(ctx);
setIsDrawingUtilsReady(true);
} else {
console.error('Failed to get 2D context from canvas.');
}
canvasRef.current = node;
}
}, []);
useEffect(() => {
if (!isMediaPipeReady) {
console.log('MediaPipe not ready. Skipping landmark detection.');
return
}
if (!previewImage) {
console.log('Preview image not ready. Skipping landmark detection.');
return
}
if (!isDrawingUtilsReady) {
console.log('DrawingUtils not ready. Skipping landmark detection.');
return
}
detectFaceLandmarks(previewImage);
}, [isMediaPipeReady, isDrawingUtilsReady, previewImage])
const modifyImageWithRateLimit = useThrottledCallback((params: {
landmark: ClosestLandmark
vector: { x: number; y: number; z: number }
mode: ActionMode
}) => {
useMainStore.getState().modifyImage(params);
}, [], throttleInMs);
useEffect(() => {
facePoke.setOnServerResponse(handleServerResponse);
}, [handleServerResponse]);
const handleStart = useCallback((x: number, y: number, mode: ActionMode) => {
if (!canvasRef.current) return;
const rect = canvasRef.current.getBoundingClientRect();
const normalizedX = (x - rect.left) / rect.width;
const normalizedY = (y - rect.top) / rect.height;
const landmark = findClosestLandmark(normalizedX, normalizedY);
// console.log(`Interaction start on ${landmark.group}`);
setActiveLandmark(landmark);
setDragStart({ x: normalizedX, y: normalizedY });
dragStartRef.current = { x: normalizedX, y: normalizedY };
}, [findClosestLandmark, setActiveLandmark, setDragStart]);
const handleMove = useCallback((x: number, y: number, mode: ActionMode) => {
if (!canvasRef.current) return;
const rect = canvasRef.current.getBoundingClientRect();
const normalizedX = (x - rect.left) / rect.width;
const normalizedY = (y - rect.top) / rect.height;
const landmark = findClosestLandmark(
normalizedX,
normalizedY,
dragStart && dragStartRef.current ? currentLandmark?.group : undefined
);
const landmarkData = landmarkCenters[landmark?.group]
const vector = landmarkData ? {
x: normalizedX - landmarkData.x,
y: normalizedY - landmarkData.y,
z: 0
} : {
x: 0.5,
y: 0.5,
z: 0
}
if (dragStart && dragStartRef.current) {
setIsDragging(true);
modifyImageWithRateLimit({
landmark: currentLandmark || landmark,
vector,
mode
});
} else {
if (!currentLandmark || (currentLandmark?.group !== landmark?.group)) {
setActiveLandmark(landmark);
}
/*
modifyImageWithRateLimit({
landmark,
vector,
mode: 'HOVERING'
});
*/
}
}, [currentLandmark, dragStart, setActiveLandmark, setIsDragging, modifyImageWithRateLimit, landmarkCenters]);
const handleEnd = useCallback((x: number, y: number, mode: ActionMode) => {
if (!canvasRef.current) return;
const rect = canvasRef.current.getBoundingClientRect();
const normalizedX = (x - rect.left) / rect.width;
const normalizedY = (y - rect.top) / rect.height;
if (dragStart && dragStartRef.current) {
const landmark = findClosestLandmark(normalizedX, normalizedY, currentLandmark?.group);
modifyImageWithRateLimit({
landmark: currentLandmark || landmark,
vector: {
x: normalizedX - landmarkCenters[landmark.group].x,
y: normalizedY - landmarkCenters[landmark.group].y,
z: 0
},
mode
});
}
setIsDragging(false);
dragStartRef.current = null;
setActiveLandmark(undefined);
}, [currentLandmark, isDragging, modifyImageWithRateLimit, findClosestLandmark, setActiveLandmark, landmarkCenters, setIsDragging]);
const handleMouseDown = useCallback((event: React.MouseEvent<HTMLCanvasElement>) => {
const mode: ActionMode = event.button === 0 ? 'PRIMARY' : 'SECONDARY';
handleStart(event.clientX, event.clientY, mode);
}, [handleStart]);
const handleMouseMove = useCallback((event: React.MouseEvent<HTMLCanvasElement>) => {
const mode: ActionMode = event.buttons === 1 ? 'PRIMARY' : 'SECONDARY';
handleMove(event.clientX, event.clientY, mode);
}, [handleMove]);
const handleMouseUp = useCallback((event: React.MouseEvent<HTMLCanvasElement>) => {
const mode: ActionMode = event.buttons === 1 ? 'PRIMARY' : 'SECONDARY';
handleEnd(event.clientX, event.clientY, mode);
}, [handleEnd]);
const handleTouchStart = useCallback((event: React.TouchEvent<HTMLCanvasElement>) => {
const mode: ActionMode = event.touches.length === 1 ? 'PRIMARY' : 'SECONDARY';
const touch = event.touches[0];
handleStart(touch.clientX, touch.clientY, mode);
}, [handleStart]);
const handleTouchMove = useCallback((event: React.TouchEvent<HTMLCanvasElement>) => {
const mode: ActionMode = event.touches.length === 1 ? 'PRIMARY' : 'SECONDARY';
const touch = event.touches[0];
handleMove(touch.clientX, touch.clientY, mode);
}, [handleMove]);
const handleTouchEnd = useCallback((event: React.TouchEvent<HTMLCanvasElement>) => {
const mode: ActionMode = event.changedTouches.length === 1 ? 'PRIMARY' : 'SECONDARY';
const touch = event.changedTouches[0];
handleEnd(touch.clientX, touch.clientY, mode);
}, [handleEnd]);
return {
canvasRef,
canvasRefCallback,
mediaPipeRef,
isMediaPipeReady,
isDrawingUtilsReady,
handleMouseDown,
handleMouseUp,
handleMouseMove,
handleTouchStart,
handleTouchMove,
handleTouchEnd,
currentLandmark,
currentOpacity,
}
}
|