-1

I am intersted with determining branchpoints of retinal images and then registering these images. First of all I am using a algorithm for extracting of vessels from image then skeletization and finding branchpoints. At first operation all things were ok but if I rotate same image by randomize angle, number of branchpoints are very increase. what are your opinions about this problem...

related links of images : http://e1204.hizliresim.com/w/6/449m6.jpg http://e1204.hizliresim.com/w/6/449by.jpg

4

1 に答える 1

3

imrotateの標準補間アルゴリズムは最近傍法であり、画像を美しいのこぎりに変換する傾向があります。

で画像を回転する場合はimrotate、3 番目のパラメーターとして、バイキュービックやバイリニアなどのより優れた方法を渡してみてください。どちらもはるかに優れています。

構文は単純です。

imrotate(img, degrees, 'bicubic');
于 2012-04-03T21:21:11.383 に答える