Applying translations to a folder of images

3 次查看(过去 30 天)
I am proposing to apply translation (say imtranslate(I,[x,y]), at varying levels, and random crops,to a set of 100 images in a folder named "chrom" in D:\. After applying the translations, I want these images to be stored in a different folder say "chrom-translate1" in the same D:\. In this way, I need to apply translations of different degrees, and store it in different folders in D:\. Kindly help me with the code for this. Thanks in advance.

回答(1 个)

Takuji Fukumoto
Takuji Fukumoto 2017-1-25
I show the way to write image in different folder.
I = imread('chrom\image.jpg');
<image processing>
mkdir('chrom-translate1')
imwrite(I,'chrom-translate1\image.jpg')
these are for case that you set D:\ as your work directory. full path whould be also fine.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by