Spaces:
Runtime error
Runtime error
File size: 24,269 Bytes
92189dd |
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 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 |
/**
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import {generateThumbnail} from '@/common/components/video/editor/VideoEditorUtils';
import VideoWorkerContext from '@/common/components/video/VideoWorkerContext';
import Logger from '@/common/logger/Logger';
import {
SAM2ModelAddNewPointsMutation,
SAM2ModelAddNewPointsMutation$data,
} from '@/common/tracker/__generated__/SAM2ModelAddNewPointsMutation.graphql';
import {SAM2ModelCancelPropagateInVideoMutation} from '@/common/tracker/__generated__/SAM2ModelCancelPropagateInVideoMutation.graphql';
import {SAM2ModelClearPointsInFrameMutation} from '@/common/tracker/__generated__/SAM2ModelClearPointsInFrameMutation.graphql';
import {SAM2ModelClearPointsInVideoMutation} from '@/common/tracker/__generated__/SAM2ModelClearPointsInVideoMutation.graphql';
import {SAM2ModelCloseSessionMutation} from '@/common/tracker/__generated__/SAM2ModelCloseSessionMutation.graphql';
import {SAM2ModelRemoveObjectMutation} from '@/common/tracker/__generated__/SAM2ModelRemoveObjectMutation.graphql';
import {SAM2ModelStartSessionMutation} from '@/common/tracker/__generated__/SAM2ModelStartSessionMutation.graphql';
import {
BaseTracklet,
Mask,
SegmentationPoint,
StreamingState,
Tracker,
Tracklet,
} from '@/common/tracker/Tracker';
import {TrackerOptions} from '@/common/tracker/Trackers';
import {
ClearPointsInVideoResponse,
SessionStartFailedResponse,
SessionStartedResponse,
StreamingCompletedResponse,
StreamingStartedResponse,
StreamingStateUpdateResponse,
TrackletCreatedResponse,
TrackletDeletedResponse,
TrackletsUpdatedResponse,
} from '@/common/tracker/TrackerTypes';
import {convertMaskToRGBA} from '@/common/utils/MaskUtils';
import multipartStream from '@/common/utils/MultipartStream';
import {Stats} from '@/debug/stats/Stats';
import {INFERENCE_API_ENDPOINT} from '@/demo/DemoConfig';
import {createEnvironment} from '@/graphql/RelayEnvironment';
import {
DataArray,
Masks,
RLEObject,
decode,
encode,
toBbox,
} from '@/jscocotools/mask';
import {THEME_COLORS} from '@/theme/colors';
import invariant from 'invariant';
import {IEnvironment, commitMutation, graphql} from 'relay-runtime';
type Options = Pick<TrackerOptions, 'inferenceEndpoint'>;
type Session = {
id: string | null;
tracklets: {[id: number]: Tracklet};
};
type StreamMasksResult = {
frameIndex: number;
rleMaskList: Array<{
objectId: number;
rleMask: RLEObject;
}>;
};
type StreamMasksAbortResult = {
aborted: boolean;
};
export class SAM2Model extends Tracker {
private _endpoint: string;
private _environment: IEnvironment;
private abortController: AbortController | null = null;
private _session: Session = {
id: null,
tracklets: {},
};
private _streamingState: StreamingState = 'none';
private _emptyMask: RLEObject | null = null;
private _maskCanvas: OffscreenCanvas;
private _maskCtx: OffscreenCanvasRenderingContext2D;
private _stats?: Stats;
constructor(
context: VideoWorkerContext,
options: Options = {
inferenceEndpoint: INFERENCE_API_ENDPOINT,
},
) {
super(context);
this._endpoint = options.inferenceEndpoint;
this._environment = createEnvironment(options.inferenceEndpoint);
this._maskCanvas = new OffscreenCanvas(0, 0);
const maskCtx = this._maskCanvas.getContext('2d');
invariant(maskCtx != null, 'context cannot be null');
this._maskCtx = maskCtx;
}
public startSession(videoPath: string): Promise<void> {
// Reset streaming state. Force update with the true flag to make sure the
// UI updates its state.
this._updateStreamingState('none', true);
return new Promise(resolve => {
try {
commitMutation<SAM2ModelStartSessionMutation>(this._environment, {
mutation: graphql`
mutation SAM2ModelStartSessionMutation($input: StartSessionInput!) {
startSession(input: $input) {
sessionId
}
}
`,
variables: {
input: {
path: videoPath,
},
},
onCompleted: response => {
const {sessionId} = response.startSession;
this._session.id = sessionId;
this._sendResponse<SessionStartedResponse>('sessionStarted', {
sessionId,
});
// Clear any tracklets from the previous session when
// a new session is started
this._clearTracklets();
// Make an empty tracklet
this.createTracklet();
resolve();
},
onError: error => {
Logger.error(error);
this._sendResponse<SessionStartFailedResponse>(
'sessionStartFailed',
);
resolve();
},
});
} catch (error) {
Logger.error(error);
this._sendResponse<SessionStartFailedResponse>('sessionStartFailed');
resolve();
}
});
}
public closeSession(): Promise<void> {
const sessionId = this._session.id;
// Do not call cleanup before retrieving the session id because cleanup
// will reset the session id. If the order would be changed, it would
// never execute the closeSession mutation.
this._cleanup();
if (sessionId === null) {
return Promise.resolve();
}
return new Promise((resolve, reject) => {
commitMutation<SAM2ModelCloseSessionMutation>(this._environment, {
mutation: graphql`
mutation SAM2ModelCloseSessionMutation($input: CloseSessionInput!) {
closeSession(input: $input) {
success
}
}
`,
variables: {
input: {
sessionId,
},
},
onCompleted: response => {
const {success} = response.closeSession;
if (success === false) {
reject(new Error('Failed to close session'));
return;
}
resolve();
},
onError: error => {
Logger.error(error);
reject(error);
},
});
});
}
public createTracklet(): void {
// This will return 0 for for empty tracklets and otherwise the next
// largest number.
const nextId =
Object.values(this._session.tracklets).reduce(
(prev, curr) => Math.max(prev, curr.id),
-1,
) + 1;
const newTracklet = {
id: nextId,
color: THEME_COLORS[nextId % THEME_COLORS.length],
thumbnail: null,
points: [],
masks: [],
isInitialized: false,
};
this._session.tracklets[nextId] = newTracklet;
// Notify the main thread
this._updateTracklets();
this._sendResponse<TrackletCreatedResponse>('trackletCreated', {
tracklet: newTracklet,
});
}
public deleteTracklet(trackletId: number): Promise<void> {
const sessionId = this._session.id;
if (sessionId === null) {
return Promise.reject('No active session');
}
const tracklet = this._session.tracklets[trackletId];
invariant(
tracklet != null,
'tracklet for tracklet id %s not initialized',
trackletId,
);
return new Promise((resolve, reject) => {
commitMutation<SAM2ModelRemoveObjectMutation>(this._environment, {
mutation: graphql`
mutation SAM2ModelRemoveObjectMutation($input: RemoveObjectInput!) {
removeObject(input: $input) {
frameIndex
rleMaskList {
objectId
rleMask {
counts
size
}
}
}
}
`,
variables: {
input: {objectId: trackletId, sessionId},
},
onCompleted: response => {
const trackletUpdates = response.removeObject;
this._sendResponse<TrackletDeletedResponse>('trackletDeleted', {
isSuccessful: true,
});
for (const trackletUpdate of trackletUpdates) {
this._updateTrackletMasks(
trackletUpdate,
trackletUpdate.frameIndex === this._context.frameIndex,
false, // shouldGoToFrame
);
}
this._removeTrackletMasks(tracklet);
resolve();
},
onError: error => {
this._sendResponse<TrackletDeletedResponse>('trackletDeleted', {
isSuccessful: false,
});
Logger.error(error);
reject(error);
},
});
});
}
public updatePoints(
frameIndex: number,
objectId: number,
points: SegmentationPoint[],
): Promise<void> {
const sessionId = this._session.id;
if (sessionId === null) {
return Promise.reject('No active session');
}
// TODO: This is not the right place to initialize the empty mask.
// Move this into the constructor and listen to events on the context.
// Note, the initial context.width and context.height is 0, so it needs
// to happen based on an event, so when the video is initialized, it needs
// to notify the tracker to update the empty mask.
if (this._emptyMask === null) {
// We need to round the height/width to the nearest integer since
// Masks.toTensor() expects an integer value for the height/width.
const tensor = new Masks(
Math.trunc(this._context.height),
Math.trunc(this._context.width),
1,
).toDataArray();
this._emptyMask = encode(tensor)[0];
}
const tracklet = this._session.tracklets[objectId];
invariant(
tracklet != null,
'tracklet for object id %s not initialized',
objectId,
);
// Mark session needing propagation when point is set
this._updateStreamingState('required');
// Clear all points in frame if no points are provided.
if (points.length === 0) {
return this.clearPointsInFrame(frameIndex, objectId);
}
return new Promise((resolve, reject) => {
const normalizedPoints = points.map(p => [
p[0] / this._context.width,
p[1] / this._context.height,
]);
const labels = points.map(p => p[2]);
commitMutation<SAM2ModelAddNewPointsMutation>(this._environment, {
mutation: graphql`
mutation SAM2ModelAddNewPointsMutation($input: AddPointsInput!) {
addPoints(input: $input) {
frameIndex
rleMaskList {
objectId
rleMask {
counts
size
}
}
}
}
`,
variables: {
input: {
sessionId,
frameIndex,
objectId,
labels: labels,
points: normalizedPoints,
clearOldPoints: true,
},
},
onCompleted: response => {
tracklet.points[frameIndex] = points;
tracklet.isInitialized = true;
this._updateTrackletMasks(response.addPoints, true);
resolve();
},
onError: error => {
Logger.error(error);
reject(error);
},
});
});
}
public clearPointsInFrame(
frameIndex: number,
objectId: number,
): Promise<void> {
const sessionId = this._session.id;
if (sessionId === null) {
return Promise.reject('No active session');
}
const tracklet = this._session.tracklets[objectId];
invariant(
tracklet != null,
'tracklet for object id %s not initialized',
objectId,
);
// Mark session needing propagation when point is set
this._updateStreamingState('required');
return new Promise((resolve, reject) => {
commitMutation<SAM2ModelClearPointsInFrameMutation>(this._environment, {
mutation: graphql`
mutation SAM2ModelClearPointsInFrameMutation(
$input: ClearPointsInFrameInput!
) {
clearPointsInFrame(input: $input) {
frameIndex
rleMaskList {
objectId
rleMask {
counts
size
}
}
}
}
`,
variables: {
input: {
sessionId,
frameIndex,
objectId,
},
},
onCompleted: response => {
tracklet.points[frameIndex] = [];
tracklet.isInitialized = true;
this._updateTrackletMasks(response.clearPointsInFrame, true);
resolve();
},
onError: error => {
Logger.error(error);
reject(error);
},
});
});
}
public clearPointsInVideo(): Promise<void> {
const sessionId = this._session.id;
if (sessionId === null) {
return Promise.reject('No active session');
}
// Mark session needing propagation when point is set
this._updateStreamingState('none');
return new Promise(resolve => {
commitMutation<SAM2ModelClearPointsInVideoMutation>(this._environment, {
mutation: graphql`
mutation SAM2ModelClearPointsInVideoMutation(
$input: ClearPointsInVideoInput!
) {
clearPointsInVideo(input: $input) {
success
}
}
`,
variables: {
input: {
sessionId,
},
},
onCompleted: response => {
const {success} = response.clearPointsInVideo;
if (!success) {
this._sendResponse<ClearPointsInVideoResponse>(
'clearPointsInVideo',
{isSuccessful: false},
);
return;
}
// Reset points and masks for each tracklet
this._clearTracklets();
// Notify the main thread
this._context.goToFrame(this._context.frameIndex);
this._updateTracklets();
this._sendResponse<ClearPointsInVideoResponse>('clearPointsInVideo', {
isSuccessful: true,
});
resolve();
},
onError: error => {
this._sendResponse<ClearPointsInVideoResponse>('clearPointsInVideo', {
isSuccessful: false,
});
Logger.error(error);
},
});
});
}
public async streamMasks(frameIndex: number): Promise<void> {
const sessionId = this._session.id;
if (sessionId === null) {
return Promise.reject('No active session');
}
try {
this._sendResponse<StreamingStartedResponse>('streamingStarted');
// 1. Clear previous masks
this._context.clearMasks();
this._clearTrackletMasks();
// 2. Create abort controller and async generator
const controller = new AbortController();
this.abortController = controller;
this._updateStreamingState('requesting');
const generator = this._streamMasksForSession(
controller,
sessionId,
frameIndex,
);
// 3. parse stream response and update masks in session objects
let isAborted = false;
for await (const result of generator) {
if ('aborted' in result) {
this._updateStreamingState('aborting');
await this._abortRequest();
this._updateStreamingState('aborted');
isAborted = true;
} else {
await this._updateTrackletMasks(result, false);
this._updateStreamingState('partial');
}
}
if (!isAborted) {
// Mark session needing propagation when point is set
this._updateStreamingState('full');
}
} catch (error) {
Logger.error(error);
throw error;
}
this._sendResponse<StreamingCompletedResponse>('streamingCompleted');
}
public abortStreamMasks() {
this.abortController?.abort();
this._sendResponse<StreamingCompletedResponse>('streamingCompleted');
}
public enableStats(): void {
this._stats = new Stats('ms', 'D', 1000 / 25);
}
// PRIVATE
private _cleanup() {
this._session.id = null;
// Clear existing tracklets
this._session.tracklets = [];
}
private _clearTracklets() {
this._session.tracklets = [];
this._context.clearMasks();
}
private _updateStreamingState(
state: StreamingState,
forceUpdate: boolean = false,
) {
if (!forceUpdate && this._streamingState === state) {
return;
}
this._streamingState = state;
this._sendResponse<StreamingStateUpdateResponse>('streamingStateUpdate', {
state,
});
}
private async _removeTrackletMasks(tracklet: Tracklet) {
this._context.clearTrackletMasks(tracklet);
delete this._session.tracklets[tracklet.id];
// Notify the main thread
this._context.goToFrame(this._context.frameIndex);
this._updateTracklets();
}
private async _updateTrackletMasks(
data: SAM2ModelAddNewPointsMutation$data['addPoints'],
updateThumbnails: boolean,
shouldGoToFrame: boolean = true,
) {
const {frameIndex, rleMaskList} = data;
// 1. parse and decode masks for all objects
for (const {objectId, rleMask} of rleMaskList) {
const track = this._session.tracklets[objectId];
const {size, counts} = rleMask;
const rleObject: RLEObject = {
size: [size[0], size[1]],
counts: counts,
};
const isEmpty = counts === this._emptyMask?.counts;
this._stats?.begin();
const decodedMask = decode([rleObject]);
const bbox = toBbox([rleObject]);
const mask: Mask = {
data: rleObject as RLEObject,
shape: [...decodedMask.shape],
bounds: [
[bbox[0], bbox[1]],
[bbox[0] + bbox[2], bbox[1] + bbox[3]],
],
isEmpty,
} as const;
track.masks[frameIndex] = mask;
if (updateThumbnails && !isEmpty) {
const {ctx} = await this._compressMaskForCanvas(decodedMask);
const frame = this._context.currentFrame as VideoFrame;
await generateThumbnail(track, frameIndex, mask, frame, ctx);
}
}
this._context.updateTracklets(
frameIndex,
Object.values(this._session.tracklets),
shouldGoToFrame,
);
// Notify the main thread
this._updateTracklets();
}
private _updateTracklets() {
const tracklets: BaseTracklet[] = Object.values(
this._session.tracklets,
).map(tracklet => {
// Notify the main thread
const {
id,
color,
isInitialized,
points: trackletPoints,
thumbnail,
masks,
} = tracklet;
return {
id,
color,
isInitialized,
points: trackletPoints,
thumbnail,
masks: masks.map(mask => ({
shape: mask.shape,
bounds: mask.bounds,
isEmpty: mask.isEmpty,
})),
};
});
this._sendResponse<TrackletsUpdatedResponse>('trackletsUpdated', {
tracklets,
});
}
private _clearTrackletMasks() {
const keys = Object.keys(this._session.tracklets);
for (const key of keys) {
const trackletId = Number(key);
const tracklet = {...this._session.tracklets[trackletId], masks: []};
this._session.tracklets[trackletId] = tracklet;
}
this._updateTracklets();
}
private async _compressMaskForCanvas(
decodedMask: DataArray,
): Promise<{compressedData: Blob; ctx: OffscreenCanvasRenderingContext2D}> {
const data = convertMaskToRGBA(decodedMask.data as Uint8Array);
this._maskCanvas.width = decodedMask.shape[0];
this._maskCanvas.height = decodedMask.shape[1];
const imageData = new ImageData(
data,
decodedMask.shape[0],
decodedMask.shape[1],
);
this._maskCtx.putImageData(imageData, 0, 0);
const canvas = new OffscreenCanvas(
decodedMask.shape[1],
decodedMask.shape[0],
);
const ctx = canvas.getContext('2d');
invariant(ctx != null, 'context cannot be null');
ctx.save();
ctx.rotate(Math.PI / 2);
// Since the image was previously rotated 90° clockwise, after the image is rotated,
// we scale the canvas's width using scaleY and height using scaleX.
ctx.scale(1, -1);
ctx.drawImage(this._maskCanvas, 0, 0);
ctx.restore();
const compressedData = await canvas.convertToBlob({type: 'image/png'});
return {compressedData, ctx};
}
private async *_streamMasksForSession(
abortController: AbortController,
sessionId: string,
startFrameIndex: undefined | number = 0,
): AsyncGenerator<StreamMasksResult | StreamMasksAbortResult, undefined> {
const url = `${this._endpoint}/propagate_in_video`;
const requestBody = {
session_id: sessionId,
start_frame_index: startFrameIndex,
};
const headers: {[name: string]: string} = Object.assign({
'Content-Type': 'application/json',
});
const response = await fetch(url, {
method: 'POST',
body: JSON.stringify(requestBody),
headers,
});
const contentType = response.headers.get('Content-Type');
if (
contentType == null ||
!contentType.startsWith('multipart/x-savi-stream;')
) {
throw new Error(
'endpoint needs to support Content-Type "multipart/x-savi-stream"',
);
}
const responseBody = response.body;
if (responseBody == null) {
throw new Error('response body is null');
}
const reader = multipartStream(contentType, responseBody).getReader();
const textDecoder = new TextDecoder();
while (true) {
if (abortController.signal.aborted) {
reader.releaseLock();
yield {aborted: true};
return;
}
const {done, value} = await reader.read();
if (done) {
return;
}
const {headers, body} = value;
const contentType = headers.get('Content-Type') as string;
if (contentType.startsWith('application/json')) {
const jsonResponse = JSON.parse(textDecoder.decode(body));
const maskResults = jsonResponse.results;
const rleMaskList = maskResults.map(
(mask: {object_id: number; mask: RLEObject}) => {
return {
objectId: mask.object_id,
rleMask: mask.mask,
};
},
);
yield {
frameIndex: jsonResponse.frame_index,
rleMaskList,
};
}
}
}
private async _abortRequest(): Promise<void> {
const sessionId = this._session.id;
invariant(sessionId != null, 'session id cannot be empty');
return new Promise((resolve, reject) => {
try {
commitMutation<SAM2ModelCancelPropagateInVideoMutation>(
this._environment,
{
mutation: graphql`
mutation SAM2ModelCancelPropagateInVideoMutation(
$input: CancelPropagateInVideoInput!
) {
cancelPropagateInVideo(input: $input) {
success
}
}
`,
variables: {
input: {
sessionId,
},
},
onCompleted: response => {
const {success} = response.cancelPropagateInVideo;
if (!success) {
reject(`could not abort session ${sessionId}`);
return;
}
resolve();
},
onError: error => {
Logger.error(error);
reject(error);
},
},
);
} catch (error) {
Logger.error(error);
reject(error);
}
});
}
}
|