https://github.com/abhinavraj009/x_ray-conversion-csv-
To convert an X-ray image into a CSV format for machine learning or data analysis, you'll typically want to represent the image as numerical pixel values.
https://github.com/abhinavraj009/x_ray-conversion-csv-
machine-learning numpy opencv pandas python
Last synced: 3 months ago
JSON representation
To convert an X-ray image into a CSV format for machine learning or data analysis, you'll typically want to represent the image as numerical pixel values.
- Host: GitHub
- URL: https://github.com/abhinavraj009/x_ray-conversion-csv-
- Owner: AbhinavRaj009
- Created: 2025-04-12T04:46:33.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-04-12T04:50:22.000Z (about 1 year ago)
- Last Synced: 2025-04-12T05:30:19.457Z (about 1 year ago)
- Topics: machine-learning, numpy, opencv, pandas, python
- Language: Python
- Homepage:
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
What This Code Does:
๐ It searches for all .jpg, .png, .jpeg files you uploaded to Colab.
๐ท It reads each image in grayscale and resizes it to 128x128.
๐ It flattens each image into a row of 16,384 numbers (pixel values).
๐งพ It adds all rows to a DataFrame and saves everything as xray_dataset.csv.