Community Profile

photo

Arash Rabbani


University of Leeds

2019년부터 활동

Followers: 1   Following: 0

연락

통계

All
  • 5-Star Galaxy Level 5
  • Explorer
  • Personal Best Downloads Level 3
  • First Review
  • GitHub Submissions Level 1
  • First Submission
  • First Answer

배지 보기

Feeds

보기 기준

제출됨


SEM Image Porosity and Pore Size
The code takes gray-scale SEM images and gives back its porosity and pore size distribution

대략 1년 전 | 다운로드 수: 41 |

Thumbnail

답변 있음
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...

거의 2년 전 | 0

제출됨


Porous Texture Interpolation
Make Hybrid Porous textures from two initial textures with ones and zeros

거의 3년 전 | 다운로드 수: 3 |

Thumbnail

제출됨


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 ...

대략 3년 전 | 다운로드 수: 4 |

Thumbnail

제출됨


2D/3D specific surface of porous media using 2D images
This code calculates 2D/3D specific surface of porous media using 2D images

대략 3년 전 | 다운로드 수: 8 |

Thumbnail

제출됨


Pore size distribution of 2D porous media images
Calculates the pore size distribution of 2D porous media images by watershed segmentation algorithm

대략 3년 전 | 다운로드 수: 12 |

Thumbnail

제출됨


Grain size distribution of 2D porous media images
Calculates the grain size distribution of porous media

대략 3년 전 | 다운로드 수: 17 |

Thumbnail

제출됨


Rock Thin Section Porosity
Simple code for calculating the porosity of blue-stained thin section images of rocks

대략 3년 전 | 다운로드 수: 4 |

Thumbnail

제출됨


Throat size distribution of porous material
Throat size distribution of 2D porous media images using watershed segmentation algorithm

대략 3년 전 | 다운로드 수: 3 |

Thumbnail

제출됨


Pore Network Coordination Number
Pore Network Coordination Number of 2D porous media images using watershed segmentation algorithm

대략 3년 전 | 다운로드 수: 5 |

Thumbnail

제출됨


ITPM
Image-based throat/tube Permeability Model

대략 3년 전 | 다운로드 수: 5 |

Thumbnail

제출됨


Fiber Diameter Distribution
Fiber diamter distribution from SEM and microscopic images

대략 3년 전 | 다운로드 수: 6 |

Thumbnail

답변 있음
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');...

4년 초과 전 | 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.

4년 초과 전 | 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); ...

4년 초과 전 | 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)

4년 초과 전 | 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=...

4년 초과 전 | 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...

4년 초과 전 | 1