Statistiques
RANG
8 045
of 299 722
RÉPUTATION
6
CONTRIBUTIONS
0 Questions
7 Réponses
ACCEPTATION DE VOS RÉPONSES
0.00%
VOTES REÇUS
3
RANG
1 442 of 20 790
RÉPUTATION
1 308
CLASSEMENT MOYEN
5.00
CONTRIBUTIONS
11 Fichiers
TÉLÉCHARGEMENTS
75
ALL TIME TÉLÉCHARGEMENTS
10807
RANG
of 165 604
CONTRIBUTIONS
0 Problèmes
0 Solutions
SCORE
0
NOMBRE DE BADGES
0
CONTRIBUTIONS
0 Publications
CONTRIBUTIONS
0 Public Chaîne
CLASSEMENT MOYEN
CONTRIBUTIONS
0 Point fort
NOMBRE MOYEN DE LIKES
Feeds
A soumis
SEM Image Porosity and Pore Size
The code takes gray-scale SEM images and gives back its porosity and pore size distribution
plus de 2 ans il y a | 26 téléchargements |

How to convert the MATLAB code into the Python?
You may want to check these tutorials on how to convert a code from MATLAB to python. https://www.youtube.com/watch?v=OV9A72IC...
plus de 3 ans il y a | 0
A soumis
Porous Texture Interpolation
Make Hybrid Porous textures from two initial textures with ones and zeros
plus de 4 ans il y a | 2 téléchargements |

A soumis
Network Visualizer with colored properties
A fast way to visualize 3D networks or graphs composed of nodes and links with some properties that can be shown with different ...
plus de 4 ans il y a | 1 téléchargement |

A soumis
2D/3D specific surface of porous media using 2D images
This code calculates 2D/3D specific surface of porous media using 2D images
plus de 4 ans il y a | 5 téléchargements |

A soumis
Pore size distribution of 2D porous media images
Calculates the pore size distribution of 2D porous media images by watershed segmentation algorithm
plus de 4 ans il y a | 10 téléchargements |

A soumis
Grain size distribution of 2D porous media images
Calculates the grain size distribution of porous media
plus de 4 ans il y a | 14 téléchargements |

A soumis
Rock Thin Section Porosity
Simple code for calculating the porosity of blue-stained thin section images of rocks
plus de 4 ans il y a | 4 téléchargements |

A soumis
Throat size distribution of porous material
Throat size distribution of 2D porous media images using watershed segmentation algorithm
plus de 4 ans il y a | 5 téléchargements |

A soumis
Pore Network Coordination Number
Pore Network Coordination Number of 2D porous media images using watershed segmentation algorithm
plus de 4 ans il y a | 4 téléchargements |

A soumis
Fiber Diameter Distribution
Fiber diamter distribution from SEM and microscopic images
plus de 4 ans il y a | 1 téléchargement |

Using a for loop to put a number of 2D arrays in a directory into a single 3D array
If your images are PNG and located in a folder, just run this code on that folder. 'A' is the resulted matrice: D=dir('*.png');...
presque 6 ans il y a | 1
Graph visualization adding white to my nodes. How to solve it?
This is a visual artifact I assume. Try add Edge Color to your nodes. It could help.
presque 6 ans il y a | 0
Index a 2D matrix from a 2D matrix
Well you can simply do this without a loop: A=rand(600,1000); B=A(1:51,1:51); But if you need it to use loops B=zeros(51); ...
presque 6 ans il y a | 0
Count centroids in an image
Why not simply label the binary image? and 'Num' would be the number of characters. [Label, Num]=bwlabel(Image)
presque 6 ans il y a | 1
find mutual information between series of images
Hi, why dont you save the MI values inside an array like this: and then find the location of the maximum value. Image_Address=...
presque 6 ans il y a | 0
How to remove dependent rows in a matrix?
This is a shorter version of Jos solution if you needed: R1=1; for I=1:size(A,1) R2=rank(A(1:I,:)); if R2~=R1; disp...
environ 6 ans il y a | 1