1 Star 0 Fork 1

znb/mc-cnn

forked from hejuncheng1/mc-cnn 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
StereoJoin.lua 527 Bytes
一键复制 编辑 原始数据 按行查看 历史
Jure Zbontar 提交于 2015-09-26 17:22 . Initial commit.
local StereoJoin, parent = torch.class('nn.StereoJoin', 'nn.Module')
function StereoJoin:__init(disp_max)
parent.__init(self)
self.direction = -1
self.disp_max = disp_max
self.output_L = torch.CudaTensor()
end
function StereoJoin:updateOutput(input)
assert(input:size(1) == 2)
local input_L = input[{{1}}]
local input_R = input[{{2}}]
self.output_L:resize(1, self.disp_max, input_L:size(3), input_L:size(4))
adcensus.StereoJoin_forward2(input_L, input_R, self.output_L)
return self.output_L
end
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/znbgithub/mc-cnn.git
[email protected]:znbgithub/mc-cnn.git
znbgithub
mc-cnn
mc-cnn
master

搜索帮助