An open API service indexing awesome lists of open source software.

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.

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.