def inputs(self): return [ rgbSquareImgShape(self.imgSize, "cam1"), # Cam 1 rgbSquareImgShape(self.imgSize, "cam2"), # Cam 2 graySquareImgShape(self.imgSize, "mask"), # Mask rgbSquareImgShape(self.imgSize, "normal_gt"), # Normal graySquareImgShape(self.imgSize, "depth_gt"), # Depth ]
def inputs(self): return [ rgbSquareImgShape(self.imgSize, "input1"), # Cam1 rgbSquareImgShape(self.imgSize, "input2"), # Cam2 graySquareImgShape(self.imgSize, "mask"), # Mask rgbSquareImgShape(self.imgSize, "normal"), # Normal graySquareImgShape(self.imgSize, "depth"), # Depth sphericalGaussainsShape(self.num_sgs, "sgs"), # Previous SGs Estimation ]
def inputs(self): return [ rgbSquareImgShape(self.imgSize, "cam1"), # Cam 1 rgbSquareImgShape(self.imgSize, "cam2"), # Cam 2 graySquareImgShape(self.imgSize, "mask"), # Mask rgbSquareImgShape(self.imgSize, "normal"), # Previous Estimated Normal graySquareImgShape(self.imgSize, "depth"), # Previous Estimated Depth sphericalGaussainsShape(self.num_sgs, "sgs_gt"), # GT SGs ]
def inputs(self): return [ rgbSquareImgShape(self.imgSize, "flash_img"), # 0 Flash_img rgbSquareImgShape(self.imgSize, "rerender_img"), # 1 Render_img rgbSquareImgShape(self.imgSize, "diffuse"), # 2 Diffuse rgbSquareImgShape(self.imgSize, "specular"), # 3 Specular graySquareImgShape(self.imgSize, "roughness"), # 4 Roughness rgbSquareImgShape(self.imgSize, "normal"), # 5 Normal graySquareImgShape(self.imgSize, "depth"), # 6 Depth graySquareImgShape(self.imgSize, "mask"), # 7 Mask sphericalGaussainsShape(self.num_sgs, "sgs"), # 8 sgs ]
def inputs(self): """ proc_global, # 0 cam2, # 1 ensureSingleChannel(mask), # 2 normal, # 3 ensureSingleChannel(depth), # 4 """ return [ rgbSquareImgShape(self.imgSize, "cam1"), # Cam 1 rgbSquareImgShape(self.imgSize, "cam2"), # Cam 2 graySquareImgShape(self.imgSize, "mask"), # Mask rgbSquareImgShape(self.imgSize, "normal"), # Previous Normal Estimation graySquareImgShape(self.imgSize, "depth"), # Previous Depth Estimation sphericalGaussainsShape(self.num_sgs, "sgs"), # Previous SGs Estimation rgbSquareImgShape(self.imgSize, "diffuse_gt"), # Diffuse rgbSquareImgShape(self.imgSize, "specular_gt"), # Specular graySquareImgShape(self.imgSize, "roughness_gt"), # Roughness ]
def inputs(self): return [ rgbSquareImgShape(self.imgSize, "input1"), # Cam1 rgbSquareImgShape(self.imgSize, "input2"), # Cam2 graySquareImgShape(self.imgSize, "mask"), # Mask ]