How to get pixel information which lies on boundary?
    5 ビュー (過去 30 日間)
  
       古いコメントを表示
    
I have detected boundary of an object in image but now i want to get the pixel information of a pixel which lies on that boundary in the very first row as from that point i want to apply chain code for the object.Can anyone provide me help on this?
0 件のコメント
回答 (1 件)
  Walter Roberson
      
      
 2016 年 1 月 22 日
        [r, c] = find(BoundaryMask);
[first_row, row_idx] = min(r);
mask_cols_in_first_row = c(row_idx);
now first_row will be a scalar that is the index of "very first row" . mask_cols_in_first_row will be a vector of column indices of the pixels in the mask in that very first row.
0 件のコメント
参考
カテゴリ
				Help Center および File Exchange で Image Segmentation and Analysis についてさらに検索
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!