GPU imdilate of 3D volume
1 回表示 (過去 30 日間)
古いコメントを表示
I am using imdilate very frequently in my code, so speeding up this process would give me a huge performace benefit. Therefore I am trying to run it on the GPU.
se_c = ((X).^2+(Y).^2+(Z).^2<1);
C = imdilate(gpuArray(uint8(G)),gpuArray(se_c));
The following error message is issued: Error using morphopInputParser (line 48) Expected structuring element to be 2-D.
Is there a way to perform an image dilation of a 3D volume by a 3D structuring element using the GPU?
1 件のコメント
採用された回答
Joss Knight
2018 年 7 月 23 日
No, this isn't possible unless you wish to write your own implementation. You are not the first to request this feature, it has been noted, and thanks for giving your feedback.
4 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で GPU Computing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!