Image fractal dimension value
Ältere Kommentare anzeigen
I have interest in fractal dimension (FD) as I was reading this paper https://translational-medicine.biomedcentral.com/track/pdf/10.1186/1479-5876-8-140.pdf
I run the code below on the right figure (Koch snowflake) https://translational-medicine.biomedcentral.com/articles/10.1186/1479-5876-8-140/figures/1 but I get different results, any idea why? Any recommendation of introductory book covering this issue with matlab?
clc;
clear all;
close all;
fileName='E:/fd126.png'
I = (imread(fileName));
I = imfill(I,'holes');
figure
imshow(I);
BW = imbinarize(I);
BoxCountfracDim(BW) %using Hausdorff (Box-Counting) Fractal Dimension with multi-resolution calculation version 1.0.0.0 by Tan Nguyen
hausDim(BW) %using Hausdorff (Box-Counting) Fractal Dimension version 1.2.0.0 by Alceu Costa
2 Kommentare
John D'Errico
am 15 Feb. 2022
What result do you get? How far is it off? Do you accept that this computation could some some degree of error in it? How can we know what you think is the wrong number?
Image Analyst
am 16 Feb. 2022
If you want us to run the code you should attach BoxCountfracDim and hausDim. Otherwise I'm not doing anything.
Akzeptierte Antwort
Weitere Antworten (0)
Kategorien
Mehr zu Fractals finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

