tensorflow-fcn icon indicating copy to clipboard operation
tensorflow-fcn copied to clipboard

An example of images with shape [None, h, w, 3]

Open GeorgiAngelov opened this issue 6 years ago • 0 comments

In the README you mentioned an example where images is a tensor with a shape of [None, h, w, 3] but I am not finding anywhere in the library where a tensor of this shape is defined. Also, for example in fcn8_vgg.py.build(), you have the following code for the rgb param ( image in this case ):

red, green, blue = tf.split(rgb, 3, 3)

doesn't this assume just a single image so when processing batches, this would error out ? Sorry if the question appears redundant to you but I am wondering if I am missing something here.

GeorgiAngelov avatar Jan 06 '18 05:01 GeorgiAngelov