i have a circular image that i want to place square mosaic tiles. Got thoughts about using vectorization. So please,how is vectorization of tiles done using polygons?
조회 수: 2 (최근 30일)
이전 댓글 표시
This is the code i have written so far. i am using gradient vector flow(gvf) function. I = imread('taijitu main.jpg'); [R C]= size(I); cmap = rgb2hsv(I); luminance = hsv(3); [histIm,T]= histeq(luminance); [Gmag, Gdir]= imgradient(luminance,'roberts'); [u,v]= GVF([Gmag,Gdir],0.2,80); gvf = sqrt(u.^2 + v.^2); B = sort(I,'descend'); for i=1:R-1 for j=1:C-1 if gvf(i,j)> 0 I(i,j)=1; I=I+1; end end end
댓글 수: 1
Image Analyst
2016년 6월 2일
Please attach 'taijitu main.jpg' so we can run your code and see what you have done so far.
답변 (0개)
참고 항목
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!