File size: 19,423 Bytes
2c76547 | 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 | # Copyright (c) Meta Platforms, Inc. and affiliates.
# All rights reserved.
# This source code is licensed under the license found in the
# LICENSE file in the root directory of this source tree.
# -- Added by Chu King on 16th November 2025 for debugging purposes.
import os, signal
import logging
import torch.distributed as dist
from typing import Dict, List
from einops import rearrange
import torch
import torch.nn as nn
import torch.nn.functional as F
from collections import defaultdict
from models.core.update import (
BasicUpdateBlock,
SequenceUpdateBlock3D,
TimeAttnBlock,
)
# -- Added by Chu King on 21st November 2025
from models.core.sci_codec import sci_decoder
from models.core.extractor import BasicEncoder
from models.core.corr import CorrBlock1D
from models.core.attention import (
PositionEncodingSine,
LocalFeatureTransformer,
)
from models.core.utils.utils import InputPadder, interp
autocast = torch.cuda.amp.autocast
class DynamicStereo(nn.Module):
def __init__(
self,
max_disp: int = 192,
mixed_precision: bool = False,
num_frames: int = 5,
attention_type: str = None,
use_3d_update_block: bool = False,
different_update_blocks: bool = False,
):
super(DynamicStereo, self).__init__()
self.max_flow = max_disp
self.mixed_precision = mixed_precision
self.hidden_dim = 128
self.context_dim = 128
dim = 256
self.dim = dim
self.dropout = 0 # -- dropout probability
# -- decide whether to use 3D update blocks (like RAFT3D) or simpler 2D blocks.
self.use_3d_update_block = use_3d_update_block
# -- Modified by Chu King on 21st November 2025
# -- CNN encoder that extracts features from images.
# * output_dim: output channels
# * norm_fn="instance": applies instance normalization.
# -- self.fnet = BasicEncoder(
# -- output_dim=dim, norm_fn="instance", dropout=self.dropout
# -- )
self.fnet = sci_decoder(
n_frame=num_frames,
n_taps=2,
output_dim=dim,
norm_fn="instance",
dropout=self.dropout
)
# -- Boolean flag to decide whether different update blocks are used for different resolutions.
self.different_update_blocks = different_update_blocks
# -- Cost volumne planes (matching costs for disparity computation).
cor_planes = 4 * 9
self.depth = 4
self.attention_type = attention_type
# attention_type is a combination of the following attention types:
# self_stereo, temporal, update_time, update_space
# for example, self_stereo_temporal_update_time_update_space
if self.use_3d_update_block:
# -- Uses 3D convolutions for spatiotemporal processing.
if self.different_update_blocks:
# -- self.update_block08, self.update_block16, self.update_block04
# are update blocks for different resolution levels (i.e. 1/8, 1/16, 1/4)
self.update_block08 = SequenceUpdateBlock3D(
hidden_dim=self.hidden_dim, cor_planes=cor_planes, mask_size=4
)
self.update_block16 = SequenceUpdateBlock3D(
hidden_dim=self.hidden_dim,
cor_planes=cor_planes,
mask_size=4,
attention_type=attention_type,
)
self.update_block04 = SequenceUpdateBlock3D(
hidden_dim=self.hidden_dim, cor_planes=cor_planes, mask_size=4
)
else:
self.update_block = SequenceUpdateBlock3D(
hidden_dim=self.hidden_dim, cor_planes=cor_planes, mask_size=4
)
else:
# -- Uses standard 2D update blocks.
if self.different_update_blocks:
self.update_block08 = BasicUpdateBlock(
hidden_dim=self.hidden_dim, cor_planes=cor_planes, mask_size=4
)
self.update_block16 = BasicUpdateBlock(
hidden_dim=self.hidden_dim,
cor_planes=cor_planes,
mask_size=4,
attention_type=attention_type,
)
self.update_block04 = BasicUpdateBlock(
hidden_dim=self.hidden_dim, cor_planes=cor_planes, mask_size=4
)
else:
self.update_block = BasicUpdateBlock(
hidden_dim=self.hidden_dim, cor_planes=cor_planes, mask_size=4
)
if attention_type is not None:
# -- The model incorporates several attention types.
if ("update_time" in attention_type) or ("temporal" in attention_type):
# -- This variable learns positional embeddings for different time steps in the sequence.
self.time_embed = nn.Parameter(torch.zeros(1, num_frames, dim))
# -- Temporal attention: processes information across different time frames.
if "temporal" in attention_type:
self.time_attn_blocks = nn.ModuleList(
[TimeAttnBlock(dim=dim, num_heads=8) for _ in range(self.depth)]
)
# -- Stereo attention: includes self-attention and cross attention blocks for processing
# left-right stereo image pairs.
if "self_stereo" in attention_type:
self.self_attn_blocks = nn.ModuleList(
[
LocalFeatureTransformer(
d_model=dim,
nhead=8,
layer_names=["self"] * 1,
attention="linear",
)
for _ in range(self.depth)
]
)
self.cross_attn_blocks = nn.ModuleList(
[
LocalFeatureTransformer(
d_model=dim,
nhead=8,
layer_names=["cross"] * 1,
attention="linear",
)
for _ in range(self.depth)
]
)
self.num_frames = num_frames
@torch.jit.ignore
def no_weight_decay(self):
return {"time_embed"}
def freeze_bn(self):
for m in self.modules():
if isinstance(m, nn.BatchNorm2d):
m.eval()
def convex_upsample(self, flow: torch.Tensor, mask: torch.Tensor, rate: int = 4):
"""Upsample flow field [H/8, W/8, 2] -> [H, W, 2] using convex combination"""
N, _, H, W = flow.shape
mask = mask.view(N, 1, 9, rate, rate, H, W)
mask = torch.softmax(mask, dim=2)
up_flow = F.unfold(rate * flow, [3, 3], padding=1)
up_flow = up_flow.view(N, 2, 9, 1, 1, H, W)
up_flow = torch.sum(mask * up_flow, dim=2)
up_flow = up_flow.permute(0, 1, 4, 2, 5, 3)
return up_flow.reshape(N, 2, rate * H, rate * W)
def zero_init(self, fmap: torch.Tensor):
N, _, H, W = fmap.shape
_x = torch.zeros([N, 1, H, W], dtype=torch.float32)
_y = torch.zeros([N, 1, H, W], dtype=torch.float32)
zero_flow = torch.cat((_x, _y), dim=1).to(fmap.device)
return zero_flow
def forward_batch_test(
self, batch_dict: Dict, sci_enc_L, sci_enc_R, kernel_size: int = 14, iters: int = 20
):
stride = kernel_size // 2
predictions = defaultdict(list)
disp_preds = []
video = batch_dict["stereo_video"]
num_ims = len(video)
print("video", video.shape)
# -- Divide a single long sequence to multiple long sequences.
# -- For SCI stereo, we only test the first sequence.
# -- for i in range(0, num_ims, stride):
for i in range(1):
left_ims = video[i : min(i + kernel_size, num_ims), 0]
# -- padder = InputPadder(left_ims.shape, divis_by=32)
right_ims = video[i : min(i + kernel_size, num_ims), 1]
# -- left_ims, right_ims = padder.pad(left_ims, right_ims)
# -- Modified by Chu King on 20th November 2025
# 0) Convert to Gray
def rgb_to_gray(x):
weights = torch.tensor([0.2989, 0.5870, 0.1140], dtype=x.dtype, device=x.device)
gray = (x * weights[None, None, :, None, None]).sum(dim=2)
return gray # -- shape: [B, T, H, W]
video_L = rgb_to_gray(left_ims.to(next(sci_enc_L.parameters()).device)) # ~ (b, t, h, w)
video_R = rgb_to_gray(right_ims.to(next(sci_enc_R.parameters()).device)) # ~ (b, t, h, w)
# 1) Extract and normalize input videos.
# -- min_max_norm = lambda x : 2. * (x / 255.) - 1.
min_max_norm = lambda x: x / 255.
video_L = min_max_norm(video_L)
video_R = min_max_norm(video_R)
# 2) If the tensor is non-contiguous and we try .view() later, PyTorch will raise an error:
video_L = video_L.contiguous()
video_R = video_R.contiguous()
# 3) Coded exposure modeling.
snapshot_L = sci_enc_L(video_L)
snapshot_R = sci_enc_L(video_R)
with autocast(enabled=self.mixed_precision):
disparities_forw = self.forward(
# -- Modified by Chu King on 20th November 2025
# -- left_ims[None].cuda(),
# -- right_ims[None].cuda(),
snapshot_L,
snapshot_R,
iters=iters,
test_mode=True,
)
# -- Padding disabled by Chu King on 20th November 2025
# -- disparities_forw = padder.unpad(disparities_forw[:, 0])[:, None].cpu()
disparities_forw = disparities_forw[:, 0][:, None].cpu()
# -- We are not doing overlapping chunks in SCI stereo.
disp_preds.append(disparities_forw)
# -- if len(disp_preds) > 0 and len(disparities_forw) >= stride:
# -- if len(disparities_forw) < kernel_size:
# -- disp_preds.append(disparities_forw[stride // 2 :])
# -- else:
# -- disp_preds.append(disparities_forw[stride // 2 : -stride // 2])
# -- elif len(disp_preds) == 0:
# -- disp_preds.append(disparities_forw[: -stride // 2])
predictions["disparity"] = (torch.cat(disp_preds).squeeze(1).abs())[:, :1]
return predictions
def forward_sst_block(
self, fmap1_dw16: torch.Tensor, fmap2_dw16: torch.Tensor, T: int
):
# -- fmap1_dw16 ~ (B*T, C, H, W) -- left-view features
# -- fmap2_dw16 ~ (B*T, C, H, W) -- right-view features
*_, h, w = fmap1_dw16.shape
# positional encoding and self-attention
pos_encoding_fn_small = PositionEncodingSine(d_model=self.dim, max_shape=(h, w))
fmap1_dw16 = pos_encoding_fn_small(fmap1_dw16)
fmap2_dw16 = pos_encoding_fn_small(fmap2_dw16)
if self.attention_type is not None:
# add time embeddings
if (
"temporal" in self.attention_type
or "update_time" in self.attention_type
):
fmap1_dw16 = rearrange(
fmap1_dw16, "(b t) m h w -> (b h w) t m", t=T, h=h, w=w
)
fmap2_dw16 = rearrange(
fmap2_dw16, "(b t) m h w -> (b h w) t m", t=T, h=h, w=w
)
# interpolate if video length doesn't match
if T != self.num_frames:
time_embed = self.time_embed.transpose(1, 2)
new_time_embed = F.interpolate(time_embed, size=(T), mode="nearest")
new_time_embed = new_time_embed.transpose(1, 2).contiguous()
else:
new_time_embed = self.time_embed
fmap1_dw16 = fmap1_dw16 + new_time_embed
fmap2_dw16 = fmap2_dw16 + new_time_embed
fmap1_dw16 = rearrange(
fmap1_dw16, "(b h w) t m -> (b t) m h w", t=T, h=h, w=w
)
fmap2_dw16 = rearrange(
fmap2_dw16, "(b h w) t m -> (b t) m h w", t=T, h=h, w=w
)
if ("self_stereo" in self.attention_type) or (
"temporal" in self.attention_type
):
for att_ind in range(self.depth):
if "self_stereo" in self.attention_type:
fmap1_dw16 = rearrange(
fmap1_dw16, "(b t) m h w -> (b t) (h w) m", t=T, h=h, w=w
)
fmap2_dw16 = rearrange(
fmap2_dw16, "(b t) m h w -> (b t) (h w) m", t=T, h=h, w=w
)
fmap1_dw16, fmap2_dw16 = self.self_attn_blocks[att_ind](
fmap1_dw16, fmap2_dw16
)
fmap1_dw16, fmap2_dw16 = self.cross_attn_blocks[att_ind](
fmap1_dw16, fmap2_dw16
)
fmap1_dw16 = rearrange(
fmap1_dw16, "(b t) (h w) m -> (b t) m h w ", t=T, h=h, w=w
)
fmap2_dw16 = rearrange(
fmap2_dw16, "(b t) (h w) m -> (b t) m h w ", t=T, h=h, w=w
)
if "temporal" in self.attention_type:
fmap1_dw16 = self.time_attn_blocks[att_ind](fmap1_dw16, T=T)
fmap2_dw16 = self.time_attn_blocks[att_ind](fmap2_dw16, T=T)
return fmap1_dw16, fmap2_dw16
def forward_update_block(
self,
update_block: nn.Module,
corr_fn: CorrBlock1D,
flow: torch.Tensor,
net: torch.Tensor,
inp: torch.Tensor,
predictions: List,
iters: int,
interp_scale: float,
t: int,
):
for _ in range(iters):
flow = flow.detach()
out_corrs = corr_fn(flow)
with autocast(enabled=self.mixed_precision):
net, up_mask, delta_flow = update_block(net, inp, out_corrs, flow, t=t)
flow = flow + delta_flow
flow_up = flow_out = self.convex_upsample(flow, up_mask, rate=4)
if interp_scale > 1:
flow_up = interp_scale * interp(
flow_out,
(
interp_scale * flow_out.shape[2],
interp_scale * flow_out.shape[3],
),
)
flow_up = flow_up[:, :1]
predictions.append(flow_up)
return flow_out, net
def forward(self, image1, image2, flow_init=None, iters=10, test_mode=False):
"""Estimate optical flow between pair of frames"""
b, *_ = image1.shape
hdim = self.hidden_dim
with autocast(enabled=self.mixed_precision):
fmap1, fmap2 = self.fnet([image1, image2])
net, inp = torch.split(fmap1, [hdim, hdim], dim=1)
net = torch.tanh(net)
inp = F.relu(inp)
*_, h, w = fmap1.shape
# 1/4 -> 1/16
# feature
fmap1_dw16 = F.avg_pool2d(fmap1, 4, stride=4)
fmap2_dw16 = F.avg_pool2d(fmap2, 4, stride=4)
fmap1_dw16, fmap2_dw16 = self.forward_sst_block(fmap1_dw16, fmap2_dw16, T=self.num_frames)
net_dw16, inp_dw16 = torch.split(fmap1_dw16, [hdim, hdim], dim=1)
net_dw16 = torch.tanh(net_dw16)
inp_dw16 = F.relu(inp_dw16)
fmap1_dw8 = (
F.avg_pool2d(fmap1, 2, stride=2) + interp(fmap1_dw16, (h // 2, w // 2))
) / 2.0
fmap2_dw8 = (
F.avg_pool2d(fmap2, 2, stride=2) + interp(fmap2_dw16, (h // 2, w // 2))
) / 2.0
net_dw8, inp_dw8 = torch.split(fmap1_dw8, [hdim, hdim], dim=1)
net_dw8 = torch.tanh(net_dw8)
inp_dw8 = F.relu(inp_dw8)
# Cascaded refinement (1/16 + 1/8 + 1/4)
predictions = []
flow = None
flow_up = None
if flow_init is not None:
scale = h / flow_init.shape[2]
flow = -scale * interp(flow_init, (h, w))
else:
# zero initialization
flow_dw16 = self.zero_init(fmap1_dw16) # -- (N, 2, H, W)
# Recurrent Update Module
# Update 1/16
update_block = (
self.update_block16
if self.different_update_blocks
else self.update_block
)
corr_fn_att_dw16 = CorrBlock1D(fmap1_dw16, fmap2_dw16)
flow, net_dw16 = self.forward_update_block(
update_block=update_block,
corr_fn=corr_fn_att_dw16,
flow=flow_dw16,
net=net_dw16,
inp=inp_dw16,
predictions=predictions,
iters=iters // 2,
interp_scale=4,
t=self.num_frames,
)
scale = fmap1_dw8.shape[2] / flow.shape[2]
flow_dw8 = -scale * interp(flow, (fmap1_dw8.shape[2], fmap1_dw8.shape[3]))
net_dw8 = (
net_dw8
+ interp(net_dw16, (2 * net_dw16.shape[2], 2 * net_dw16.shape[3]))
) / 2.0
# Update 1/8
update_block = (
self.update_block08
if self.different_update_blocks
else self.update_block
)
corr_fn_dw8 = CorrBlock1D(fmap1_dw8, fmap2_dw8)
flow, net_dw8 = self.forward_update_block(
update_block=update_block,
corr_fn=corr_fn_dw8,
flow=flow_dw8,
net=net_dw8,
inp=inp_dw8,
predictions=predictions,
iters=iters // 2,
interp_scale=2,
t=self.num_frames,
)
scale = h / flow.shape[2]
flow = -scale * interp(flow, (h, w))
net = (
net + interp(net_dw8, (2 * net_dw8.shape[2], 2 * net_dw8.shape[3]))
) / 2.0
# Update 1/4
update_block = (
self.update_block04 if self.different_update_blocks else self.update_block
)
corr_fn = CorrBlock1D(fmap1, fmap2)
flow, __ = self.forward_update_block(
update_block=update_block,
corr_fn=corr_fn,
flow=flow,
net=net,
inp=inp,
predictions=predictions,
iters=iters,
interp_scale=1,
t=self.num_frames,
)
predictions = torch.stack(predictions)
predictions = rearrange(predictions, "d (b t) c h w -> d t b c h w", b=b, t=self.num_frames)
flow_up = predictions[-1]
if test_mode:
return flow_up
return predictions
|