{"id":18832207,"url":"https://github.com/smahala02/materials-science-image-analysis","last_synced_at":"2026-05-09T14:04:07.979Z","repository":{"id":255742187,"uuid":"853518735","full_name":"smahala02/Materials-Science-Image-Analysis","owner":"smahala02","description":"Image analysis for materials science with a focus on particle diameter measurement and image scaling using Python.","archived":false,"fork":false,"pushed_at":"2024-09-07T14:06:49.000Z","size":655,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-12-30T07:11:11.456Z","etag":null,"topics":["data-visualization","image-analysis","materials-science","particle-measurement","python"],"latest_commit_sha":null,"homepage":"","language":"Jupyter Notebook","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/smahala02.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-09-06T20:22:07.000Z","updated_at":"2024-09-07T14:06:53.000Z","dependencies_parsed_at":"2024-09-06T23:56:07.480Z","dependency_job_id":null,"html_url":"https://github.com/smahala02/Materials-Science-Image-Analysis","commit_stats":null,"previous_names":["smahala02/materials-science-image-analysis"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/smahala02%2FMaterials-Science-Image-Analysis","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/smahala02%2FMaterials-Science-Image-Analysis/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/smahala02%2FMaterials-Science-Image-Analysis/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/smahala02%2FMaterials-Science-Image-Analysis/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/smahala02","download_url":"https://codeload.github.com/smahala02/Materials-Science-Image-Analysis/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239768924,"owners_count":19693760,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["data-visualization","image-analysis","materials-science","particle-measurement","python"],"created_at":"2024-11-08T01:57:11.699Z","updated_at":"2026-01-25T05:30:17.572Z","avatar_url":"https://github.com/smahala02.png","language":"Jupyter Notebook","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Image Analysis for Materials Science\n\nThis repository contains image analysis data for materials science, focusing on particle diameter measurement and image scaling. It includes Python scripts, image files, and results related to the analysis of particle size and distribution in materials. The key focus is on analyzing the particle equivalent diameters and utilizing scalebars for accurate measurement.\n\n## Table of Contents\n\n1. [Introduction](#introduction)\n2. [Particle Diameter Analysis](#particle-diameter-analysis)\n3. [Scalebar and Image Calibration](#scalebar-and-image-calibration)\n4. [Files in the Repository](#files-in-the-repository)\n5. [Getting Started](#getting-started)\n6. [Installation](#installation)\n7. [Contributing](#contributing)\n8. [License](#license)\n\n---\n\n## Introduction\n\nThis repository is dedicated to the **image analysis** of materials science data. It covers key concepts such as:\n- **Particle diameter measurement**: Using image analysis techniques to determine the size and distribution of particles in a material.\n- **Scalebar calibration**: Applying scale bars to images for accurate spatial measurements.\n\nThe data has been generated from real experiments and is analyzed using Python scripts and image processing techniques.\n\n## Particle Diameter Analysis\n\nThe particle diameter analysis focuses on measuring the equivalent diameters of particles from images and calculating their distribution. The data provided in `diameter.txt` contains the equivalent diameters for multiple particles.\n\nHere is an excerpt from `diameter.txt`:\n```\n# Particle  --  Equivalent diameter\n1.000000-----------39.493271\n2.000000-----------98.019720\n6.000000-----------26.986905\n14.000000-----------4.068429\n...\n```\nExplore the full data here: [diameter.txt](./diameter.txt).\n\n## Scalebar and Image Calibration\n\nThe repository also contains images used for calibration, including a **scalebar** which provides a reference length of **1 µm**.\n\n![Scalebar](./scalebar.png)\n\nThis scalebar is used to scale images and accurately measure particle sizes. The image `Coarse_250kx.TIF` is an example of an analyzed image file.\n\n## Files in the Repository\n\n- **`diameter.txt`**: Contains particle equivalent diameter data.\n- **`scalebar.png`**: An image of a scalebar used for calibration.\n- **`Coarse_250kx.TIF`**: An image file used for analyzing particles at 250,000x magnification.\n- **`Image Analysis for Materials Science.ipynb`**: A Jupyter notebook that contains Python code for analyzing the images and calculating particle diameters.\n\n## Getting Started\n\n### Prerequisites\n\nYou will need the following software and libraries to run the analyses and visualizations:\n- Python 3.x\n- NumPy for numerical data processing\n- Matplotlib for visualizing results\n- PIL (Python Imaging Library) for image processing\n- Jupyter Notebook (optional, for interactive analysis)\n\n### Installation\n\n1. Clone this repository:\n\n   ```bash\n   git clone https://github.com/smahala02/Materials-Science-Image-Analysis.git\n   ```\n\n2. Install the required Python libraries:\n\n   ```bash\n   pip install numpy matplotlib pillow\n   ```\n\n3. (Optional) Open the Jupyter notebook for interactive analysis:\n\n   ```bash\n   jupyter notebook 'Image Analysis for Materials Science.ipynb'\n   ```\n\n## Contributing\n\nContributions are welcome! If you have ideas to improve the image analysis or add new techniques, feel free to submit a pull request.\n\n1. Fork the repository.\n2. Create a new branch (`git checkout -b new-feature`).\n3. Commit your changes (`git commit -m 'Add new feature'`).\n4. Push to the branch (`git push origin new-feature`).\n5. Open a pull request.\n\n## License\n\nThis repository is licensed under the MIT License. See the `LICENSE` file for more details.\n\n## Author\n- [smahala02](https://github.com/smahala02)\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsmahala02%2Fmaterials-science-image-analysis","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsmahala02%2Fmaterials-science-image-analysis","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsmahala02%2Fmaterials-science-image-analysis/lists"}