Spaces:
Running
on
L40S
Running
on
L40S
File size: 22,488 Bytes
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 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 |
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';
// New types for improved type safety
export type LandmarkGroup = 'lips' | 'leftEye' | 'leftEyebrow' | 'rightEye' | 'rightEyebrow' | 'faceOval' | 'background';
export type LandmarkCenter = { x: number; y: number; z: number };
export type ClosestLandmark = { group: LandmarkGroup; distance: number; vector: { x: number; y: number; z: number } };
export type MediaPipeResources = {
faceLandmarker: vision.FaceLandmarker | null;
drawingUtils: vision.DrawingUtils | null;
};
export function useFaceLandmarkDetection() {
const error = useMainStore(s => s.error);
const setError = useMainStore(s => s.setError);
const imageFile = useMainStore(s => s.imageFile);
const setImageFile = useMainStore(s => s.setImageFile);
const originalImage = useMainStore(s => s.originalImage);
const originalImageHash = useMainStore(s => s.originalImageHash);
const setOriginalImageHash = useMainStore(s => s.setOriginalImageHash);
const previewImage = useMainStore(s => s.previewImage);
const setPreviewImage = useMainStore(s => s.setPreviewImage);
const resetImage = useMainStore(s => s.resetImage);
;(window as any).debugJuju = useMainStore;
////////////////////////////////////////////////////////////////////////
// ok so apparently I cannot vary the latency, or else there is a bug
// const averageLatency = useMainStore(s => s.averageLatency);
const averageLatency = 220
////////////////////////////////////////////////////////////////////////
// State for face detection
const [faceLandmarks, setFaceLandmarks] = useState<vision.NormalizedLandmark[][]>([]);
const [isMediaPipeReady, setIsMediaPipeReady] = useState(false);
const [isDrawingUtilsReady, setIsDrawingUtilsReady] = useState(false);
const [blendShapes, setBlendShapes] = useState<vision.Classifications[]>([]);
// State for mouse interaction
const [dragStart, setDragStart] = useState<{ x: number; y: number } | null>(null);
const [dragEnd, setDragEnd] = useState<{ x: number; y: number } | null>(null);
const [isDragging, setIsDragging] = useState(false);
const [isWaitingForResponse, setIsWaitingForResponse] = useState(false);
const dragStartRef = useRef<{ x: number; y: number } | null>(null);
const currentMousePosRef = useRef<{ x: number; y: number } | null>(null);
const lastModifiedImageHashRef = useRef<string | 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);
const [isHovering, setIsHovering] = useState(false);
// 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/[email protected]/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) => {
// 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 modifyImage = useCallback(({ landmark, vector }: {
landmark: ClosestLandmark
vector: { x: number; y: number; z: number }
}) => {
const {
originalImage,
originalImageHash,
params: previousParams,
setParams,
setError
} = useMainStore.getState()
if (!originalImage) {
console.error('Image file or facePoke not available');
return;
}
const params = {
...previousParams
}
const minX = -0.50;
const maxX = 0.50;
const minY = -0.50;
const maxY = 0.50;
// Function to map a value from one range to another
const mapRange = (value: number, inMin: number, inMax: number, outMin: number, outMax: number): number => {
return Math.min(outMax, Math.max(outMin, ((value - inMin) * (outMax - outMin)) / (inMax - inMin) + outMin));
};
console.log("modifyImage:", {
originalImage,
originalImageHash,
landmark,
vector,
minX,
maxX,
minY,
maxY,
})
// Map landmarks to ImageModificationParams
switch (landmark.group) {
case 'leftEye':
case 'rightEye':
// eyebrow (min: -20, max: 5, default: 0)
const eyesMin = 210
const eyesMax = 5
params.eyes = mapRange(vector.x, minX, maxX, eyesMin, eyesMax);
break;
case 'leftEyebrow':
case 'rightEyebrow':
// moving the mouse vertically for the eyebrow
// should make them up/down
// eyebrow (min: -10, max: 15, default: 0)
const eyebrowMin = -10
const eyebrowMax = 15
params.eyebrow = mapRange(vector.y, minY, maxY, eyebrowMin, eyebrowMax);
break;
case 'lips':
// aaa (min: -30, max: 120, default: 0)
//const aaaMin = -30
//const aaaMax = 120
//params.aaa = mapRange(vector.x, minY, maxY, aaaMin, aaaMax);
// eee (min: -20, max: 15, default: 0)
const eeeMin = -20
const eeeMax = 15
params.eee = mapRange(vector.y, minY, maxY, eeeMin, eeeMax);
// woo (min: -20, max: 15, default: 0)
const wooMin = -20
const wooMax = 15
params.woo = mapRange(vector.x, minX, maxX, wooMin, wooMax);
break;
case 'faceOval':
// displacing the face horizontally by moving the mouse on the X axis
// should perform a yaw rotation
// rotate_roll (min: -20, max: 20, default: 0)
const rollMin = -40
const rollMax = 40
// note: we invert the axis here
params.rotate_roll = mapRange(vector.x, minX, maxX, rollMin, rollMax);
break;
case 'background':
// displacing the face horizontally by moving the mouse on the X axis
// should perform a yaw rotation
// rotate_yaw (min: -20, max: 20, default: 0)
const yawMin = -40
const yawMax = 40
// note: we invert the axis here
params.rotate_yaw = mapRange(-vector.x, minX, maxX, yawMin, yawMax);
// displacing the face vertically by moving the mouse on the Y axis
// should perform a pitch rotation
// rotate_pitch (min: -20, max: 20, default: 0)
const pitchMin = -40
const pitchMax = 40
params.rotate_pitch = mapRange(vector.y, minY, maxY, pitchMin, pitchMax);
break;
default:
return
}
for (const [key, value] of Object.entries(params)) {
if (isNaN(value as any) || !isFinite(value as any)) {
console.log(`${key} is NaN, aborting`)
return
}
}
console.log(`PITCH=${params.rotate_pitch || 0}, YAW=${params.rotate_yaw || 0}, ROLL=${params.rotate_roll || 0}`);
setParams(params)
try {
// For the first request or when the image file changes, send the full image
if (!lastModifiedImageHashRef.current || lastModifiedImageHashRef.current !== originalImageHash) {
lastModifiedImageHashRef.current = originalImageHash;
facePoke.modifyImage(originalImage, null, params);
} else {
// For subsequent requests, send only the hash
facePoke.modifyImage(null, lastModifiedImageHashRef.current, params);
}
} catch (error) {
// console.error('Error modifying image:', error);
setError('Failed to modify image');
}
}, []);
// this is throttled by our average latency
const modifyImageWithRateLimit = useThrottledCallback((params: {
landmark: ClosestLandmark
vector: { x: number; y: number; z: number }
}) => {
modifyImage(params);
}, [modifyImage], averageLatency);
const handleMouseEnter = useCallback(() => {
setIsHovering(true);
}, []);
const handleMouseLeave = useCallback(() => {
setIsHovering(false);
}, []);
// Update mouse event handlers
const handleMouseDown = useCallback((event: React.MouseEvent<HTMLCanvasElement>) => {
if (!canvasRef.current) return;
const rect = canvasRef.current.getBoundingClientRect();
const x = (event.clientX - rect.left) / rect.width;
const y = (event.clientY - rect.top) / rect.height;
const landmark = findClosestLandmark(x, y);
console.log(`Mouse down on ${landmark.group}`);
setActiveLandmark(landmark);
setDragStart({ x, y });
dragStartRef.current = { x, y };
}, [findClosestLandmark, setActiveLandmark, setDragStart]);
const handleMouseMove = useCallback((event: React.MouseEvent<HTMLCanvasElement>) => {
if (!canvasRef.current) return;
const rect = canvasRef.current.getBoundingClientRect();
const x = (event.clientX - rect.left) / rect.width;
const y = (event.clientY - rect.top) / rect.height;
// only send an API request to modify the image if we are actively dragging
if (dragStart && dragStartRef.current) {
const landmark = findClosestLandmark(x, y, currentLandmark?.group);
console.log(`Dragging mouse (was over ${currentLandmark?.group || 'nothing'}, now over ${landmark.group})`);
// Compute the vector from the landmark center to the current mouse position
modifyImageWithRateLimit({
landmark: currentLandmark || landmark, // this will still use the initially selected landmark
vector: {
x: x - landmarkCenters[landmark.group].x,
y: y - landmarkCenters[landmark.group].y,
z: 0 // Z is 0 as mouse interaction is 2D
}
});
setIsDragging(true);
} else {
const landmark = findClosestLandmark(x, y);
//console.log(`Moving mouse over ${landmark.group}`);
// console.log(`Simple mouse move over ${landmark.group}`);
// we need to be careful here, we don't want to change the active
// landmark dynamically if we are busy dragging
if (!currentLandmark || (currentLandmark?.group !== landmark?.group)) {
// console.log("setting activeLandmark to ", landmark);
setActiveLandmark(landmark);
}
setIsHovering(true); // Ensure hovering state is maintained during movement
}
}, [currentLandmark, dragStart, setIsHovering, setActiveLandmark, setIsDragging, modifyImageWithRateLimit, landmarkCenters]);
const handleMouseUp = useCallback((event: React.MouseEvent<HTMLCanvasElement>) => {
if (!canvasRef.current) return;
const rect = canvasRef.current.getBoundingClientRect();
const x = (event.clientX - rect.left) / rect.width;
const y = (event.clientY - rect.top) / rect.height;
// only send an API request to modify the image if we are actively dragging
if (dragStart && dragStartRef.current) {
const landmark = findClosestLandmark(x, y, currentLandmark?.group);
console.log(`Mouse up (was over ${currentLandmark?.group || 'nothing'}, now over ${landmark.group})`);
// Compute the vector from the landmark center to the current mouse position
modifyImageWithRateLimit({
landmark: currentLandmark || landmark, // this will still use the initially selected landmark
vector: {
x: x - landmarkCenters[landmark.group].x,
y: y - landmarkCenters[landmark.group].y,
z: 0 // Z is 0 as mouse interaction is 2D
}
});
}
setIsDragging(false);
dragStartRef.current = null;
setActiveLandmark(undefined);
}, [currentLandmark, isDragging, modifyImageWithRateLimit, findClosestLandmark, setActiveLandmark, landmarkCenters, modifyImageWithRateLimit, setIsDragging]);
useEffect(() => {
facePoke.setOnModifiedImage((image: string, image_hash: string) => {
if (image) {
setPreviewImage(image);
}
setOriginalImageHash(image_hash);
lastModifiedImageHashRef.current = image_hash;
});
}, [setPreviewImage, setOriginalImageHash]);
return {
canvasRef,
canvasRefCallback,
mediaPipeRef,
faceLandmarks,
isMediaPipeReady,
isDrawingUtilsReady,
blendShapes,
//dragStart,
//setDragStart,
//dragEnd,
//setDragEnd,
setFaceLandmarks,
setBlendShapes,
handleMouseDown,
handleMouseUp,
handleMouseMove,
handleMouseEnter,
handleMouseLeave,
currentLandmark,
currentOpacity,
}
}
|