vapoursynth-histogram icon indicating copy to clipboard operation
vapoursynth-histogram copied to clipboard

Updates to the Classic mode histogram

Open gundamftw opened this issue 3 years ago • 0 comments

  • Corrected the "Classic" mode histogram. Now it shows an actual wave form instead of unreadable garbage. Also moved the graph to the top of the frame.
  • Added a "histonly" option to Classic mode to show histogram only. Default to off.

The corrected wave form is created by turnright -> draw classic histogram -> turnleft. So the code is basically doing this:

clip = core.std.Transpose(clip)
clip = core.std.FlipHorizontal(clip)
clip = core.hist.Classic(clip)
clip = core.std.FlipHorizontal(clip)
clip = core.std.Transpose(clip)

gundamftw avatar Oct 29 '21 23:10 gundamftw