Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我被困在我的程序中,因为我不知道如何将我的 3-Dim 阵列“转换”为 ROI。
for(i=0;i<n;i++){ for(j=0; j<512;j++){ for(k=0;k<512;k++){ if(ip.get(i,j) > threshold && mask[i][j][k]==0){ mask[i][j][k]=4;} } } }