ZYangChen / MoCha-Stereo

[CVPR2024] The official implementation of "MoCha-Stereo: Motif Channel Attention Network for Stereo Matching”.
MIT License
118 stars 3 forks source link

LSTMMultiUpdateBlock calls missing parameter #12

Closed AdrienGhariani closed 2 months ago

AdrienGhariani commented 3 months ago

Hello,

There seem to be an issue with how LSTMMultiUpdateBlock is called. The two first self.update_blockcalls are missing the netC parameter so the code is not running as is for me.

1 - self.update_block(net_list, inp_list, iter16=True, iter08=False, iter04=False, update=False) 2 - self.update_block(net_list, inp_list, iter16=self.args.n_gru_layers==3, iter08=True, iter04=False, update=False) 3 - self.update_block(netC, net_list, inp_list, geo_feat, disp, iter16=self.args.n_gru_layers == 3, iter08=self.args.n_gru_layers >= 2)

Thank you

ZYangChen commented 2 months ago

Only the third "update block" is called here.