mirror of
https://github.com/sbrl/research-rainfallradar
synced 2024-11-25 02:32:59 +00:00
fixup
This commit is contained in:
parent
c33c0a0899
commit
6135bcd0cd
1 changed files with 1 additions and 1 deletions
|
@ -34,8 +34,8 @@ def parse_item(metadata, shape_water_desired):
|
||||||
rainfall = tf.transpose(rainfall, [1, 2, 0])
|
rainfall = tf.transpose(rainfall, [1, 2, 0])
|
||||||
rainfall = tf.image.resize(rainfall, tf.cast(tf.constant(metadata["waterdepth"]) / 2, dtype=tf.int32))
|
rainfall = tf.image.resize(rainfall, tf.cast(tf.constant(metadata["waterdepth"]) / 2, dtype=tf.int32))
|
||||||
|
|
||||||
water = tf.image.crop_to_bounding_box(water, water_offset_x, water_offset_y, water_width_target, water_height_target)
|
|
||||||
water = tf.expand_dims(water, axis=-1) # [width, height] → [width, height, channels]
|
water = tf.expand_dims(water, axis=-1) # [width, height] → [width, height, channels]
|
||||||
|
water = tf.image.crop_to_bounding_box(water, water_offset_x, water_offset_y, water_width_target, water_height_target)
|
||||||
|
|
||||||
# TODO: The shape of the resulting tensor can't be statically determined, so we need to reshape here
|
# TODO: The shape of the resulting tensor can't be statically determined, so we need to reshape here
|
||||||
print("DEBUG:dataset ITEM rainfall:shape", rainfall.shape, "water:shape", water.shape)
|
print("DEBUG:dataset ITEM rainfall:shape", rainfall.shape, "water:shape", water.shape)
|
||||||
|
|
Loading…
Reference in a new issue