How to optimise/vectorize loop containing the function "imrotate", using multiple images and angles as input
3 次查看(过去 30 天)
显示 更早的评论
I have approximately 900 B&W images (k) which I have to rotate 360 degrees with steps of 0.25 degrees (i). I use two loops and the function imrotate. The process time is 30-60 min, which I would like to optimise/vectorize to make it faster.
Any suggestion?
I have pasted my code:
for i = 1:360*4
for k =1:numReg
D=sum(imrotate(Subim{k},i/4)); %rotate B&W image k by 0.25 degrees
DD=D(D>0); %find column with pixels
DDD(i,k)=sum(DD(1:3)); %find sum of pixels in the first 3 columns containing pixels.
end
end
[~,Y]=max(DDD); %find rotation which result in maximum pixel sum.
figure, hist(Y/4,60) % plot distribution of angles resulting in max sum
0 个评论
采纳的回答
Matt J
2013-12-3
Your code doesn't make too much sense to me, but it looks like you're re-inventing the RADON command, in various places.
更多回答(2 个)
Sean de Wolski
2013-12-3
编辑:Sean de Wolski
2013-12-3
- Do you have the parallel computing toolbox? If so, this might be something well-suited for parfor. I.e. you can do all 360deg rotations on one worker at once and return just the results you need.
- I agree with Matt as well, this could be something radon might be able to handle.
- Also, if you're just trying to maximize the number of pixels, you might be able to start with a smaller number of rotations and then refine it. I.e. only rotate integer degrees, pick the five that maximize this, and look closely near them.
- Also (2), are the images related to each other? Can you reuse information obtained from one image to look near that point in the next?
2 个评论
Oliver Woodford
2013-12-4
For such simple, batch-job-style for loops, you don't even need the PCT to parallelize this across cores or even other PCs. There are several alternatives on the FEX: 13775, 44077, 44128. However, if you only have one PC the speedup will depend on how parallelized the code already is; if imrotate is already multi-threaded this approach won't be much better.
Oliver Woodford
2013-12-3
Assuming your 900 input images are all the same size, you could:
- For each rotation angle, compute the location of each rotated pixel in the original image.
- Concatenate all the sample locations for each pixel and angle into a long vector.
- Sample each image at all these locations at once, using a fast image interpolation method from the file exchange, e.g. 20342, 24183 or 23795 ( very fast, but requires an nVidia gpu).
- Reshape the output samples to the correct shape, and do your computation on all the angles simultaneously.
- Repeat steps 3 and 4 for each image.
2 个评论
Oliver Woodford
2013-12-3
If you have the Parallel Computing Toolbox and R2013b you can load the sample locations onto the GPU once, then use interp2 (only optimized in R2013b) to compute the rotations for each image, and it will be even faster.
Oliver Woodford
2013-12-4
You could also avoid sampling outside the bounds of the original image, and use accumarray for the sum, for a further speed up.
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!