reab5555 commited on
Commit
6d94b94
·
verified ·
1 Parent(s): f39138d

Update visualization.py

Browse files
Files changed (1) hide show
  1. visualization.py +3 -3
visualization.py CHANGED
@@ -229,15 +229,15 @@ def create_heatmap(t, mse_embeddings, mse_posture, mse_voice, video_fps, total_f
229
  combined_mse[1] = mse_posture_norm
230
  combined_mse[2] = mse_voice_norm
231
 
232
- fig, ax = plt.subplots(figsize=(video_width / 25, 1)) # Much thinner height, wider width
233
  ax.imshow(combined_mse, aspect='auto', cmap='RdGy', vmin=0, vmax=1, extent=[0, total_frames, 0, 3])
234
  ax.set_yticks([0.5, 1.5, 2.5])
235
  ax.set_yticklabels(['Voice', 'Posture', 'Face'], fontsize=6) # Smaller font size
236
  ax.set_xticks([])
237
 
238
- ax.axvline(x=frame_count, color='black', linewidth=2) # Thinner line for smaller heatmap
239
 
240
- plt.tight_layout(pad=0.1) # Reduce padding around the plot
241
 
242
  canvas = FigureCanvas(fig)
243
  canvas.draw()
 
229
  combined_mse[1] = mse_posture_norm
230
  combined_mse[2] = mse_voice_norm
231
 
232
+ fig, ax = plt.subplots(figsize=(video_width / 35, 1)) # Much thinner height, wider width
233
  ax.imshow(combined_mse, aspect='auto', cmap='RdGy', vmin=0, vmax=1, extent=[0, total_frames, 0, 3])
234
  ax.set_yticks([0.5, 1.5, 2.5])
235
  ax.set_yticklabels(['Voice', 'Posture', 'Face'], fontsize=6) # Smaller font size
236
  ax.set_xticks([])
237
 
238
+ ax.axvline(x=frame_count, color='black', linewidth=3)
239
 
240
+ plt.tight_layout(pad=0.5) # Reduce padding around the plot
241
 
242
  canvas = FigureCanvas(fig)
243
  canvas.draw()