area_pix(picture_fi​lename)

Version 1.1.0.0 (1,14 ko) par juhisteri
Calculates the relation of areas of two domains by counting pixels.
28 téléchargements
Mise à jour 23 mars 2017

Afficher la licence

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
Créé avec R2012b
Compatible avec toutes les versions
Plateformes compatibles
Windows macOS Linux
Catégories
En savoir plus sur Read, Write, and Modify Image dans Help Center et MATLAB Answers

Community Treasure Hunt

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

Start Hunting!
Version Publié le Notes de version
1.1.0.0

Corrected some mistakes.

1.0.0.0