1 反射を除去するための適切なフィルターを探しています。私の特定のケースで は、私は例えば、ホワイトボードにそれを使用したい:画像処理で画像からの反射を取り除く方法 Before After 出典 2017-04-16 asaf +0 https://en.wikipedia.org/wiki/Canny_edge_detectorが可能性があります。 – maraca
1 拡張は、それを行うための非常に簡単な(完璧ではありませんしばらく)の方法である: im = im2double(rgb2gray(imread('board.png'))); imd = imdilate(im,strel('diamond',1)); res = im - imd; res = res - min(res(:)); res = res./max(res); imshow(res) また、あとでしきい値処理を適用することもできます。 出典 2017-04-16 09:19:12 user2999345
https://en.wikipedia.org/wiki/Canny_edge_detectorが可能性があります。 – maraca