area_pix(picture_filename)
Calculates the relation of areas of two domains by counting pixels.
An application: given a domain E and a disc D with area 1, you obtain the
area of E.
Give a picture containing
*E with one color
*D with another color (prefer white)
*black background
Since the relative areas are calculated, area(E)/area(D) applying an
affine transformation to the picture will not change the result.
Demo1:
urlwrite('http://integraali.com/stuff/kuvioD.png','kuva.png')
area_pix('picture.png')
Demo2:
t=linspace(0,2*pi,100);
x=cos(t).^3;
y=sin(t).^3;
h=figure;
plot(x,y,'k')
hold on
axis([-10 10 -10 10])
g=ginput(1);
a=g(1)+cos(t);
b=g(2)+sin(t);
plot(a,b,'k')
axis equal
box off
axis off
%edit the picture with Paint and apply Demo1
Citation pour cette source
juhisteri (2026). area_pix(picture_filename) (https://fr.mathworks.com/matlabcentral/fileexchange/62210-area_pix-picture_filename), MATLAB Central File Exchange. Extrait(e) le .
Compatibilité avec les versions de MATLAB
Plateformes compatibles
Windows macOS LinuxCatégories
Tags
Découvrir Live Editor
Créez des scripts avec du code, des résultats et du texte formaté dans un même document exécutable.
| Version | Publié le | Notes de version | |
|---|---|---|---|
| 1.1.0.0 | Corrected some mistakes. |
||
| 1.0.0.0 |
