Mahmood-Hoseini / COVID19-CT-Scan-Segmentation

Identifying infections in CT scan images of COVID19 patients using CNNs
MIT License
5 stars 0 forks source link

need help #7

Open Inesnouna opened 3 years ago

Inesnouna commented 3 years ago

hii nice work please how can i run it usin visual studio what file i run and how can i test with other images ct

Mahmood-Hoseini commented 3 years ago

thanks. Just closely follow the instruction given in the readme to install it and then you can test it on your own CT images. If the format of your images is compatible with the my images, you can use load and preprocess data using Patient class.

Inesnouna commented 3 years ago

i can't see can you please give me the steps to run it ..

Le ven. 5 févr. 2021 à 03:46, Mahmood Hoseini notifications@github.com a écrit :

thanks. Just closely follow the instruction given in the readme to install it and then you can test it on your own CT images. If the format of your images is compatible with the my images, you can use load and preprocess data using Patient class.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/Mahmood-Hoseini/COVID19-CT-Scan-Segmentation/issues/7#issuecomment-773745752, or unsubscribe https://github.com/notifications/unsubscribe-auth/AJH5PME6YA7KBDVIRRXD6WLS5NLY3ANCNFSM4XDL4OXA .

Mahmood-Hoseini commented 3 years ago

The package can be installed using python setup.py install in a terminal . The you should be able to use the package like:

from ctseg import patient

patient_data = patient.PatientData("testing-set/patient00")

PatientData loads CT images which are used to train a convolutional network. Find out more details see how2useit/how2use-patient.py.