Is there a function in MATLAB to test for the compressibility (.zip of .jpeg) of a set of data. Say, if I wanted to test how many bytes are saved by compressing a 10x10 pixel area.
This is the same compressibility as is being asked here:
How to efficiently predict if data is compressible
but accuracy and precision are the priorities here, and should not be sacrificed for time efficiency as they are in the that particular post.
I also don't want to actually compress these bits of information, rather I'm just seeing how well they can be compressed as a judge of their complexity.
EDIT: It's perfectly acceptable to compress this data then run a comparison on the data sizes by the way...