Estadística
0 Preguntas
7 Respuestas
11 Archivos
CLASIFICACIÓN
7.012
of 295.735
REPUTACIÓN
6
CONTRIBUCIONES
0 Preguntas
7 Respuestas
ACEPTACIÓN DE RESPUESTAS
0.00%
VOTOS RECIBIDOS
3
CLASIFICACIÓN
1.480 of 20.277
REPUTACIÓN
1.255
EVALUACIÓN MEDIA
5.00
CONTRIBUCIONES
11 Archivos
DESCARGAS
91
ALL TIME DESCARGAS
10329
CLASIFICACIÓN
of 154.433
CONTRIBUCIONES
0 Problemas
0 Soluciones
PUNTUACIÓN
0
NÚMERO DE INSIGNIAS
0
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
Enviada
SEM Image Porosity and Pore Size
The code takes gray-scale SEM images and gives back its porosity and pore size distribution
más de 1 año hace | 44 descargas |
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...
más de 2 años hace | 0
Enviada
Porous Texture Interpolation
Make Hybrid Porous textures from two initial textures with ones and zeros
más de 3 años hace | 8 descargas |
Enviada
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 ...
más de 3 años hace | 3 descargas |
Enviada
2D/3D specific surface of porous media using 2D images
This code calculates 2D/3D specific surface of porous media using 2D images
casi 4 años hace | 3 descargas |
Enviada
Pore size distribution of 2D porous media images
Calculates the pore size distribution of 2D porous media images by watershed segmentation algorithm
casi 4 años hace | 10 descargas |
Enviada
Grain size distribution of 2D porous media images
Calculates the grain size distribution of porous media
casi 4 años hace | 12 descargas |
Enviada
Rock Thin Section Porosity
Simple code for calculating the porosity of blue-stained thin section images of rocks
casi 4 años hace | 7 descargas |
Enviada
Throat size distribution of porous material
Throat size distribution of 2D porous media images using watershed segmentation algorithm
casi 4 años hace | 4 descargas |
Enviada
Pore Network Coordination Number
Pore Network Coordination Number of 2D porous media images using watershed segmentation algorithm
casi 4 años hace | 2 descargas |
Enviada
Fiber Diameter Distribution
Fiber diamter distribution from SEM and microscopic images
casi 4 años hace | 1 descarga |
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');...
alrededor de 5 años hace | 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.
alrededor de 5 años hace | 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); ...
alrededor de 5 años hace | 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)
alrededor de 5 años hace | 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=...
alrededor de 5 años hace | 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...
más de 5 años hace | 1