Log in

View Full Version : Fritz Framalyzer


Archimedes
22nd April 2005, 21:26
Fritz Framalyzer

Download >> (http://forum.gleitz.info/showthread.php?t=36130)

Archimedes
24th April 2005, 20:54
Fritz Framalyzer Preview
Version 0.60

New version:

- Multilingual support added. Support for german language added.
- Image (bmp files) comparing added.

Archimedes
10th May 2005, 14:39
A new update is available.

- The logfile is now a csv file that can be loaded directly to Microsoft Excel for generating diagrams etc.
- MSE (mean squared error) and PSNR (peak signal-to-noise ratio) metric added. The most common used values when comparing images and videos in the objective way. The calculation is done in the yuv color space.
- The FND index is now called Euclidean distance in RGB, a more mathematical term. The calculation is still the same.

Archimedes
23rd June 2005, 16:19
Fritz Framalyzer Preview
Version 0.80

- Matched pixels metric removed (not very reliable).
- SSIM metric (Q in YCbCr) from Zhou Wang added.

(Edit.)

See also the updated documentation.

Archimedes
18th February 2006, 14:51
In the meanwhile, i’ve added a lot of new features to the program. The program now offers AviSynth support and batch processing. :-)

Archimedes
3rd March 2006, 16:01
New version available.
- AviSynth template support added.
- Analyzing window removed (replaced by AviSynth's crop function).
- Minor improvements.

What is the meaning of an AviSynth template?

Normally you have to create one AviSynth script for each video you want to analyze. If you plan to analyzing a lot of videos of the same type (e. g. Mpeg 2) against its reference clip (e. g. DV Avi), you have to create a lot of AviSynth scripts. To prevent from this, you can use or create AviSynth templates. One AviSynth template works for all of your analyzed videos. Examples of AviSynth templates can be find in the template folder. If you load, for example, the AviSource (interlaced) template, you can load any Avi file (supported by AviSynth) directly. You don't have to create a new AviSynth script for each new reference or test clip.

Do not change or delete the string "$FileName" in the AviSynth template scripts, as it works as a place holder for all of your added videos. If you analyzing a lot of videos, this string will be replaced with the real file name.

For example, a valid AviSynth template looks like this:

AviSource("$FileName", audio=false)
# Crop(16, 16, -16, -16)
ConvertToYUY2(interlaced=true)

(Edit.)