Open frabob2017 opened 1 year ago
YOLOv7 doesn't support 3D convolution; however, you can use 3D segmentation models on medical imaging. i.e. UNET or Encoder-decoder architecture. They work with 3D medical imaging.
YOLOv7 doesn't support 3D convolution; however, you can use 3D segmentation models on medical imaging. i.e. UNET or Encoder-decoder architecture. They work with 3D medical imaging.
Hello faizan, thank you for your answer. Yes, from the programing point view, I found that UNET is easy to implement 3D convolution. Although more difficult for programming, YOLO can do it. Hope YOLO can implement this feature also.
Is it possible for YOLO team to replace nn.conv2d with nn.conv3d in the future because it is very useful for medical imaging which is 3d format? I believe if it change to 3d level, it would be robust in medical imaging. I try to understand your code and do it. But it is beyond my capability.