Assign identification number to image
4 ビュー (過去 30 日間)
古いコメントを表示
i am working in mri brain tumor detection. i have two images to detect tumor but in step 1 first i have to assign identification number to image how this is possible?anyone please help
or suggest me technique or way or method to do this
3 件のコメント
回答 (3 件)
Image Analyst
2022 年 5 月 9 日
編集済み: Image Analyst
2022 年 5 月 9 日
Try insertText if you want to burn the text into image pixels (changing the image). insertText requires the Computer Vision Toolbox.
0 件のコメント
Walter Roberson
2022 年 5 月 10 日
編集済み: Walter Roberson
2022 年 5 月 10 日
You are asking for the wrong thing. What you need to do is create a matrix the same size as your image, in which each location is a code indicating what kind of data is in the image.
For example the "label image" might use the value 0 for things outside of the brain, 1 for skull, 3 for blood vessels, 4 for healthy brain tissue, 5 for benign tumour, 6 for invasive tumour.
It is not uncommon for people to reduce that to 0 for background, 1 for healthy, 2 for tumour.
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!