This chapter covers:
- Chapter 13 will implement step 2, segmentation.
- a bulleted list
- of high-level topics
- that you teach
- in the chapter
In the last four chapters, we have accomplished a lot. We’ve learned about CT scans and lung tumors, datasets and data loaders, and metrics and monitoring. We have also apoplied many of the things we learned in part 1, and have a working classifier. We are still operating in a somewhat artificial environment, however, since we still require hand-annotated nodule information to load into our classifier. We don’t have a good way of creating that input automatically. Plugging in overlapping 32x32x32 patches of data would result in 31x31x7=6727 patches per CT, or about 10x the number of annotated samples we have. We’d need to overlap the edges; our classifier expects the nodule to be centered, and even then the inconsistent positioning will probably present issues.
That’s not to say that it’s impossible to handle these issues! This book is going to be using the multiple-step approach, however, due to there being a large number of well-performing open source projects that handle it similarly. In addition, we feel that the multi-step approach allows for a more smooth introduction of new concepts, making the learning process easier.