Drawing shape context logpolar bins in MATLAB

后端 未结 2 758
夕颜
夕颜 2020-12-31 23:25

I am using shape context histograms as a feature descriptor to encode silhouette images. To assist with debugging, I would like to view the shape context logpolar bins overl

2条回答
  •  [愿得一人]
    2020-12-31 23:43

    Doing this:

    >> figure
    >> axes
    >> hold on
    >> radius = 1;
    >> theta = 0:30:360;
    >> for angle = theta
    line([0 radius * cosd(angle)], [0 radius * sind(angle)]);
    end
    

    produces this:

    enter image description here

提交回复
热议问题