Azzera filtri
Azzera filtri

calculate the Coding delay

1 visualizzazione (ultimi 30 giorni)
fekri saleh
fekri saleh il 27 Mag 2012
how do I calculate the Coding delay in matlab? ... for exemple I want to code un image with RLE ... how can I find the time which took for this code?

Risposta accettata

Geoff
Geoff il 27 Mag 2012
Do this:
tic
doStuffThatYouWantToTime();
toc

Più risposte (1)

Walter Roberson
Walter Roberson il 27 Mag 2012
tic() and toc() are the best you can do. But all they tell you is how long that code took to execute, on that image, on that run, on that system, with whatever-else was going on (e.g., virus scanning, defragging).
tic() and toc() are useless in figuring out how "efficient" your code is, or what the best and worst times are for encoding images with your code. If you have been asked for some kind of theoretical number for the "coding delay" then you will not be able to get that information from MATLAB.

Categorie

Scopri di più su Denoising and Compression in Help Center e File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by